Sha256: 7d9f9799f49f4608630a78379dd332ea872a4e86d7a883480f173bf8364c1d6f

Contents?: true

Size: 942 Bytes

Versions: 2

Compression:

Stored size: 942 Bytes

Contents

# Provider Taxonomy
A gem to add a database table containing the NUCC Health Care Provider Taxonomy.

## Installation
Add this line to your application's Gemfile:

```ruby
gem 'provider_taxonomy'
```

And then execute:
```bash
$ bundle install
```

Finally, run the migration and rake task:
```bash
$ rake db:migrate
```
```bash
$ rake provider_taxonomy:import
```

## Usage
Once installed, your Rails app will have a `taxonomy_items` database table and a `TaxonomyItem` model from which you can access all healthcare provider specialties.

If you would like to extend the model with your own, you can do the following

```ruby
class Specialty < ActiveRecord::Base
  self.table_name = "taxonomy_items"
  belongs_to :parent, foreign_key: :parent_id, class_name: Specialty, required: false
  # Your code goes here
end
```

## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
provider_taxonomy-0.1.2 README.md
provider_taxonomy-0.1.1 README.md