Skip to content

Instantly share code, notes, and snippets.

@ErikPeterson
Created March 26, 2015 14:07
Show Gist options
  • Save ErikPeterson/32aea0cbef0b468b668f to your computer and use it in GitHub Desktop.
Save ErikPeterson/32aea0cbef0b468b668f to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', github: 'rails/rails', branch: '4-2-stable'
# Use Postgres as the database for Active Record
gem 'pg'
# Use Fog to manage uploads to S3
gem 'fog'
# Also use aws-sdk to manage uploads to S3 cuz spree
gem 'aws-sdk', '< 2.0'
# Use minimagick for resizing images, cropping images, and determining sizes
gem 'mini_magick'
group :assets do
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
end
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use devise for user authentication
gem 'devise'
# Use cancan for user authorization
gem 'cancan'
#Use mobvious for mobile detection
gem 'mobvious'
#Use mailchimp
gem 'mailchimp-api', require: 'mailchimp'
#Use sitemap_generator for sitemaps
gem 'sitemap_generator'
#Use coffee_script :'(
gem 'coffee-rails'
#Use jquery :'(
gem 'jquery-rails'
#Use Spree
gem 'spree', '3.0.0'
gem 'spree_gateway', github: 'spree/spree_gateway', branch: '3-0-stable'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Use RSPEC for testing
gem 'rspec-rails'
end
group :test do
gem 'timecop'
gem 'database_cleaner'
gem 'rspec-activemodel-mocks'
gem 'simplecov', :require => false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment