Skip to content

Instantly share code, notes, and snippets.

@DougHall
Created August 10, 2011 19:59
Show Gist options
  • Save DougHall/1138024 to your computer and use it in GitHub Desktop.
Save DougHall/1138024 to your computer and use it in GitHub Desktop.
Gemfile
source 'http://rubygems.org'
gem 'rails', :git => 'https://github.com/rails/rails.git', :branch => '3-1-stable'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
# Asset template engines
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# authentication and related gems
gem 'devise'
gem 'hpricot'
gem 'ruby_parser'
gem 'cancan'
# Templates and UI
gem 'haml-rails'
gem 'sass-rails', :git => 'https://github.com/rails/sass-rails.git', :branch => '3-1-stable'
gem 'simple_form'
gem 'has_scope'
gem 'kaminari'
gem 'compass', :git => 'https://github.com/chriseppstein/compass.git', :branch => 'rails31'
gem 'compass-colors'
gem 'compass-960-plugin'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
# 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 "rspec-rails"
gem "cucumber-rails"
# gem 'capybara'
# gem 'webrat'
gem 'factory_girl_rails'
end
group :development do
gem 'capistrano'
# gem 'rails3-generators'
end
group :production do
gem 'pg'
end
group :test do
# Pretty printed test output
gem 'turn', :require => false
gem 'database_cleaner'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment