Skip to content

Instantly share code, notes, and snippets.

@sirwolfgang
Last active August 29, 2015 14:23
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 sirwolfgang/75b4f6064974a971d107 to your computer and use it in GitHub Desktop.
Save sirwolfgang/75b4f6064974a971d107 to your computer and use it in GitHub Desktop.
Rails Default Gems
source 'https://rubygems.org'
gem 'rails', '4.2.0'
gem 'puma'
# databases
gem 'pg'
# javascript Backend
gem 'jbuilder'
# job/workers
gem 'sidekiq'
# console
gem 'pry-rails'
# development tools
group :development do
gem 'quiet_assets'
gem 'better_errors' # Setup/Usage https://github.com/charliesome/better_errors#security
gem 'binding_of_caller'
gem 'rubocop', require: false
gem 'newrelic_rpm' # Used only for development mode: http://localhost:3000/newrelic
end
group :test do
gem 'rspec-rails' # rails generate rspec:install
gem 'faker'
gem 'simplecov'
gem 'vcr'
gem 'webmock'
gem 'fuubar'
end
group :development, :test do
gem 'did_you_mean'
gem 'factory_girl_rails'
gem 'pry-stack_explorer'
gem 'pry-rescue'
gem 'pry-byebug'
end
group :production do
gem 'rails_12factor'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment