Skip to content

Instantly share code, notes, and snippets.

@Solnse
Created November 1, 2011 04:11
Show Gist options
  • Save Solnse/1329898 to your computer and use it in GitHub Desktop.
Save Solnse/1329898 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'rake', '0.9.2'
gem 'heroku'
gem 'thin'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :production do
gem 'pg'
end
group :development do
gem 'sqlite3'
end
group :test do
gem 'sqlite3'
# Pretty printed test output
gem 'turn', :require => false
end
gem 'therubyracer'
gem 'will_paginate', '~> 3.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
gem 'haml-rails'
end
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment