DEV Community

Discussion on: How to change the database in a Rails application ?

 
inayuky profile image
inayuky

The workaround is to disable 'spring' as follows.

  1. comment out gem 'spring' in the Gemfile
  2. execute "bundle install"

Details are below issue.
github.com/rails/rails/issues/3471...

I fixed this issue by the following PR.
github.com/rails/spring/pull/679