engine/Gemfile

35 lines
797 B
Ruby
Raw Normal View History

# Edit this Gemfile to bundle your application's dependencies.
source :rubygems
2010-03-29 22:01:47 +00:00
# add in all the runtime dependencies
gemspec
2010-03-29 22:01:47 +00:00
# The rest of the dependencies are for use when in the locomotive dev environment
2010-06-03 15:32:40 +00:00
2010-04-09 09:23:41 +00:00
# Development environment
group :development do
# Using mongrel instead of webrick (default server)
gem 'mongrel'
gem 'cgi_multipart_eof_fix'
gem 'fastthread'
2010-03-29 22:01:47 +00:00
end
group :test, :development do
2010-07-29 23:39:01 +00:00
gem 'ruby-debug'
end
2010-04-09 10:22:38 +00:00
group :test do
gem 'autotest'
gem 'growl-glue'
gem 'rspec-rails', '>= 2.0.0.beta.18'
gem 'factory_girl_rails'
gem 'pickle', :git => 'http://github.com/ianwhite/pickle.git'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber'
gem 'cucumber-rails'
gem 'spork'
gem 'launchy'
gem 'mocha', :git => 'git://github.com/floehopper/mocha.git'
2010-04-09 12:03:54 +00:00
end