PLU
Price look-up codes made easy
:watermelon: 4032 :banana: 4011 :grapes: 4023
Data cleaned up from the International Federation of Produce Standards
Installation
Add this line to your application’s Gemfile:
gem "plu"
Getting Started
List known PLUs
PLU.all
Get name from PLU
PLU.new(4011).name # Bananas
Check if valid
PLU.new(2000).valid? # false
5-Digit PLUs
For PLUs with 5 digits, the first digit has a special meaning: 9 specifies organic.
4011 - Bananas :banana: 94011 - Organic bananas :banana:
PLU.new(94011).organic? # true
Retailer Assigned
PLU.new(3170).retailer_assigned? # true
History
View the changelog
Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- Report bugs
- Fix bugs and submit pull requests
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
git clone https://github.com/ankane/plu.git
cd plu
bundle install
bundle exec rake test