Skip to content

Instantly share code, notes, and snippets.

@lorenjohnson
Created June 4, 2012 20:47
Show Gist options
  • Save lorenjohnson/2870785 to your computer and use it in GitHub Desktop.
Save lorenjohnson/2870785 to your computer and use it in GitHub Desktop.
source :gemcutter
gem 'rails', '3.0.12'
gem 'mysql2', '< 0.3'
gem 'unicorn'
gem 'jquery-rails', '>= 0.2.7'
gem 'jrails'
# LEJ: From version '2.1.6'
gem 'authlogic'
gem 'aasm'
gem 'fastercsv'
# Deprecated for Rails 3+, using activerecord-import as per ar-extensions README
# gem 'ar-extensions'
gem 'activerecord-import'
gem 'daemons'
gem 'dynamic_form'
# LEJ: Was hoptoad_notifier. See upgrade notes for API key config, etc
# https://github.com/airbrake/airbrake
gem 'airbrake'
# gem 'airbrake', '2.4.11', :require => "hoptoad_notifier"
gem 'will_paginate', '~> 3.0'
gem 'nokogiri'
gem 'memcache-client'
gem 'aws-s3', :require => 'aws/s3'
gem 'engineyard-metadata'
gem 'i18n', '>= 0.5.0'
gem 'statistics2'
gem 'rmagick', '2.12.2', :require => false
# LEJ: Gem replacements from vendor/plugins
gem 'awesome_nested_set', :git => 'git://github.com/galetahub/awesome_nested_set.git'
gem 'delayed_job'
# gem 'newrelic_rpm'
gem 'paperclip'
gem 'rack-bug'
gem 'bartt-ssl_requirement', '~>1.4.0', :require => 'ssl_requirement'
# LEJ: Questionable in Rails 3...
gem 'tiny_mce', '0.1.7' # Not recommended for Rails 3.1!
# LEJ: Don't think this is used any more
# TODO: A fork of the plugin to make it a plugin,
# make our own fork of this and tag to make sure this doesn't take us down
# gem 'open_flash_chart', :git => "git://github.com/bgkittrell/open_flash_chart.git"
group :development, :test do
gem 'rspec-rails', "~> 2.0"
gem 'debugger'
end
group :test do
gem 'mocha', '0.9.8'
gem 'shoulda'
gem 'database_cleaner', '>= 0.2.3'
gem 'test-unit', '1.2.3'
# LEJ: This is going to bring us way forward of the used '0.4.0' version we were on
gem 'email_spec'
# LEJ: Near latest version, stay stable for now
gem 'capybara', '1.1.1'
# LEJ: Requires ruby 1.9.2+
gem 'factory_girl'
gem 'ffaker'
gem 'timecop'
# LEJ: Confirm version changes
gem 'cucumber-rails', '0.3.2'
gem 'rack-test', :require => 'rack/test'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment