keyword_curry 0.0.1 → 0.0.2
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/keyword_curry.gemspec +3 -3
- data/lib/keyword_curry/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db3f83c7e11427cf93fc7740b117bdbdc1601e92
|
|
4
|
+
data.tar.gz: b9815b1fd882ebf89c78cf15beec1b7fa63b22c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 815d70df507b128209d0523bd344ca408aea8050d6cb2fc87ec13ed295d851080d097b3d35c66f3285d118c58a0441312cc9d710766eec784947857c283fc2ee
|
|
7
|
+
data.tar.gz: f06eb0561753a89fada7291db9b229ab4d6a06488b8ee8da8e7401fa79e6e6247719d23b41fb6f699f8fd55127353f3e4d3ac5bfe090591a69efcd5e11e5a1f3
|
data/keyword_curry.gemspec
CHANGED
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = KeywordCurry::VERSION
|
|
9
9
|
spec.authors = ["Stephen Best"]
|
|
10
10
|
spec.email = ["bestie@gmail.com"]
|
|
11
|
-
spec.summary = %q{Augments Ruby currying to handle required keyword arguments.
|
|
12
|
-
spec.description = spec.summary + %q{Proc like objects can be curried until all their required keywords have been received}
|
|
13
|
-
spec.homepage = ""
|
|
11
|
+
spec.summary = %q{Augments Ruby currying to handle MRI 2.1 required keyword arguments.}
|
|
12
|
+
spec.description = spec.summary + %q{Proc like objects can be curried until all their required keywords have been received. Monkey patching is optional.}
|
|
13
|
+
spec.homepage = "https://github.com/bestie/keyword_curry"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.required_ruby_version = "2.1.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: keyword_curry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Best
|
|
@@ -38,9 +38,9 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '2.14'
|
|
41
|
-
description: Augments Ruby currying to handle required keyword arguments.
|
|
42
|
-
objects can be curried until all
|
|
43
|
-
|
|
41
|
+
description: Augments Ruby currying to handle MRI 2.1 required keyword arguments.Proc
|
|
42
|
+
like objects can be curried until all their required keywords have been received.
|
|
43
|
+
Monkey patching is optional.
|
|
44
44
|
email:
|
|
45
45
|
- bestie@gmail.com
|
|
46
46
|
executables: []
|
|
@@ -61,7 +61,7 @@ files:
|
|
|
61
61
|
- spec/lib/keyword_curry/hash_merge_currying_spec.rb
|
|
62
62
|
- spec/lib/keyword_curry/keyword_argument_currying_spec.rb
|
|
63
63
|
- spec/spec_helper.rb
|
|
64
|
-
homepage:
|
|
64
|
+
homepage: https://github.com/bestie/keyword_curry
|
|
65
65
|
licenses:
|
|
66
66
|
- MIT
|
|
67
67
|
metadata: {}
|
|
@@ -84,8 +84,7 @@ rubyforge_project:
|
|
|
84
84
|
rubygems_version: 2.1.9
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
|
-
summary: Augments Ruby currying to handle required keyword arguments.
|
|
88
|
-
can be curried until all its required keywords have been received
|
|
87
|
+
summary: Augments Ruby currying to handle MRI 2.1 required keyword arguments.
|
|
89
88
|
test_files:
|
|
90
89
|
- spec/lib/keyword_curry/hash_merge_currying_spec.rb
|
|
91
90
|
- spec/lib/keyword_curry/keyword_argument_currying_spec.rb
|