vagrant-lxc-ng/Gemfile

23 lines
426 B
Ruby
Raw Normal View History

2013-02-25 04:58:04 +00:00
source 'https://rubygems.org'
unless ENV['USER'] == 'vagrant'
puts 'This Gemfile is meant to be used from the dev box'
exit 1
end
2013-02-25 23:09:32 +00:00
gemspec
gem 'vagrant', path: './vagrant'
2013-02-25 04:58:04 +00:00
gem 'rake'
gem 'net-ssh'
gem 'rspec'
2013-02-28 03:06:29 +00:00
gem 'rspec-fire', require: 'rspec/fire'
gem 'rspec-spies', require: false
gem 'simplecov', require: false
2013-02-25 04:58:04 +00:00
gem 'guard'
gem 'guard-rspec'
2013-02-28 03:06:29 +00:00
gem 'guard-bundler'
gem 'guard-ctags-bundler'
2013-02-25 04:58:04 +00:00
gem 'rb-inotify'
gem 'log4r'