Commit 7d76d8075a7bb5d5871b9df0fc820030b576e17c

Authored by Rafael Manzo
1 parent 2a023f5a

sqlite3 is not necessary under production

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
@@ -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