Gemfile
ruby '2.1.5'
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
gem 'omniauth', '~> 1.2.2'
gem 'omniauth-github', '~> 1.1.2'
gem 'github_api', '~> 0.13.0'
gem 'pg', '~> 0.18.4'
gem 'simple_form', '~> 3.2.0'
gem 'zurb-foundation', '~> 4.3.2'
group :test, :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug'
gem 'capybara'
gem 'capybara-screenshot'
gem 'capybara-webkit'
gem 'coveralls', '~> 0.8.10'
gem 'launchy'
gem 'pry'
gem 'rspec-rails'
end
group :production do
gem 'rails_12factor', '~> 0.0.3'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'uglifier', '~> 2.7.1'
end
gem 'jquery-rails', '~> 4.0.5'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 2.5.3'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.3.2'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'