main
 1source 'https://rubygems.org'
 2ruby "2.2.1"
 3
 4# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
 5gem 'rails', '4.2.1'
 6# Use SCSS for stylesheets
 7gem 'sass-rails', '~> 5.0'
 8# Use Uglifier as compressor for JavaScript assets
 9gem 'uglifier', '>= 1.3.0'
10# Use CoffeeScript for .coffee assets and views
11gem 'coffee-rails', '~> 4.1.0'
12# See https://github.com/rails/execjs#readme for more supported runtimes
13# gem 'therubyracer', platforms: :ruby
14
15# Use jquery as the JavaScript library
16gem 'jquery-rails'
17# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
18gem 'turbolinks'
19# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
20gem 'jbuilder', '~> 2.0'
21# bundle exec rake doc:rails generates the API under doc/api.
22gem 'sdoc', '~> 0.4.0', group: :doc
23gem 'scale'
24gem 'rails_12factor', group: :production
25gem 'puma'
26
27# Use ActiveModel has_secure_password
28# gem 'bcrypt', '~> 3.1.7'
29
30# Use Unicorn as the app server
31# gem 'unicorn'
32
33# Use Capistrano for deployment
34# gem 'capistrano-rails', group: :development
35
36group :development, :test do
37  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
38  gem 'byebug'
39
40  # Access an IRB console on exception pages or by using <%= console %> in views
41  gem 'web-console', '~> 2.0'
42
43  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
44  gem 'spring'
45  # Use sqlite3 as the database for Active Record
46  gem 'sqlite3'
47end
48