source 'https://rubygems.org' gem 'dotenv-rails', '2.1.1', require: 'dotenv/rails-now' # load ENV from .env gem 'rails', '4.2.6' gem 'pg', '0.18.2' gem 'sass-rails', '~> 5.0' gem 'uglifier', '>= 1.3.0' gem 'coffee-rails', '~> 4.1.0' gem 'jquery-rails' gem 'turbolinks' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.0' # Use ActiveModel has_secure_password # gem 'bcrypt', '~> 3.1.7' gem 'unicorn', '4.8.2' # use unicorn as production server gem 'unicorn-rails', '1.1.0' # use unicorn as local server # capistrano deployment gem 'capistrano', '3.1.0' gem 'capistrano-rails', '1.1.1' gem 'capistrano-rbenv', '2.0.2' gem 'capistrano-bundler', '1.1.2' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug' end group :development do # Access an IRB console on exception pages or by using <%= console %> in views gem 'web-console', '~> 2.0' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' end gem 'exception_notification', '4.1.2' # exception notification per email local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") eval_gemfile(local_gemfile) if File.exists?(local_gemfile)