|
| 1 | +source 'https://rubygems.org' |
| 2 | +ruby '2.2.4' |
| 3 | + |
| 4 | +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
| 5 | +gem 'rails', '4.2.3' |
| 6 | +# Use postgresql as the database for Active Record |
| 7 | +gem 'sqlite3' |
| 8 | +gem 'rails_12factor', group: :production |
| 9 | +# Use SCSS for stylesheets |
| 10 | +gem 'sass-rails', '~> 5.0.3' |
| 11 | +# Use Uglifier as compressor for JavaScript assets |
| 12 | +gem 'uglifier', '>= 1.3.0' |
| 13 | +# Use CoffeeScript for .js.coffee assets and views |
| 14 | +gem 'coffee-rails', '~> 4.0.0' |
| 15 | +# See https://github.com/sstephenson/execjs#readme for more supported runtimes |
| 16 | +# gem 'therubyracer', platforms: :ruby |
| 17 | +gem 'rack-cors', :require => 'rack/cors' |
| 18 | +gem "rack-attack", group: :production |
| 19 | +gem 'dalli', group: :production |
| 20 | +gem 'obscenity' |
| 21 | + |
| 22 | +# Use jquery as the JavaScript library |
| 23 | +gem 'jquery-rails' |
| 24 | +# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks |
| 25 | +gem 'turbolinks' |
| 26 | +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder |
| 27 | +gem 'jbuilder', '~> 2.0' |
| 28 | +# bundle exec rake doc:rails generates the API under doc/api. |
| 29 | +gem 'sdoc', '~> 0.4.0', group: :doc |
| 30 | + |
| 31 | +# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |
| 32 | +gem 'spring', group: :development |
| 33 | + |
| 34 | +# Use ActiveModel has_secure_password |
| 35 | +# gem 'bcrypt', '~> 3.1.7' |
| 36 | + |
| 37 | +gem 'puma' |
| 38 | + |
| 39 | +# Use Capistrano for deployment |
| 40 | +# gem 'capistrano-rails', group: :development |
| 41 | + |
| 42 | +# Use debugger |
| 43 | +# gem 'debugger', group: [:development, :test] |
0 commit comments