Skip to content

Instantly share code, notes, and snippets.

@calvincorreli
Created December 23, 2011 22:13
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 calvincorreli/1515505 to your computer and use it in GitHub Desktop.
Save calvincorreli/1515505 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem "rails", '3.2.0.rc1'
gem "mysql2"
# Assets
group :assets do
gem 'sass-rails', git: 'https://github.com/rails/sass-rails.git', branch: '3-2-stable'
gem "coffee-rails"
gem 'uglifier'
gem 'therubyracer'
gem 'yui-compressor'
end
gem 'jquery-rails'
gem 'less-rails'
gem 'less-rails-bootstrap'
# App
gem 'json'
gem 'aasm', :git => 'git://github.com/rubyist/aasm.git'
gem 'will_paginate', :git => 'git://github.com/mislav/will_paginate.git'
gem 'activemerchant', :git => 'git://github.com/Shopify/active_merchant.git'
gem 'nokogiri'
gem 'RedCloth'
gem 'spreadsheet'
gem 'liquid'
gem 'mime-types', :require => 'mime/types'
gem 'mini_magick', '=1.3.1'
gem 'zencoder', :git => 'git://github.com/zencoder/zencoder-rb.git'
gem 'delayed_job', :git => 'git://github.com/collectiveidea/delayed_job.git', :branch => 'v2.1'
gem 'nested_set', :git => 'git://github.com/skyeagle/nested_set.git'
gem 'carrierwave', :git => 'git://github.com/jnicklas/carrierwave.git'
gem 'color'
gem 'vizjerai-query_trace', :git => 'git://github.com/vizjerai/query_trace.git'
gem "gravtastic"
gem 's3_swf_upload', :git => 'git://github.com/nathancolgate/s3-swf-upload-plugin'
gem "dynamic_form", :git => 'git://github.com/joelmoss/dynamic_form.git'
gem "truncate_html", :git => 'git://github.com/hgimenez/truncate_html.git'
gem "rails_autolink"
gem "rjb"
gem 'money'
gem "activerecord-import", ">= 0.2.0"
# For moving activities to mongoDB
#gem "mongoid", "~> 2.3"
#gem "bson_ext", "~> 1.4"
# Gems where I have my own modified versions
gem 'fog', :git => 'git://github.com/larspind/fog.git'
gem 'dj_remixes', :git => 'git://github.com/larspind/dj_remixes.git'
gem 'acts_as_list_with_sti_support', :git => 'git://github.com/larspind/acts_as_list_with_sti_support.git'
# Trying to fix the memcache restart problems by sleeping in various places
gem "memcached", :git => 'git://github.com/larspind/memcached.git'
# Had to do this because the latest version requires Money ~ 4, but active_merchant requires Money <= 3.7.1
# and google_currency 2.0.0 which satisfies the above is not compatible with Ruby 1.9.3!
gem 'google_currency', :git => 'git://github.com/larspind/google_currency.git'
# SMS delivery
gem 'nexmo'
# Monitoring form validation errors
gem 'tripwire_notifier'
# Monitoring exceptions
gem "airbrake"
# Trying to fix Quoted-Printable issue
gem 'treetop', ">= 1.4.5"
gem 'mail'
# Performance monitoring
gem 'oink', :git => 'git://github.com/noahd1/oink.git'
gem 'newrelic_rpm'
gem "ruby-prof"
# For deployment
gem "unicorn"
# Gems used for development only
group :development do
#gem 'rack-bug', :require => 'rack/bug', :git => 'http://github.com/brynary/rack-bug.git', :branch => 'rails3'
end
# Gems used for development and test only
group :development, :test do
#gem "ruby-debug19"
gem "forgery"
gem "capistrano"
gem "capistrano-ext"
#gem "rails-dev-boost", :git => "git://github.com/thedarkone/rails-dev-boost.git", :require => 'rails_development_boost'
end
# Gems used for tests only
group :test do
gem 'mocha'
gem "shoulda", :git => "git://github.com/thoughtbot/shoulda.git", :require => nil
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment