Skip to content

Instantly share code, notes, and snippets.

@smartperson
Created December 12, 2013 05:19
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 smartperson/7923540 to your computer and use it in GitHub Desktop.
Save smartperson/7923540 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.13'
#
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'koala'
# gem 'thin'
gem 'unicorn', '~> 4.6.3'
gem 'asset_sync'
gem 'json'
gem 'omniauth-facebook'
gem 'twitter', :git => 'git://github.com/sferik/twitter.git', :tag => 'v5.1.1'
gem 'twitter-text'
gem 'typus'
gem 'certified'
gem 'taps'
gem 'kaminari'
gem 'rack' #remove this if we don't need it!
gem 'mobile-fu'
gem 'newrelic_rpm'
# gem 'td'
gem 'libxml-ruby'
# gem 'rails_12factor', group: :production
gem 'mandrill-api'
# gem 'cocoon'
gem 'delayed_job_active_record'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
#gem 'ruby-debug19'
#gem 'linecache19', git: 'git://github.com/Ziplist/linecache19.git'
gem 'sass' , '~> 3.3.0.rc.2'
gem 'sass-rails'
gem "compass", github: "chriseppstein/compass"
#gem 'compass' #, '0.13.alpha.7'
gem "compass-rails", github: "Compass/compass-rails"
#gem 'compass-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'add-to-homescreen-rails'
gem 'less-rails'
gem 'therubyracer'
gem 'libv8', '~> 3.11.8'
gem 'modernizr-rails'
gem 'zurb-foundation'
gem 'foundation-icons-sass-rails'
gem 'momentjs-rails'
gem 'chart-js-rails'
gem 'd3-rails'
gem 'jquery-mobile-rails'
gem 'bourbon'
gem 'dalli'
gem 'memcachier'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
end
group :test do
gem 'sqlite3'
gem 'simplecov'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# To use debugger
# gem 'debugger'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment