little-recipe-parser 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83ddbad0d9debbb63a78bb6341abe99ee94b0900
4
- data.tar.gz: 0edf4d66d3e632b0a297fe0dd034e9c6acc9b6db
3
+ metadata.gz: 1e039b8d185c92d1f99ce3396c5dc265ff1adc28
4
+ data.tar.gz: 132229333ab7b772c79b33d5236e57b3909f7bcd
5
5
  SHA512:
6
- metadata.gz: 2754550b036f1ea5ca09913881c29e6ecba586f3d9154235e7d6914e0a5f9adc00e6d3dcce9277592a8579fda619f63a921d32102c16efdff799fe7bdcd2bfee
7
- data.tar.gz: 348839d54cf87e9a637e84364522e271678e10a6d8bc3a71e390ed5e660ebac390d083660dc9315921b65a59c323c9578b1f0a1f97b63d4d065b883f4c10b6dc
6
+ metadata.gz: f4a84435879917d9925af294efcb79adf2c319b384e260d084f4b6ed8d283411e24a9e1eb6e8e3fa26b80ce208e3126a766d82abe208aeb60adc6ee6d28e6d9f
7
+ data.tar.gz: e5d1b7a8583b5b01d7c120c63b8a38441e20e12882f0eac4af6764acdf9c60d6606ddc050b1ec6a6c86e24bb61b13d2353faa5596a754fbb2de98a4c08bbe6dd
data/README.md CHANGED
@@ -6,6 +6,8 @@
6
6
 
7
7
  ## Usage
8
8
 
9
+ ### gem install 'litte-recipe-parser'
10
+
9
11
  ```ruby
10
12
  result = LittleRecipeParser::Parse.new('1 pound of tomatoes')
11
13
  print result.quantity
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Jeweler::Tasks.new do |gem|
18
18
  gem.homepage = "http://github.com/rrgayhart/little-recipe-parser"
19
19
  gem.license = "MIT"
20
20
  gem.summary = "Recipe Parsing Gem"
21
- gem.description = "Recipe Parsing Gem - Simply run LittleRecipeParser::Parse.new('1 pound of chicken') - you can then call .quantity, .tag or .measurement on the string"
21
+ gem.description = "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"
22
22
  gem.email = "rrgayhart@gmail.com"
23
23
  gem.authors = ["Meeka"]
24
24
  # dependencies defined in Gemfile
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "little-recipe-parser"
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Meeka"]
12
- s.date = "2014-02-15"
13
- s.description = "Recipe Parsing Gem - Simply run LittleRecipeParser::Parse.new('1 pound of chicken') - you can then call .quantity, .tag or .measurement on the string"
12
+ s.date = "2014-02-16"
13
+ s.description = "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"
14
14
  s.email = "rrgayhart@gmail.com"
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: little-recipe-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Meeka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-15 00:00:00.000000000 Z
11
+ date: 2014-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -94,8 +94,9 @@ dependencies:
94
94
  - - '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description: Recipe Parsing Gem - Simply run LittleRecipeParser::Parse.new('1 pound
98
- of chicken') - you can then call .quantity, .tag or .measurement on the string
97
+ description: Recipe Parsing Gem - Simply run result = LittleRecipeParser::Parse.new('1
98
+ pound of chicken') - you can then call result.quantity, result.tag or result.measurement
99
+ on the string
99
100
  email: rrgayhart@gmail.com
100
101
  executables: []
101
102
  extensions: []