Skip to content

Commit

Permalink
Merge pull request #1543 from tvdeyen/fixate-sqlite-dep
Browse files Browse the repository at this point in the history
Fixate sqlite dep for bug fix
  • Loading branch information
tvdeyen authored Feb 20, 2019
2 parents bbe4cf9 + 3981cc8 commit c0df209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gem 'rails', '~> 5.2.0'
# Profiling
gem 'rack-mini-profiler', group: :development, require: false

gem 'sqlite3' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'sqlite3', '~> 1.3.6' if ENV['DB'].nil? || ENV['DB'] == 'sqlite'
gem 'mysql2', '~> 0.5.1' if ENV['DB'] == 'mysql'
gem 'pg', '~> 1.0' if ENV['DB'] == 'postgresql'
gem 'sassc-rails'
Expand Down

0 comments on commit c0df209

Please sign in to comment.