25 lines
757 B
Ruby
25 lines
757 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gemspec
|
|
|
|
group :development do
|
|
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')
|
|
gem 'vagrant-spec', git: 'https://github.com/mitchellh/vagrant-spec.git'
|
|
end
|
|
|
|
group :plugins do
|
|
gem 'vagrant-lxc', path: '.'
|
|
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
|
|
end
|