Skip to content

Instantly share code, notes, and snippets.

@rosiehoyem
Created March 14, 2015 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosiehoyem/609a2f24e697434ea0e4 to your computer and use it in GitHub Desktop.
Save rosiehoyem/609a2f24e697434ea0e4 to your computer and use it in GitHub Desktop.
My preferred Ruby stack
source 'https://rubygems.org'
gem 'rails', '4.1.1'
gem 'pg'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'therubyracer', platforms: :ruby
gem 'devise'
gem "font-awesome-rails"
gem 'puma'
gem "rmagick"
gem "carrierwave"
gem "fog"
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'spring', group: :development
gem 'rails_12factor', group: :production
group :test, :development do
gem "rspec-rails"
gem "capybara"
gem "selenium-webdriver"
gem "better_errors"
gem "binding_of_caller"
gem "terminal-notifier-guard"
gem "factory_girl_rails"
gem "simplecov"
gem "database_cleaner"
gem "guard", ">=2.1.0"
gem "guard-rspec"
gem "faker"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment