require 'linguistics'
`require': cannot load such file -- linguistics (LoadError)但是当我在IRB中尝试测试代码时-一切都很好
发布于 2013-03-31 18:50:13
我怀疑您需要编辑应用程序的Gemfile
看看这个:http://gembundler.com/v1.3/gemfile.html
简而言之,编辑Gemfile并添加一行
gem 'linguistics'然后运行
bundle install从你的终端。
然后再次尝试rake命令
https://stackoverflow.com/questions/15728178
复制相似问题