Skip to content

Instantly share code, notes, and snippets.

@MirkoCindric
Created April 30, 2012 00:57
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 MirkoCindric/2554542 to your computer and use it in GitHub Desktop.
Save MirkoCindric/2554542 to your computer and use it in GitHub Desktop.
Gems to use on a greenfield rails app
# database
gem 'pg'
gem 'interactive_migrations'
# Views
gem 'haml'
gem 'simple_form', '~>2.0.0'
gem 'country-select'
gem 'pjax_rails'
# Pagination
gem 'kaminari'
# Authentication and Authorization
gem 'devise'
gem 'cancan'
# Controller responders
gem 'responders'
# Deployment
gem 'capistrano'
gem 'capistrano-ext'
gem 'capistrano_colors'
gem 'capistrano-gitflow', :git => 'git@github.com:Sentia/git-deployment.git'
# RVM
gem 'rvm'
gem 'rvm-capistrano'
# Uploads
gem 'mini_magick'
gem 'carrierwave'
# Extra Arel capabilites in Active Record
gem 'squeel'
gem 'valium'
# State machinez
gem 'state_machine'
# API Tools
gem 'grape', :git => 'https://github.com/intridea/grape.git'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment