Last active
September 30, 2015 19:48
-
-
Save cblunt/1853175 to your computer and use it in GitHub Desktop.
Deprecated: Use https://gist.github.com/cblunt/1042832
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'rails', '3.2.1' | |
gem 'pg' | |
gem 'jquery-rails' | |
gem 'slim' | |
gem 'simple_form' | |
gem 'kaminari' | |
# For hooking deploys into Codebase API | |
gem 'codebase4' | |
# Custom Gems | |
gem 'plymsoftware_core', :git => 'git://github.com/plymouthsoftware/core.git' | |
# Other useful gems | |
# gem 'friendly_id', '~> 4.0.0' | |
# gem 'rack-ssl', :require => 'rack/ssl' | |
# gem 'whenever', :require => false | |
# File uploads / Cloud Storage | |
gem 'carrierwave' | |
gem 'fog', '~> 1.0.0' | |
gem 'mini_magick' | |
# Payments, e.g. PayPal | |
# gem 'activemerchant' | |
group :development, :test do | |
gem 'awesome_print' | |
gem 'capistrano' | |
gem 'guard' | |
gem 'yard' | |
gem 'fabrication' | |
gem 'faker' | |
gem 'mocha' | |
gem 'shoulda-matchers' | |
gem 'steak' # includes rspec and capybara | |
# gem 'simplecov' # Ruby 1.9 | |
end | |
# 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' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
# To use ActiveModel has_secure_password | |
# gem 'bcrypt-ruby', '~> 3.0.0' | |
# To use Jbuilder templates for JSON | |
# gem 'jbuilder' | |
# Use unicorn as the web server | |
# gem 'unicorn' | |
# To use debugger | |
# gem 'ruby-debug' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment