Commit 7d76d8075a7bb5d5871b9df0fc820030b576e17c
1 parent
2a023f5a
Exists in
colab
and in
4 other branches
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 | 3 | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' |
4 | 4 | gem 'rails', '4.2.4' |
5 | 5 | |
6 | -# Use sqlite3 as the database for Active Record | |
7 | -gem 'sqlite3' | |
8 | - | |
9 | 6 | # Use SCSS for stylesheets |
10 | 7 | gem 'sass-rails', '~> 5.0.0' |
11 | 8 | |
... | ... | @@ -119,6 +116,9 @@ group :development, :test do |
119 | 116 | |
120 | 117 | # Mocks and stubs for javascript tests |
121 | 118 | gem 'sinon-rails' |
119 | + | |
120 | + # Use sqlite3 as the database for Active Record | |
121 | + gem 'sqlite3' | |
122 | 122 | end |
123 | 123 | |
124 | 124 | # Acceptance tests | ... | ... |