vagrant-lxc-ng/Gemfile

32 lines
878 B
Ruby
Raw Normal View History

2013-02-25 04:58:04 +00:00
source 'https://rubygems.org'
2013-02-25 23:09:32 +00:00
gemspec
2014-03-11 19:41:52 +00:00
if ENV['USER'] != 'vagrant'
raise 'vagrant 1.5 is enabled but it has not been fully tested, make sure you run it from within another VM!'
end
group :development do
2014-03-11 22:58:08 +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'
2014-03-11 22:58:08 +00:00
# TODO: Update https://github.com/fgrehm/vagrant-lxc/issues/111
gem 'rspec', '2.99.0.beta2'
gem 'coveralls', require: false
2014-03-11 22:58:08 +00:00
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
end
group :plugins do
gem 'vagrant-lxc', path: '.'
if ENV['ACCEPTANCE'] != 'true'
gem 'vagrant-cachier', git: 'https://github.com/fgrehm/vagrant-cachier.git'
gem 'vagrant-pristine', git: 'https://github.com/fgrehm/vagrant-pristine.git'
gem 'vagrant-omnibus'
end
end