Sha256: 847f65cda4688ecc9b305278129bc6135c7559f420ed80f96060c0e755b712ec

Contents?: true

Size: 1.54 KB

Versions: 10

Compression:

Stored size: 1.54 KB

Contents

# TakuhaiStatus

日本国内外の宅配便の配達ステータスを統一的に得る。サポートサービスは以下の6つ:

* ヤマト運輸
* 佐川急便
* 日本郵便
* TMG (Amazonの荷物のみ)
* UPS
* FedEx (国外の移動のみ)


## Installation

Add this line to your application's Gemfile:

```ruby
gem 'takuhai_status'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install takuhai_status

## Usage

```ruby
require 'takuhai_status'

code = '123456789012' # code of a devivery service
s = TakuhaiStatus.scan(code) #=> an instance of services
s.stat    #=> status string of this service as String
s.time    #=> Time instance of status changed
s.finish? #=> dose the cargo derivering finished?

# or make new instance of a service directly
s = TakuhaiStatus::KuronekoYamato.new(code)
```

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/tdtds/takuhai_status.


## License

The gem is available as open source under the terms of the GPL3.

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
takuhai_status-1.7.4 README.md
takuhai_status-1.7.3 README.md
takuhai_status-1.7.2 README.md
takuhai_status-1.7.1 README.md
takuhai_status-1.7.0 README.md
takuhai_status-1.6.0 README.md
takuhai_status-1.5.5 README.md
takuhai_status-1.5.4 README.md
takuhai_status-1.5.3 README.md
takuhai_status-1.5.2 README.md