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 +4 -4
- data/README.md +2 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/little-recipe-parser.gemspec +3 -3
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e039b8d185c92d1f99ce3396c5dc265ff1adc28
|
4
|
+
data.tar.gz: 132229333ab7b772c79b33d5236e57b3909f7bcd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4a84435879917d9925af294efcb79adf2c319b384e260d084f4b6ed8d283411e24a9e1eb6e8e3fa26b80ce208e3126a766d82abe208aeb60adc6ee6d28e6d9f
|
7
|
+
data.tar.gz: e5d1b7a8583b5b01d7c120c63b8a38441e20e12882f0eac4af6764acdf9c60d6606ddc050b1ec6a6c86e24bb61b13d2353faa5596a754fbb2de98a4c08bbe6dd
|
data/README.md
CHANGED
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.
|
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.
|
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-
|
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.
|
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-
|
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
|
98
|
-
of chicken') - you can then call .quantity, .tag or .measurement
|
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: []
|