Price look-up codes made easy
🍉 4032 🍌 4011 🍇 4023
Download PLU codes - data cleaned up from the Produce Marketing Association
List known PLUs
PLU.all
Get name from PLU
PLU.new(4011).name # Bananas
Check if valid
PLU.new(2000).valid? # false
For PLUs with 5 digits, the first digit has a special meaning: 9 specifies organic, and 8 specifies genetically modified.
4011 - Bananas 94011 - Organic bananas 84011 - Genetically modified bananas
PLU.new(94011).organic? # true
PLU.new(84011).gm? # true
Add this line to your Gemfile:
gem "plu"
And run:
bundle
- clean up data
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request