`require':无法加载这样的文件 - rails / all(LoadError)

时间:2014-06-11 05:57:21

标签: ruby-on-rails rspec ruby-on-rails-plugins

运行rspec for plugin时出现以下错误。

无法加载此类文件 - rails / all(LoadError)

  

要求在application.rb中定义'rails / all'

有人可以帮我解决上述问题吗?

1 个答案:

答案 0 :(得分:0)

听起来像rspec找不到rails gem,这通常意味着gem没有全局安装。尝试使用:

bundle exec rspec spec

这会将所有Gemfile的宝石加载到rspec的环境中,以允许它们被加载。