vagrant-lxc-ng/Gemfile

23 lines
512 B
Text
Raw Normal View History

2013-02-25 01:58:04 -03:00
source 'https://rubygems.org'
2013-02-25 20:09:32 -03:00
gemspec
group :development do
2013-05-06 16:16:32 -03:00
# TODO: Lock to 1.2.3 once it is out with this fix: https://github.com/mitchellh/vagrant/pull/1685
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
gem 'guard'
gem 'guard-rspec'
gem 'guard-bundler'
gem 'guard-ctags-bundler'
gem 'rb-inotify'
end
group :development, :test do
gem 'rake'
gem 'rspec'
gem 'rspec-fire', require: 'rspec/fire'
gem 'rspec-spies', require: false
2013-04-12 18:29:03 -03:00
gem 'coveralls', require: false
end