No commit activity in last 3 years
No release in over 3 years
Recipe Parsing Gem - Simply run result = LittleRecipeParser::Parse.new('1 pound of chicken') - you can then call result.quantity, result.tag or result.measurement on the string
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 2.0.1
~> 3.12

Runtime

 Project Readme

Little Recipe Parser

A gem for parsing recipes


Usage

gem install 'little-recipe-parser'

result = LittleRecipeParser::Parse.new('1 pound of tomatoes')
print result.quantity
  #=> '1'
print result.measurement
  #=> 'pound'
print result.tag
  #=> "Tomato"

Visit the website at:

Live demo

== Copyright

Copyright (c) 2014 Meeka. See LICENSE.txt for further details.