当我尝试启动 rails 控制台时出现 Spring gem 错误
Error with Spring gem when I try to start rails console
我正在从事一个由其他人启动的项目。当我尝试启动 rails 控制台时,出现以下错误:
/.rvm/gems/ruby-2.2.0@global/gems/bundler-1.8.4/lib/bundler/runtime.rb:34:in
block in setup': You have already activated spring 1.3.6, but your
Gemfile requires spring 1.3.3. Prepending
bundle exec` to your
command may solve this.
我有 运行 bundle exec rake db:migrate
和 bundle exec rake db:seed
,bundle install
也没有问题 - 有什么原因造成的吗?
正如在评论中发现的那样,解决方案是删除 Gemfile.lock
并重新安装捆绑包。
我正在从事一个由其他人启动的项目。当我尝试启动 rails 控制台时,出现以下错误:
/.rvm/gems/ruby-2.2.0@global/gems/bundler-1.8.4/lib/bundler/runtime.rb:34:in
block in setup': You have already activated spring 1.3.6, but your Gemfile requires spring 1.3.3. Prepending
bundle exec` to your command may solve this.
我有 运行 bundle exec rake db:migrate
和 bundle exec rake db:seed
,bundle install
也没有问题 - 有什么原因造成的吗?
正如在评论中发现的那样,解决方案是删除 Gemfile.lock
并重新安装捆绑包。