forked from Katello/hammer-cli-katello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
26 lines (21 loc) · 739 Bytes
/
Gemfile
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
26
source "https://rubygems.org"
gemspec
# for generating i18n files, gettext > 3.0 dropped ruby 1.8 support
gem 'gettext', '>= 3.1.3', '< 4.0.0'
group :development, :test do
gem 'hammer_cli_foreman', :git => 'https://github.com/theforeman/hammer-cli-foreman.git'
gem 'hammer_cli', :git => 'https://github.com/theforeman/hammer-cli.git'
end
group :test do
gem 'rake', '~> 10.1.0'
gem 'thor'
gem 'minitest', '4.7.4'
gem 'minitest-spec-context'
gem 'mocha'
gem 'coveralls', require: false
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