PLU
Price look-up codes made easy
๐ 4032 ๐ 4011 ๐ 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 ๐ 94011 - Organic bananas ๐
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