I'm building a Rails app that uses Hunspell and the hunspell-ffi gem so that Ruby can interface with it. I'm deploying the app to heroku, but unfortunately it needs Hunspell to be installed on the server in order for the gem to work.

Is there any way for me to install Hunspell on Heroku? Or am I going to have to migrate to EC2?

Thanks in advance :)

link|improve this question

75% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Unless I am mistaken or something has changed (I cannot find any evidence of this), you cannot install external native libraries on Heroku. If the library is not already installed (this is the case, I think, for ImageMagick, and perhaps others), you will not be able to use the gem.

link|improve this answer
feedback

With Bundler, you should be able to install any gem. According to http://devcenter.heroku.com/articles/how-do-i-install-gems-for-my-app, "Almost any gem - even those with native dependencies - can be installed using Bundler. If there’s a specific gem that won’t install on Heroku, please submit a support ticket."

AFAIK, when your app is spun up, gems in the Gemfile are installed on-the-fly to the server your app is spun up to.

The Aspen stack has pre-installed gems, but you still should be able to add gems not pre-installed.

The bamboo stack has no pre-installed gems, so all gem dependencies must be declared explicitly. I believe that is the same for the Celadon stack.

link|improve this answer
feedback

Checkout this url: http://gems-summary.heroku.com/2011-07-19

It's freaking amazing how much support Heroku has for the gem community. So all you need to to is add the gem to your bundle since Hunspell is on rubygems, bundle install, and then deploy.

Gemfile

source 'http://rubygems.org'
gem 'rails', '3.0.5'
gem 'hunspell'

Then add to git:

git add .
git commit -m 'added hunspell'

Then bundle:

bundle

And deploy:

 git push heroku
link|improve this answer
This does not answer the question. The Hunspell gem still requires libhunspell. – Brandon Tilley Aug 14 '11 at 20:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.