-
-
Save joemsak/08bf42c36b302256b1ce to your computer and use it in GitHub Desktop.
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 'https://rubygems.org' | |
gem 'rails', '~> 3.2.13' | |
gem 'activeadmin', '~> 0.6.0' | |
gem 'pg', '~> 0.14.1' | |
gem 'devise', '~> 2.2.4' | |
gem 'cancan', '~> 1.6.9' | |
gem 'role_model' | |
gem "js_message" | |
gem 'thin' | |
#Scaling App | |
gem 'sidekiq' | |
gem 'sidekiq-failures' | |
gem 'resque', "~> 1.22.0" | |
gem 'sinatra', require: false | |
gem 'slim' | |
gem 'rchardet19' | |
gem 'redis' | |
gem 'nokogiri' | |
gem 'memcachier' | |
gem 'dalli' | |
gem 'acts-as-taggable-on' | |
gem 'httparty' | |
gem "google_drive" | |
gem 'execjs' | |
gem 'jquery-rails', '2.1.4' | |
gem 'jquery-ui-rails', '3.0.0' | |
gem 'json' | |
gem 'chronic' | |
#Heroku | |
gem 'newrelic_rpm' #Monitor code performance | |
gem 'honeybadger' #More error monitoring | |
gem "heroku-forward" #prevent 60 bootup timeout with reverse proxy | |
#Authentications | |
gem 'omniauth', github: 'intridea/omniauth' | |
gem 'omniauth-oauth2', github: 'intridea/omniauth-oauth2' | |
gem 'omniauth-facebook' | |
gem 'omniauth-twitter' | |
gem 'omniauth-google-oauth2' | |
#Image Manipulation | |
gem 'carrierwave' | |
gem "rmagick" #sudo apt-get install libmagickwand-dev | |
gem "cloudinary" | |
#Async | |
gem "eventmachine" | |
gem "em-http-request" | |
#AWS | |
gem "fog", "~> 1.3.1" | |
#Gon | |
gem 'gon' #Access data from javascript | |
#Handle files that are being uploaded | |
gem 'rack-raw-upload' | |
# Load Data from File | |
gem 'yaml_db' | |
# share Handlebars templates on client and server | |
gem 'handlebars-rails', github: "danroberts/handlebars-rails" | |
#sass | |
gem 'bourbon' | |
gem 'neat' | |
#Easy access to analytics API | |
gem 'gattica', github: 'chrisle/gattica' | |
#Simply URL helper | |
gem 'friendly_id', '~> 4.0.9' | |
group :development do | |
gem 'rspec-rails' | |
gem 'quiet_assets' | |
gem 'thin' | |
gem 'method_profiler' | |
gem 'rails-dev-tweaks', '~> 0.6.1' | |
gem 'heroku_san' | |
end | |
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
group :test do | |
gem 'rspec-rails-caching', github: 'joemsak/rspec-rails-caching', | |
branch: 'fix-rails-env-loading-error' | |
gem "shoulda-matchers", "~> 2.2.0" | |
gem 'cucumber-rails', require: false | |
gem 'database_cleaner' | |
gem 'launchy' | |
gem 'capybara-webkit' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment