2010-06-29 22:09:47 +00:00
|
|
|
# Edit this Gemfile to bundle your application's dependencies.
|
2010-09-28 06:04:40 +00:00
|
|
|
source :rubygems
|
2010-03-29 22:01:47 +00:00
|
|
|
|
2010-09-28 06:04:40 +00:00
|
|
|
# add in all the runtime dependencies
|
|
|
|
gemspec
|
2010-03-29 22:01:47 +00:00
|
|
|
|
2010-09-28 06:04:40 +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
|
2010-05-30 23:57:33 +00:00
|
|
|
# Using mongrel instead of webrick (default server)
|
2010-06-29 22:09:47 +00:00
|
|
|
gem 'mongrel'
|
|
|
|
gem 'cgi_multipart_eof_fix'
|
|
|
|
gem 'fastthread'
|
2010-03-29 22:01:47 +00:00
|
|
|
end
|
|
|
|
|
2010-07-23 20:04:27 +00:00
|
|
|
group :test, :development do
|
2010-07-29 23:39:01 +00:00
|
|
|
gem 'ruby-debug'
|
2010-07-23 20:04:27 +00:00
|
|
|
end
|
|
|
|
|
2010-04-09 10:22:38 +00:00
|
|
|
group :test do
|
2010-08-20 00:31:01 +00:00
|
|
|
gem 'autotest'
|
|
|
|
gem 'growl-glue'
|
2010-09-28 06:04:40 +00:00
|
|
|
gem 'rspec-rails', '>= 2.0.0.beta.18'
|
2010-07-21 23:35:30 +00:00
|
|
|
gem 'factory_girl_rails'
|
2010-08-30 23:56:54 +00:00
|
|
|
gem 'pickle', :git => 'http://github.com/ianwhite/pickle.git'
|
2010-07-21 23:35:30 +00:00
|
|
|
gem 'capybara'
|
2010-07-31 08:27:21 +00:00
|
|
|
|
2010-07-26 08:19:42 +00:00
|
|
|
gem 'database_cleaner'
|
2010-07-21 23:35:30 +00:00
|
|
|
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
|