Created
February 16, 2012 23:55
-
-
Save coneybeare/1848920 to your computer and use it in GitHub Desktop.
This file contains hidden or 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' | |
############################## | |
# Rails and DB | |
############################## | |
# gem 'rack', '1.2.1' | |
gem 'rails', '3.2.0' | |
group :assets do | |
gem 'sass-rails', " ~> 3.2.3" | |
gem 'coffee-rails', "~> 3.2.1" | |
gem 'uglifier', '>= 1.0.3' | |
end | |
gem 'mysql2' # the 0.2.6 is because 3 removes active record support which is not yet included until rails 3.1 | |
gem 'rake'#, '0.8.7' | |
gem 'dynamic_form' | |
############################## | |
### Authentication | |
############################## | |
gem 'devise' | |
gem "cancan" | |
############################## | |
# API and Formatting | |
############################## | |
gem 'acts_as_api' | |
gem "will_paginate", "~> 3.0.pre4" | |
gem 'json_builder' | |
#gem 'ensure-encoding' | |
############################## | |
# Model Behavior | |
############################## | |
gem 'paperclip', "~> 2.0" | |
gem "aws-sdk" | |
gem 'delayed_job' | |
gem 'delayed_job_active_record' | |
gem 'httparty' | |
gem 'hpricot' | |
gem 'ruby-mp3info' | |
############################## | |
# Social | |
############################## | |
gem 'twitter_oauth' | |
gem 'fbgraph' | |
############################## | |
# Paypal / Purchaseing | |
############################## | |
gem 'activemerchant', :require => 'active_merchant' | |
############################## | |
# Search | |
############################## | |
gem 'thinking-sphinx', "~> 2.0.4" | |
############################## | |
# Caching | |
############################## | |
gem 'dalli' | |
gem 'memcache-client' | |
############################## | |
# Cron | |
############################## | |
gem 'whenever', :require => false | |
############################## | |
# Site Map | |
############################## | |
gem 'sitemap_generator' | |
############################## | |
# Push Notifications | |
############################## | |
gem 'apn_on_rails', :git => 'git://github.com/coneybeare/apn_on_rails.git', :branch => 'master' | |
############################## | |
# Deployment | |
############################## | |
gem 'capistrano' | |
gem 'capistrano-ext' | |
############################## | |
# Monitoring | |
############################## | |
gem 'newrelic_rpm'#, "~> 3.0.0" | |
gem "airbrake"#, "~> 3.0.5" | |
gem "rspec-rails"#, "~> 2.4" | |
#gem 'ruby-prof', :git => 'git://github.com/rdp/ruby-prof.git' | |
gem 'daemons' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment