Skip to content

Instantly share code, notes, and snippets.

@luckyruby
Created March 28, 2012 02:55
Show Gist options
  • Save luckyruby/2223152 to your computer and use it in GitHub Desktop.
Save luckyruby/2223152 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.2.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'haml'
gem 'acts_as_list'
gem 'redis'
gem 'will_paginate'
gem 'execjs'
gem 'newrelic_rpm'
gem "activerecord-import", ">= 0.2.0"
platforms :mri do
gem 'pg'
gem 'therubyracer'
end
platforms :jruby do
gem 'activerecord-jdbcpostgresql-adapter'
gem 'jruby-openssl'
gem 'json'
gem 'therubyrhino'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
gem 'capistrano-ext'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end
group :development do
gem 'nifty-generators'
gem 'ruby-prof'
end
gem "mocha", :group => :test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment