3

我想使用thinking-sphinx-raspell gem 来为我们网站上的搜索提供您的意思建议。它适用于我的开发机器(Mountain Lion),但我很难在 Heroku Cedar 上部署它。

gem 依赖于raspell gem ,而后者又依赖于aspell。因为 aspell 不包含在 Heroku Cedar 堆栈中,所以我使用 Vulcan 在 Heroku 机器上编译它,将二进制文件添加到我的 git 存储库,然后将其推送到 Heroku。我在这里更详细地描述了这些步骤。

这会导致捆绑器阶段出现错误:

Installing raspell (1.3)
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/local/bin/ruby extconf.rb
checking for ruby.h... yes
checking for aspell.h... no
checking for main() in -laspell... no
creating Makefile
make
gcc -I. -I/usr/local/include/ruby-1.9.1/x86_64-linux -I/usr/local/include/ruby-1.9.1/ruby/backward -I/usr/local/include/ruby-1.9.1 -I. -DHAVE_RUBY_H -I/opt/local/include    -fPIC -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wpointer-arith -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long  -o raspell.o -c raspell.c
In file included from raspell.c:2:
raspell.h:6:20: error: aspell.h: No such file or directory

如果我理解正确的话,这种对 aspell.h 的依赖是在 raspell gem 的 extconf.rb 中设置

have_header("aspell.h")

我将该头文件放在项目的 bin 目录中。不是最好的地方,但我认为这不是问题所在。这对应/app/bin于 Heroku 文件系统。我将此路径添加到PATH,C_INCLUDE_PATHCPLUS_INCLUDE_PATH设置CFLAGS-I/app/bin.

我做错了什么?还是我在尝试一些对 Heroku 不起作用的东西?

4

1 回答 1

0

你看过 Heroku 的 buildpacks 吗? https://devcenter.heroku.com/articles/buildpacks

它们似乎是一种自定义堆栈的方法。(自从您提出问题以来,可能已经介绍了它们。)

于 2014-03-08T03:02:42.923 回答