require 'linguistics'
`require': cannot load such file -- linguistics (LoadError)
但是当我在IRB中尝试测试代码时 - 一切都很好
答案 0 :(得分:0)
我怀疑您需要编辑应用程序的Gemfile
请参阅:http://gembundler.com/v1.3/gemfile.html
简而言之,编辑Gemfile并添加一行
gem 'linguistics'
然后运行
bundle install
来自您的终端。
然后再次尝试你的rake命令