Sha256: e8e70663f7795103d7aec9e59a1f6bfe2f9c259171145d18403bb8b746cb1d0b

Contents?: true

Size: 766 Bytes

Versions: 1

Compression:

Stored size: 766 Bytes

Contents

# ActiveTax

A Ruby gem for retrieving local sales tax rates from various government APIs. Currently
only supports Washington State sales tax, but feel free to write your own state's implementations
and do pull requests.

## Installation

Add this line to your application's Gemfile:

    gem 'active_tax'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install active_tax

## Usage

```ruby

tax_rate = ActiveTax::Tax.rate({
  address: "6500 Linderson Way",
  city: "",
  zip: "98501",
  state: "WA"
})

puts tax_rate #=> 0.087
```

## Contributing

Contributions are very welcome!

1. Fork it
2. Commit your changes (`git commit -am 'Added some feature'`)
3. Push to the branch (`git push origin my-new-feature`)
4. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_tax-0.2.0 README.md