diff options
author | Micah Anderson <micah@riseup.net> | 2013-05-26 16:19:56 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-05-26 16:19:56 -0400 |
commit | 966f3b349a60b3997e58af1095bbd96671952fac (patch) | |
tree | 3c1dcdb0cd353427eb066f6926610445700a2a66 /Gemfile | |
parent | 66e0fa8f1bc5062e9d753598ad17602c378a2994 (diff) | |
parent | 9c8c8275abd76878d38a0f6f3af52dc468656283 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 42 |
1 files changed, 42 insertions, 0 deletions
@@ -0,0 +1,42 @@ +source "https://rubygems.org" + +def location_for(place, fake_version = nil) + mdata = /^(git:[^#]*)#(.*)/.match(place) + if mdata + [fake_version, { :git => mdata[1], :branch => mdata[2], :require => false }].compact + elsif place =~ /^file:\/\/(.*)/ + ['>= 0', { :path => File.expand_path(mdata[1]), :require => false }] + else + [place, { :require => false }] + end +end + +group :development do + gem 'watchr' +end + +group :development, :test do + gem 'rake' + gem 'puppetmodule-stdlib', ">= 1.0.0", :path => File.expand_path("..", __FILE__) + gem 'rspec', "~> 2.11.0", :require => false + gem 'mocha', "~> 0.10.5", :require => false + gem 'puppetlabs_spec_helper', :require => false + gem 'rspec-puppet', :require => false +end + +facterversion = ENV['GEM_FACTER_VERSION'] +if facterversion + gem 'facter', *location_for(facterversion) +else + gem 'facter', :require => false +end + +ENV['GEM_PUPPET_VERSION'] ||= ENV['PUPPET_GEM_VERSION'] +puppetversion = ENV['GEM_PUPPET_VERSION'] +if puppetversion + gem 'puppet', *location_for(puppetversion) +else + gem 'puppet', :require => false +end + +# vim:ft=ruby |