Created
July 12, 2012 11:15
-
-
Save piousbox/3097520 to your computer and use it in GitHub Desktop.
An example gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'http://rubygems.org' | |
gem 'rails', '3.1.0' | |
gem 'rack', '1.3.3' | |
# datastore | |
gem 'mysql2' | |
gem "mongoid" | |
gem "bson_ext" | |
### assets | |
gem 'execjs' | |
gem 'therubyracer' | |
gem 'jammit' | |
gem 'jquery-rails' | |
# auth | |
gem 'devise', '1.4.7' | |
gem 'cancan', '1.6.8' | |
gem "koala", '1.5.0' | |
gem 'omniauth', '1.0.0' | |
gem 'omniauth-facebook', '1.4.1' | |
gem 'oauth2', '0.8.0' | |
gem 'oa-core', '0.3.2' | |
# text | |
gem 'to_slug_2', '0.1.0' | |
# gem 'lorem-ipsum-me' | |
# gem 'haml' | |
gem 'haml-rails' | |
gem 'will_paginate' | |
gem "recaptcha", :require => "recaptcha/rails" | |
# aws | |
gem 'paperclip', '3.0.3' | |
# gem 'paperclip', '~> 2.7' | |
# | |
# gem 'aws-s3' # this cannot be with paperclip | |
gem 'aws-sdk' | |
# gem 'right_aws' | |
gem 's3_swf_upload', :git => 'git://github.com/nathancolgate/s3-swf-upload-plugin' | |
# app servers | |
gem 'passenger' | |
gem 'unicorn' | |
# 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' | |
end | |
group :development do | |
gem 'hpricot' | |
gem 'ruby_parser' | |
gem 'sqlite3' | |
# gem 'lorem-ipsum-me' | |
gem 'capistrano' | |
# gem 'ruby-debug19', :require => 'ruby-debug' | |
gem 'jasmine' | |
end | |
group :test do | |
# gem 'minitest', '3.2.0' | |
gem 'sqlite3' | |
# gem 'ruby-debug19', :require => 'ruby-debug' | |
gem 'fabrication' | |
gem 'factory_girl' | |
gem 'rspec' | |
gem 'rspec-rails' | |
# gem 'mocha', '0.12.0' | |
gem 'simplecov' | |
gem 'testoaster', '0.0.1' | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment