Skip to content

Instantly share code, notes, and snippets.

@kennym
Created August 8, 2011 23:46
Show Gist options
  • Save kennym/1133065 to your computer and use it in GitHub Desktop.
Save kennym/1133065 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.1.0rc5'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
gem 'delayed_job'
gem 'ideone-ruby-api'
# Asset template engines
group :assets do
gem "backbone-rails", "~> 0.5.2"
gem 'coffee-rails'
gem 'jquery-rails'
gem 'sass-rails'
gem 'uglifier'
gem 'haml'
gem "sprockets", :git => 'git://github.com/sstephenson/sprockets.git'
gem 'compass', :git => 'https://github.com/chriseppstein/compass.git', :branch => 'rails31'
gem 'html5-boilerplate'
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
end
# Testing
gem 'rspec-rails', :group => [:development, :test]
group :test, :development do
gem 'faker'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'cucumber-rails'
gem 'capybara'
gem 'guard-rspec'
gem 'guard-livereload'
gem 'libnotify'
gem 'ruby-debug19', :require => 'ruby-debug'
end
# Authentication $ authorization
gem 'devise'
gem 'cancan'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment