Commit e14c9da28ff1a840b2a758ec733e4106698a8811
Exists in
colab
and in
4 other branches
Merge pull request #273 from mezuro/gem_review
sqlite3 is not necessary under production
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
Gemfile
| @@ -3,9 +3,6 @@ source 'https://rubygems.org' | @@ -3,9 +3,6 @@ source 'https://rubygems.org' | ||
| 3 | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | 3 | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
| 4 | gem 'rails', '4.2.4' | 4 | gem 'rails', '4.2.4' |
| 5 | 5 | ||
| 6 | -# Use sqlite3 as the database for Active Record | ||
| 7 | -gem 'sqlite3' | ||
| 8 | - | ||
| 9 | # Use SCSS for stylesheets | 6 | # Use SCSS for stylesheets |
| 10 | gem 'sass-rails', '~> 5.0.0' | 7 | gem 'sass-rails', '~> 5.0.0' |
| 11 | 8 | ||
| @@ -119,6 +116,9 @@ group :development, :test do | @@ -119,6 +116,9 @@ group :development, :test do | ||
| 119 | 116 | ||
| 120 | # Mocks and stubs for javascript tests | 117 | # Mocks and stubs for javascript tests |
| 121 | gem 'sinon-rails' | 118 | gem 'sinon-rails' |
| 119 | + | ||
| 120 | + # Use sqlite3 as the database for Active Record | ||
| 121 | + gem 'sqlite3' | ||
| 122 | end | 122 | end |
| 123 | 123 | ||
| 124 | # Acceptance tests | 124 | # Acceptance tests |