Skip to content

Instantly share code, notes, and snippets.

@RobinClowers
Created June 11, 2014 04:51
Show Gist options
  • Save RobinClowers/f19cf819d2fb34ff89e1 to your computer and use it in GitHub Desktop.
Save RobinClowers/f19cf819d2fb34ff89e1 to your computer and use it in GitHub Desktop.
Gemfile
source 'https://rubygems.org'
ruby '2.1.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.1'
# Use postgres as the database for Active Record
gem 'pg'
# Use slim for templates
gem 'slim-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'sass-rails', '~> 4.0.3'
gem 'compass-rails'
gem 'decent_exposure'
gem 'rmagick'
gem 'stringex'
gem 'modernizr-rails'
gem 'dotenv-rails'
group :development, :test do
gem 'rspec-rails', '~> 2.0'
gem 'pry'
gem 'pry-byebug'
gem 'better_errors'
gem 'sprockets_better_errors', git: 'git@github.com:RobinClowers/sprockets_better_errors.git',
branch: 'update-for-rails-4-1'
gem 'binding_of_caller'
end
group :production do
gem 'rails_12factor'
end
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.1.1'
# Use Omiauth for social sign in
gem 'omniauth', '~>1.2.1'
gem 'omniauth-facebook', '~> 1.6.0'
# Use Capistrano for deployment
gem 'capistrano', '~> 3.1.0'
# Use Puma server
gem 'puma', '~> 2.8.1'
gem 'capistrano3-puma'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment