Skip to content

Instantly share code, notes, and snippets.

@thash
Created November 7, 2011 11:26
Show Gist options
  • Save thash/1344707 to your computer and use it in GitHub Desktop.
Save thash/1344707 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
# --- Rails 3.1 -----------------------------------
gem 'rails', '3.1.1'
group :assets do
gem 'sass-rails', '~> 3.1.4'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# --- Use MongoDB -----------------------------------
gem "mongoid"
gem "bson_ext"
gem 'json'
# --- Test and debugging ----------------------------
group :development, :test, :cucumber do
gem "rspec-rails"
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'mongoid-rspec'
gem 'cucumber'
gem 'cucumber-rails'
gem 'capybara'
gem 'database_cleaner'
gem 'spork'
gem 'watchr'
gem 'i18n_generators'
# Deploy with Capistrano
gem 'capistrano'
gem 'capistrano_colors'
gem 'capistrano-ext'
end
# --- To profile app ----------------------------
group :production, :staging do
gem 'newrelic_rpm'
gem "airbrake"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment