vagrant-lxc-ng/Gemfile

23 lines
512 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
group :development do
2013-05-06 19:16:32 +00: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 21:29:03 +00:00
gem 'coveralls', require: false
end