Skip to content

Instantly share code, notes, and snippets.

@schneems
Created January 9, 2014 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schneems/8344363 to your computer and use it in GitHub Desktop.
Save schneems/8344363 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# ruby '1.9.3'
gem 'rails', '~> 3.2.13'
gem 'rake', '10.1.0'
gem 'mongoid', '~> 3.1.3'
gem 'devise', '~> 3.0.2'
# gem 'mailchimp'
# gem 'gibbon'
gem 'aws-ses', '~> 0.5.0', :require => 'aws/ses'
# gem 'twitter', :git => 'https://github.com/sferik/twitter.git', :tag => 'v2.0.2'
gem 'twitter', '~> 4.8.1'
gem 'koala', '~> 1.6.0'
# gem 'tropo-webapi-ruby'
gem 'mongo', '~> 1.9.1'
gem 'bson_ext', '~> 1.9.1' #, "1.5.1"
# gem 'mongoid_spacial'
gem 'mongoid_geospatial', :git => 'git://github.com/kristianmandrup/mongoid_geospatial.git'
gem 'mongoid_auto_increment', '0.1.2' #, :git => 'git://github.com/teriyakisan/mongoid_auto_increment.git'
gem 'mongoid_slug', '3.1.2'
gem 'mongoid_commentable', '0.0.6'
# gem 'mongoid_rails_migrations', '1.0.0'
gem 'omniauth', '1.1.4'
gem 'nokogiri', '1.5.9'
# gem 'pony'
gem 'json', '~> 1.8.0'
gem 'rgeo', '~> 0.3.20'
gem 'rack-cache', '1.2', :require => 'rack/cache'
gem 'dragonfly', '~> 0.9.14'
gem 'fog', '~> 1.14.0'
# gem 'awesome_print'
gem 'browser', '0.2.0'
gem 'rails_autolink', '~> 1.1.0'
gem 'twilio-ruby', '~> 3.10.1'
gem 'american_date', '~> 1.1.0'
# gem 'later_dude', '>= 0.3.1'
gem 'curb', '0.8.4'
gem 'rack-ssl-enforcer', '0.2.5'
gem 'rack-rewrite', '~> 1.2.1'
gem 'tire', '~> 0.6.0'
gem 'tire-contrib', '~> 0.1.3'
# gem 'tire-fire', :git => 'git@github.com:harvesthq/tire-fire.git' # does not seem to work
gem 'yajl-ruby', '1.1.0'
gem 'will_paginate', '~> 3.0'
gem 'instagram', '~> 0.10.0'
gem 'google_calendar', '0.3.1'
gem 'mobile-fu', '~> 1.2.1'
gem 'shopify_api'
# 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', :platform => :ruby
gem 'uglifier', '>= 1.0.3'
# gem 'jquery-fileupload-rails'
gem 'compass-rails' # you need this or you get an err
gem 'zurb-foundation', '~> 4.0.0'
end
gem 'jquery-rails', '~> 3.0.4'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Deploy with Capistrano
# gem 'capistrano'
gem 'puma', '~> 2.5.0'
group :production do
gem 'pg'
# gem 'thin'
# gem 'unicorn'
# gem 'heroku_rails_deflate' # could not get to work
gem 'rack-zippy'
end
group :development, :test do
gem 'thin'
gem 'sqlite3'
gem 'mysql'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
gem 'debugger'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment