2013-02-25 01:58:04 -03:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2013-03-14 19:44:39 -03:00
|
|
|
group :development do
|
2017-12-13 15:47:01 -05:00
|
|
|
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git', tag: 'v1.8.7'
|
2013-03-14 19:44:39 -03:00
|
|
|
gem 'guard'
|
|
|
|
gem 'guard-rspec'
|
|
|
|
gem 'rb-inotify'
|
|
|
|
end
|
2013-03-04 01:16:45 -03:00
|
|
|
|
2013-03-14 19:44:39 -03:00
|
|
|
group :development, :test do
|
2017-12-13 15:33:05 -05:00
|
|
|
gem 'rake', '~> 10.4.2'
|
|
|
|
gem 'rspec', '~> 2.99.0'
|
|
|
|
gem 'coveralls', '~> 0.7.2', require: (ENV['COVERAGE'] == 'true')
|
2017-12-13 15:47:01 -05:00
|
|
|
# The is the ref *just* before we switch to childprocess 0.6, which conflicts with vagrant 1.8 deps.
|
|
|
|
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git', ref: '5006bc73cd8796465ca09307d4774f8ec8375aa0'
|
2014-03-11 16:37:29 -03:00
|
|
|
end
|
|
|
|
|
|
|
|
group :plugins do
|
2014-03-12 22:15:58 -03:00
|
|
|
acceptance = (ENV['ACCEPTANCE'] == 'true')
|
|
|
|
gem 'vagrant-cachier', git: 'https://github.com/fgrehm/vagrant-cachier.git', require: !acceptance
|
|
|
|
gem 'vagrant-pristine', git: 'https://github.com/fgrehm/vagrant-pristine.git', require: !acceptance
|
|
|
|
gem 'vagrant-omnibus', require: !acceptance
|
2014-04-04 16:27:00 -03:00
|
|
|
gemspec
|
2013-03-14 19:44:39 -03:00
|
|
|
end
|