
Since our test are not rspec 3.0.0 ready, we need to force travis to use rspec version 2.14.x
21 lines
558 B
Ruby
21 lines
558 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'puppetlabs_spec_helper'
|
|
gem 'puppet-lint', '~> 0.3.2'
|
|
gem 'json'
|
|
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
|
|
# rspec-puppet fetch the latest rspec (3.0.0)
|
|
# this version is a bit incompat. with older specs...
|
|
# http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3
|
|
gem 'rspec', '2.14.1'
|
|
gem 'rake', '10.1.1'
|
|
gem 'puppet-syntax'
|
|
|
|
if puppetversion = ENV['PUPPET_GEM_VERSION']
|
|
gem 'puppet', puppetversion, :require => false
|
|
else
|
|
gem 'puppet', :require => false
|
|
end
|
|
|
|
# vim:ft=ruby
|