Skip to content
Snippets Groups Projects
Select Git revision
  • 20de1e4c2bc40467c59778cebb46129cd067c923
  • master default protected
  • 1.6
  • v1.6.40
  • v1.6.39
  • v1.6.38
  • v1.6.37
  • v1.6.37.rc1
  • v1.6.36
  • 1.6.35
  • 1.6.34
  • 1.6.33
  • 1.6.32.pre2
  • 1.6.32.pre1
  • 1.6.31
  • 1.6.30
  • 1.6.29
  • 1.6.28
  • 1.6.26
  • 1.6.27
  • 1.6.26.pre1
  • 1.6.25
  • 1.6.25.pre2
23 results

FXRbDial.h

Blame
  • README.rdoc 17.15 KiB

    Geocoder

    Geocoder is a complete geocoding solution for Ruby. With Rails it adds geocoding (by street or IP address), reverse geocoding (find street address based on given coordinates), and distance queries. It’s as simple as calling geocode on your objects, and then using a scope like Venue.near("Billings, MT").

    Compatibility

    • Supports multiple Ruby versions: Ruby 1.8.7, 1.9.2, and JRuby.

    • Supports multiple databases: MySQL, PostgreSQL, SQLite, and MongoDB (1.7.0 and higher).

    • Supports Rails 3. If you need to use it with Rails 2 please see the rails2 branch (no longer maintained, limited feature set).

    • Works very well outside of Rails but you’ll need to install either the json (for MRI) or json_pure (for JRuby) gem.

    Install

    As a Gem

    Add to your Gemfile:

    gem "geocoder"
    

    and run at the command prompt:

    bundle install