8eb26b792b
For some reason these have been broken forever. Travis was failing, correctly. I have updated the tests to be correct to how the code actually works. I would also suggest that if this is merged, we stop merging PRs that have failed test runs. Tests matter in a module like this.
14 lines
338 B
Ruby
14 lines
338 B
Ruby
source 'https://rubygems.org'
|
|
|
|
group :rake do
|
|
gem 'puppetlabs_spec_helper'
|
|
gem 'librarian-puppet'
|
|
gem 'open3_backport', :platforms => :ruby_18
|
|
gem 'json', :platforms => :ruby_18
|
|
end
|
|
|
|
if puppetversion = ENV['PUPPET_GEM_VERSION']
|
|
gem 'puppet', puppetversion, :require => false
|
|
else
|
|
gem 'puppet', :require => false
|
|
end
|