Skip to content

Instantly share code, notes, and snippets.

@jpotts18
Created July 6, 2016 13:32
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 jpotts18/f55655c414ed88fb4b205452d855747f to your computer and use it in GitHub Desktop.
Save jpotts18/f55655c414ed88fb4b205452d855747f to your computer and use it in GitHub Desktop.
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