Sha256: f9b1240367b95ce876502994ea629ca579358b1bb6e730106b1cb880717eaee7

Contents?: true

Size: 1.13 KB

Versions: 8

Compression:

Stored size: 1.13 KB

Contents

# USDA Nutrient Database

The USDA nutrition database is a great source of nutrition information. However,
the data formatting options (plain text ASCII files or MS-Access) leave a little
to be desired.

This is a simple gem to import the database into your ruby application.

## Installation

Add this line to your application's Gemfile:

    gem 'usda-nutrient-database'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install usda-nutrient-database

If you're using rails then copy the migrations across:
```
rake usda_nutrient_database_engine:install:migrations
```

## Usage

Import the latest data with the import task:
```
rake usda:import
```
This is going to take a while. 60+ minutes on my 2.66 GHz i7 macbook pro

Use the models to query and profit:
```
UsdaNutrientDatabase::FoodGroup
UsdaNutrientDatabase::Food
UsedNutrientDatabase::Nutrient
UsdaNutrientDatabase::FoodsNutrient
```

## Contributing

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
usda-nutrient-database-0.8.1 README.md
usda-nutrient-database-0.8.0 README.md
usda-nutrient-database-0.7.0 README.md
usda-nutrient-database-0.6.0 README.md
usda-nutrient-database-0.5.0 README.md
usda-nutrient-database-0.4.0 README.md
usda-nutrient-database-0.3.0 README.md
usda-nutrient-database-0.2.0 README.md