Skip to content

Instantly share code, notes, and snippets.

@coneybeare
Created February 16, 2012 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save coneybeare/1848920 to your computer and use it in GitHub Desktop.
Save coneybeare/1848920 to your computer and use it in GitHub Desktop.
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