Skip to content

Commit

Permalink
[rails6][Gemfile] Update sqlite3
Browse files Browse the repository at this point in the history
For Rails 6.0, sqlite3 ~> 1.4 is required:

    LoadError:
      Error loading the 'sqlite3' Active Record adapter. Missing a gem
      it depends on? can't activate sqlite3 (~> 1.4), already activated
      sqlite3-1.3.13. Make sure all dependencies are added to Gemfile.

This was changed in rails here:

ManageIQ#20721 (comment)

And is only part of rails 6.0.0.0-rc1 and above.
  • Loading branch information
NickLaMuro committed Dec 7, 2020
1 parent 9bc9d78 commit ba6c252
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 @@ -76,7 +76,7 @@ gem "rubyzip", "~>2.0.0", :require => false
gem "rugged", "~>1.1", :require => false
gem "snmp", "~>1.2.0", :require => false
gem "sprockets", "~>3.7.2", :require => false
gem "sqlite3", "~>1.3.0", :require => false
gem "sqlite3", "~>1.4.0", :require => false
gem "sync", "~>0.5", :require => false
gem "sys-filesystem", "~>1.3.4"
gem "terminal", :require => false
Expand Down

0 comments on commit ba6c252

Please sign in to comment.