Skip to content

Instantly share code, notes, and snippets.

@petRUShka
Created November 25, 2010 00:55
Show Gist options
  • Save petRUShka/c9dd8b4e8990a7e6b0a8 to your computer and use it in GitHub Desktop.
Save petRUShka/c9dd8b4e8990a7e6b0a8 to your computer and use it in GitHub Desktop.
Gemfile
source 'http://rubygems.org'
gem 'rails', '3.0.3'
#gem 'sqlite3-ruby', :require => 'sqlite3'
group :test, :development do
gem 'rspec-rails'
gem 'webrat'
gem 'capybara'
end
group :test do
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'spork', '0.9.0.rc2'
gem 'launchy'
gem 'remarkable', '4.0.0.alpha4'
gem 'remarkable_activemodel', '4.0.0.alpha4'
gem 'remarkable_mongoid'
gem 'email_spec'
gem 'autotest-rails-pure'
gem 'autotest-growl'
#gem 'machinist'
#gem 'machinist_mongo', :require => 'machinist/mongoid'
gem 'machinist', '2.0.0.beta2'
gem 'machinist_mongo', :git => 'git://github.com/nmerouze/machinist_mongo.git', :branch => 'machinist2', :require => 'machinist/mongoid'
gem 'faker'
gem 'pickle'
end
group :development do
gem 'awesome_print'
end
gem 'devise'
gem 'whenever'
gem 'mongoid', '2.0.0.beta.20'
gem 'bson_ext'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment