diff options
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,10 +1,8 @@ source 'https://rubygems.org' - +ruby "2.2.1" # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.1' -# Use sqlite3 as the database for Active Record -gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0' # Use Uglifier as compressor for JavaScript assets @@ -23,6 +21,8 @@ gem 'jbuilder', '~> 2.0' # bundle exec rake doc:rails generates the API under doc/api. gem 'sdoc', '~> 0.4.0', group: :doc gem 'scale' +gem 'rails_12factor', group: :production +gem 'puma' # Use ActiveModel has_secure_password # gem 'bcrypt', '~> 3.1.7' @@ -42,5 +42,7 @@ group :development, :test do # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' + # Use sqlite3 as the database for Active Record + gem 'sqlite3' end |
