Skip to content

Instantly share code, notes, and snippets.

@yoeran
Last active December 22, 2015 14:08
Show Gist options
  • Save yoeran/6483190 to your computer and use it in GitHub Desktop.
Save yoeran/6483190 to your computer and use it in GitHub Desktop.
My starter-Gemfile
source 'https://rubygems.org'
# Core
gem 'rails', '4.1.6'
# Database
gem 'pg'
# Frontend
gem 'sass-rails', github: 'rails/sass-rails'
gem 'sass'
gem 'uglifier'
gem 'haml-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'autoprefixer-rails'
gem 'hologram' # Styleguide generator
# gem 'rails-i18n'
# Test data
# gem 'faker'
# gem 'uifaces'
# Backend
gem 'jbuilder'
gem 'therubyracer'
# gem 'missing_validators'
# gem 'devise'
# gem 'carrierwave'
# gem 'mini_magick'
# gem 'newrelic_rpm'
# gem 'rails_admin'
# Development
group :development do
# Deployment
gem 'mina'
gem 'puma'
# Utilities
gem 'rails-erd'
gem 'spring'
# Debugging
gem 'bullet'
gem 'brakeman', :require => false
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug'
gem 'meta_request' # Combine with chrome extension: RailsPanel
gem 'quiet_assets'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment