Sweet! The more the merrier!
So I went through the ./script/plugin installation, no prob, added the
"config.gem 'geokit'" line to my config/environment.rb, then installed
it. Had issues with that so tried installing it globally. That
worked, but only after I patched it (probably wrong) so that it wasn't
calling delete() on a symbol. Appears it should have been doing:
v = v.to_s.delete
That's on line 84 of
http://github.com/andre/geokit-gem/blob/2fb064d7df55a23a851fcf9df46b2838c18839b2/lib/geokit/geocoders.rb
Making the change got it running at least with no errors.
When I tried to use my model though, I was getting a "map_as_actable"
not defined.
I really like the idea of using a geo library that does everything in
the language so I'm not tied to the DB, but this proved more difficult
than it seemed worth. :-/
-T