forked from puppetlabs/puppet-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
27 lines (22 loc) · 789 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
27
source ENV['GEM_SOURCE'] || "https://rubygems.org"
def location_for(place)
if place =~ /^((?:git[:@]|https:)[^#]*)#(.*)/
[{ :git => $1, :branch => $2, :require => false }]
elsif place =~ /^file:\/\/(.*)/
['>= 0', { :path => File.expand_path($1), :require => false }]
else
[place, { :require => false }]
end
end
gem 'artifactory'
gem 'vanagon', *location_for(ENV['VANAGON_LOCATION'] || '~> 0.21')
gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.99.8')
gem 'rake', '~> 12.0'
group(:development, optional: true) do
gem 'highline', require: false
gem 'parallel', require: false
gem 'colorize', require: false
gem 'hashdiff', require: false
end
#gem 'rubocop', "~> 0.34.2"
eval_gemfile("#{__FILE__}.local") if File.exist?("#{__FILE__}.local")