vagrant-lxc-ng/Gemfile

24 lines
722 B
Ruby
Raw Normal View History

2013-02-25 04:58:04 +00:00
source 'https://rubygems.org'
group :development do
2014-05-04 00:09:04 +00:00
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
gem 'guard'
gem 'guard-rspec'
gem 'rb-inotify'
end
group :development, :test do
gem 'rake'
gem 'rspec', '2.99.0.beta2'
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'
end
group :plugins do
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
end