没有要加载的文件——thinking-sphinx

发布于 2024-09-13 18:46:00 字数 509 浏览 2 评论 0原文

当运行像 script/console 这样的脚本命令时,我收到错误消息:

no such file to load -- thinking-sphinx

在我的 evironment.rb 文件中,我有:

config.gem 'thinking-sphinx', :version => '1.3.18', :require_as => 'thinking_sphinx'

在我的 rake 文件中:

require 'thinking_sphinx/tasks'

我有以下版本:

gem 1.3.7
ruby 1.8.7
Rails 2.3.8

我的 rake 命令,如 rake ts:rebuild 工作正常! 有没有办法摆脱烦人的错误消息?

恩克斯!!!

ps:我也用RVM

When running script commands like script/console I get the error message:

no such file to load -- thinking-sphinx

In my evironment.rb file I have:

config.gem 'thinking-sphinx', :version => '1.3.18', :require_as => 'thinking_sphinx'

In my rake file:

require 'thinking_sphinx/tasks'

I have following versions:

gem 1.3.7
ruby 1.8.7
Rails 2.3.8

My rake commands like rake ts:rebuild work fine!
Is there a way to get rid of the annoying error message?

Tnx!!!

ps: I also use RVM

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘸点软妹酱 2024-09-20 18:46:00

看起来 Rails 试图要求 gem 作为“thinking-sphinx”而不是“thinking_sphinx”。您需要使用 :lib 来指定 require 路径,而不是 :require_as IIRC。

config.gem 'thinking-sphinx', :version => '1.3.18', :lib => 'thinking_sphinx'

It looks like Rails is trying to require the gem as "thinking-sphinx" rather than as "thinking_sphinx". You need to use :lib to specify the require path rather than :require_as IIRC.

config.gem 'thinking-sphinx', :version => '1.3.18', :lib => 'thinking_sphinx'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文