Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gigorok/nova_poshta
Ruby-client to novaposhta.ua API.
https://github.com/gigorok/nova_poshta
Last synced: 2 months ago
JSON representation
Ruby-client to novaposhta.ua API.
- Host: GitHub
- URL: https://github.com/gigorok/nova_poshta
- Owner: gigorok
- License: mit
- Created: 2016-05-09T13:34:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-02-18T09:02:22.000Z (almost 4 years ago)
- Last Synced: 2024-04-22T17:42:32.063Z (9 months ago)
- Language: Ruby
- Size: 23.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# NovaPoshta
[![Gem Version](https://badge.fury.io/rb/nova_poshta.svg)](https://badge.fury.io/rb/nova_poshta)
[![Build Status](https://travis-ci.org/gigorok/nova_poshta.svg?branch=master)](https://travis-ci.org/gigorok/nova_poshta)Ruby-client to novaposhta.ua API2.
Look at API documentation by link https://devcenter.novaposhta.ua/docs/services/ (API Адреса)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'nova_poshta'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install nova_poshta
## Configuration
By default the application gets API KEY from ENV['NOVA_POSHTA_API_KEY'].
But you can set it directly by next code:
```ruby
NovaPoshta.configure do |config|
config.api_key = 'YOUR_API_KEY'
end
```## Usage
```ruby
a = NovaPoshta::Model::Address.new # an instance of address model
area = a.areas.to_a.sample # to get a some area
area.cities # to get all cities
city = a.cities(find_by_string: '[city name]').to_a.sample # you can filter by city name
city.area # get the area from a city instance
warehouse = city.warehouses(find_by_string: '[warehouse address]').to_a.sample
a.warehouses(city.ref)
a.areas
```## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/gigorok/nova_poshta. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).