请帮忙。
运行rails应用程序时出错。$ bundle exec rake db:reset
rake中止!NoMethodError: undefined method
为rhoconnect:模块配置`
最佳答案
试试这个:
bundle exec rhoconnect start
如果不起作用,请应用以下命令:
打开应用程序的
Gemfile
并找到rhoconnect行,它应该如下所示:gem 'rhoconnect', '3.3.6'
将其更改为最新版本,您可以在rubygems.org上找到,例如,如果它是3.4.0:
gem 'rhoconnect', '3.4.0'
从根应用程序目录运行以下命令:
$ bundle install
现在更新应用程序的RhoConnect依赖项清单:
$ rhoconnect update
然后尝试运行:
bundle exec rhoconnect start
希望能奏效。