forked from Katello/hammer-cli-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
25 lines (21 loc) · 651 Bytes
/
Copy pathGemfile
File metadata and controls
25 lines (21 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
source "https://rubygems.org"
gemspec
gem 'gettext', '>= 3.1.3', '< 4.0.0'
group :test do
gem 'rake', '~> 10.1.0'
gem 'vcr'
gem 'webmock', '< 2.0.0' # https://github.com/vcr/vcr/issues/570
gem 'thor'
gem 'minitest', '4.7.4'
gem 'minitest-spec-context'
gem 'simplecov'
gem 'mocha'
gem 'ci_reporter', '>= 1.6.3', "< 2.0.0", :require => false
gem 'rubocop-checkstyle_formatter'
gem 'coveralls'
end
# load local gemfile
['Gemfile.local.rb', 'Gemfile.local'].map do |file_name|
local_gemfile = File.join(File.dirname(__FILE__), file_name)
self.instance_eval(Bundler.read_file(local_gemfile)) if File.exist?(local_gemfile)
end