项目作者: Smarre

项目描述 :
Ruby bindings for Nominatim
高级语言: Ruby
项目地址: git://github.com/Smarre/ruby-nominatim.git
创建时间: 2015-10-22T09:27:20Z
项目社区:https://github.com/Smarre/ruby-nominatim

开源协议:MIT License

下载


Nominatim

A Ruby wrapper for the Nominatim API. Build Status

This project is a fork from original Nominatim wrapper for Ruby.

Even though the version was bumped from 0.x to 1.x, the API is compatible with the original project.

Installation

Add this line to your application’s Gemfile:

  1. gem 'ruby-nominatim'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install ruby-nominatim

Documentation

[http://rdoc.info/gems/ruby-nominatim][documentation]

Usage

  1. places = Nominatim.search('San Francisco').limit(10).address_details(true)
  2. for place in places
  3. puts "#{place.display_name} (#{place.type})"
  4. end
  5. puts "Found #{places.count} places."

Configuration

  1. Nominatim.configure do |config|
  2. config.email = 'your-email-address@example.com'
  3. config.endpoint = 'http://open.mapquestapi.com/nominatim/v1'
  4. end

Contributing

  1. Fork the repository.
  2. Create a topic branch.
  3. Add specs for your unimplemented feature or bug fix.
  4. Run bundle exec rake spec. If your specs pass, return to step 3.
  5. Implement your feature or bug fix.
  6. Run bundle exec rake spec. If your specs fail, return to step 5.
  7. Run open coverage/index.html. If your changes are not completely covered
    by your tests, return to step 3.
  8. Add, commit, and push your changes.
  9. Submit a pull request.

Supported Ruby Versions

Nominatim is tested under 1.9.2 and 1.9.3, 2.1 and 2.2.

Copyright (c) 2012 Jakub Svehla
Copyright (c) 2012 onwards ruby-nominatim contributors

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.