Skip to content

Instantly share code, notes, and snippets.

@shawnacscott
Last active August 29, 2015 14:15
Show Gist options
  • Save shawnacscott/08c89617d339da88ca02 to your computer and use it in GitHub Desktop.
Save shawnacscott/08c89617d339da88ca02 to your computer and use it in GitHub Desktop.
All production gems
source 'https://rubygems.org'
# The following line instructs RVM on which version of ruby to use
#ruby=2.1.3
# bootstrap-sass related gems
gem 'bootstrap-sass', '~> 3.3.3'
gem 'sprockets'
gem 'sass-rails', '~> 5.0.0'
gem 'autoprefixer-rails', '>= 5.0'
# all other gems in production, for context
gem 'unicorn'
gem 'rake'
gem 'pg'
gem 'cassandra-driver', require: 'cassandra'
gem 'rails', '~> 4.1'
gem 'dotenv-rails'
gem 'devise'
gem 'rollbar'
gem 'aasm'
gem 'interactor'
gem 'interactor-rails'
gem 'rails-observers'
gem 'uglifier', '>= 1.3.0'
gem 'therubyracer', require: 'v8'
gem 'jquery-rails'
gem 'foreigner'
gem 'savon', '~> 2.0'
gem 'bunny'
group :doc do
gem 'sdoc', require: false
end
group :development do
gem 'recap', git: 'our repo here'
gem 'rspec-rails', '>= 3.1.0'
gem 'capybara'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'pry-rails'
gem 'pry-byebug'
gem 'simplecov', require: false
gem 'metric_fu', require: false
gem 'guard-rspec', require: false
gem 'rspec_junit_formatter'
gem 'prmd'
gem 'spring-commands-rspec'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment