Bundler could not find compatible versions for gem “activesupport”

后端 未结 4 1414
孤城傲影
孤城傲影 2021-01-17 17:08

I migrated to 3.2.13 version of rails and I am getting this error, how do I get rid of this?

Fetching gem metadata from https://rubygems.org/.......
Fetching         


        
4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-17 17:19

    If you changed your rails to 3.2.13 then also change your active support in the gemfile.lock to 3.2.13 then:

    Run:

    $ bundle update

    shut down your server:

    $ control c

    Make sure in your terminal that you are in your project folder then: restart your server:

    $ rails server

    refresh your browser

提交回复
热议问题