Created
July 6, 2016 13:32
-
-
Save jpotts18/f55655c414ed88fb4b205452d855747f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
ruby "2.2.2" | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.1' | |
# Views | |
gem 'bootstrap-sass', '~> 3.3.4' | |
gem 'sass-rails' | |
gem 'uglifier' | |
gem 'slim-rails' | |
gem 'bourbon' | |
gem 'faker' | |
gem 'kaminari' | |
gem 'coffee-rails' | |
gem 'jquery-rails' | |
gem 'turbolinks' | |
gem 'jbuilder' | |
gem 'sdoc', '0.4.0', group: :doc | |
gem 'unicorn' | |
gem 'thin' | |
# Authentication / Authorization | |
gem 'devise' | |
gem 'devise_invitable' | |
gem 'petergate' | |
gem 'nokogiri' | |
gem 'activerecord-import' | |
gem 'mail_form' | |
gem 'hashie' | |
gem "simple_form" | |
gem "nested_form", github: 'Verdad/nested_form' | |
gem 'aws-sdk', '~> 2' | |
gem 'wannabe_bool' | |
# Search | |
gem 'elasticsearch', git: 'git://github.com/elasticsearch/elasticsearch-ruby.git' | |
gem 'elasticsearch-rails', git: 'git://github.com/elasticsearch/elasticsearch-rails.git' | |
gem 'elasticsearch-model', git: 'git://github.com/elasticsearch/elasticsearch-rails.git' | |
# Models | |
gem 'pg' | |
gem 'annotate' | |
gem 'json' | |
gem 'newrelic_rpm' | |
group :development do | |
gem 'byebug' | |
gem 'web-console' | |
gem 'spring' | |
gem 'better_errors' | |
gem 'pry-rails' | |
gem 'rest-client' | |
end | |
group :test do | |
gem 'sqlite3' | |
end | |
group :production do | |
gem 'rails_12factor' | |
gem 'puma' | |
end | |
# Use unicorn as the app server | |
# gem 'unicorn' | |
# Use Capistrano for deployment | |
# gem 'capistrano', group: :development | |
# Use debugger | |
# gem 'debugger', group: [:development, :test] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment