Skip to content

Instantly share code, notes, and snippets.

@jonkgrimes
Created January 18, 2013 14:28
Show Gist options
  • Save jonkgrimes/4564888 to your computer and use it in GitHub Desktop.
Save jonkgrimes/4564888 to your computer and use it in GitHub Desktop.
TheSquareFoot's Gemfile
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails', '3.2.11'
gem 'pg'
gem 'unicorn'
gem 'rmagick'
gem 'carrierwave', git: "git://github.com/jnicklas/carrierwave.git"
gem 'fog'
gem 'devise'
gem 'devise_invitable'
gem 'omniauth'
gem 'omniauth-linkedin'
gem 'fabrication', '2.0.2'
gem 'decent_exposure'
gem 'dummy_image', :git => 'git://github.com/davelyon/dummy_image.git'
gem 'remote_table'
gem 'jbuilder'
gem 'oj'
gem 'geokit', :git => 'https://github.com/zaarly/geokit-gem.git'
gem 'resque'
gem 'redis-rails'
gem 'postmark-rails'
gem 'vestal_versions', :git => 'git://github.com/jodosha/vestal_versions.git'
gem 'newrelic_rpm'
gem 'redcarpet'
gem 'will_paginate', '~> 3.0'
gem 'negative_captcha'
gem 'rack-rewrite'
gem 'rakismet'
gem 'solve360'
gem 'redis-store'
gem 'airbrake'
gem 'aws-s3'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'jquery-ui-rails'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'pry'
gem 'rspec-rails'
gem 'capybara-email'
gem 'launchy'
gem 'annotate', '>=2.5.0.pre1'
end
group :test do
gem 'ephemeral_response'
gem 'shoulda'
gem 'cucumber-rails', require: false
gem 'cucumber-rails-training-wheels', require: false
gem 'rails_best_practices'
gem 'simple_cov'
gem 'database_cleaner'
end
group :staging, :production do
gem 'hirefireapp'
end
gem 'haml-rails'
gem 'jquery-rails'
@jonkgrimes
Copy link
Author

As @pboling so astutely noticed, 'redis-rails' is just a wrapper around 'redis-store', so I could probably remove 'redis-store'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment