Skip to content

Instantly share code, notes, and snippets.

@cblunt
Last active September 30, 2015 19:48
Show Gist options
  • Save cblunt/1853175 to your computer and use it in GitHub Desktop.
Save cblunt/1853175 to your computer and use it in GitHub Desktop.
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'
gem 'steak' # includes rspec and capybara
gem 'simplecov'
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