2013-02-25 04:58:04 +00:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2013-03-14 22:44:39 +00:00
|
|
|
group :development do
|
2014-05-04 00:09:04 +00:00
|
|
|
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
|
2013-03-14 22:44:39 +00:00
|
|
|
gem 'guard'
|
|
|
|
gem 'guard-rspec'
|
|
|
|
gem 'rb-inotify'
|
|
|
|
end
|
2013-03-04 04:16:45 +00:00
|
|
|
|
2013-03-14 22:44:39 +00:00
|
|
|
group :development, :test do
|
|
|
|
gem 'rake'
|
2014-03-11 19:37:29 +00:00
|
|
|
gem 'rspec', '2.99.0.beta2'
|
2014-03-13 01:15:58 +00:00
|
|
|
gem 'coveralls', require: (ENV['COVERAGE'] == 'true')
|
2014-03-11 22:58:08 +00:00
|
|
|
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
|
2014-03-11 19:37:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :plugins do
|
2014-03-13 01:15:58 +00: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 19:27:00 +00:00
|
|
|
gemspec
|
2013-03-14 22:44:39 +00:00
|
|
|
end
|