2013-02-25 01:58:04 -03:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2013-02-25 20:09:32 -03:00
|
|
|
gemspec
|
|
|
|
|
2014-03-11 16:41:52 -03: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
|
|
|
|
|
2013-03-14 19:44:39 -03:00
|
|
|
group :development do
|
2014-03-11 19:58:08 -03:00
|
|
|
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
|
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
|
|
|
|
gem 'rake'
|
2014-03-11 19:58:08 -03:00
|
|
|
# TODO: Update https://github.com/fgrehm/vagrant-lxc/issues/111
|
2014-03-11 16:37:29 -03:00
|
|
|
gem 'rspec', '2.99.0.beta2'
|
|
|
|
gem 'coveralls', require: false
|
2014-03-11 19:58:08 -03:00
|
|
|
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
|
2014-03-11 16:37:29 -03:00
|
|
|
end
|
|
|
|
|
|
|
|
group :plugins do
|
|
|
|
gem 'vagrant-lxc', path: '.'
|
2014-03-11 19:58:08 -03:00
|
|
|
# TODO: Disable these plugins when running acceptance specs
|
|
|
|
gem 'vagrant-cachier', git: 'https://github.com/fgrehm/vagrant-cachier.git'
|
|
|
|
gem 'vagrant-pristine', git: 'https://github.com/fgrehm/vagrant-pristine.git'
|
2014-03-11 16:37:29 -03:00
|
|
|
gem 'vagrant-omnibus'
|
2013-03-14 19:44:39 -03:00
|
|
|
end
|