15 lines
232 B
Text
15 lines
232 B
Text
|
source 'https://rubygems.org'
|
||
|
|
||
|
unless ENV['USER'] == 'vagrant'
|
||
|
puts 'This Gemfile is meant to be used from the dev box'
|
||
|
exit 1
|
||
|
end
|
||
|
|
||
|
gem 'rake'
|
||
|
gem 'net-ssh'
|
||
|
gem 'rspec'
|
||
|
gem 'guard'
|
||
|
gem 'guard-rspec'
|
||
|
gem 'rb-inotify'
|
||
|
gem 'log4r'
|