I would like to use captcha in one of my project. When I did try to
install, this is what I got
$ sudo gem install captcha
Building native extensions. This could take a while...
ERROR: Error installing captcha:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb
extconf.rb:1:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:1
Gem files will remain installed in /var/lib/gems/1.8/gems/
rmagick-2.12.2 for inspection.
Results logged to /var/lib/gems/1.8/gems/rmagick-2.12.2/ext/RMagick/
gem_make.out
Sorry, can't help much there. I'm still learning Rails and find that
building my own instead of using plugins helps me grok things better.
Like rolling my own authentication and authorization.
For example, instead of captchas for user validation, I use a simple
email challenge. Of course that meant I had to learn ActionMailer, but
that's built in.