2013-02-25 04:58:04 +00:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2013-02-25 23:09:32 +00:00
|
|
|
gemspec
|
|
|
|
|
2013-03-14 22:44:39 +00:00
|
|
|
group :development do
|
|
|
|
# We depend on Vagrant for development, but we don't add it as a
|
|
|
|
# gem dependency because we expect to be installed within the
|
|
|
|
# Vagrant environment itself using `vagrant plugin`.
|
2013-04-04 02:52:23 +00:00
|
|
|
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git', tag: 'v1.1.5'
|
2013-03-14 22:44:39 +00:00
|
|
|
gem 'guard'
|
|
|
|
gem 'guard-rspec'
|
|
|
|
gem 'guard-bundler'
|
|
|
|
gem 'guard-ctags-bundler'
|
|
|
|
gem 'rb-inotify'
|
|
|
|
gem 'simplecov', require: false
|
|
|
|
end
|
2013-03-04 04:16:45 +00:00
|
|
|
|
2013-03-14 22:44:39 +00:00
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
gem 'rake'
|
|
|
|
gem 'rspec'
|
|
|
|
gem 'rspec-fire', require: 'rspec/fire'
|
|
|
|
gem 'rspec-spies', require: false
|
|
|
|
end
|