proc_evaluate 1.0.0 → 1.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.
Files changed (3) hide show
  1. checksums.yaml +5 -5
  2. data/lib/proc_evaluate/version.rb +1 -1
  3. metadata +41 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7d5bbc0f70c2017414214d9e67ab58da42120205
4
- data.tar.gz: 760959a2ea491539da7ac693a94a376812ae43c4
2
+ SHA256:
3
+ metadata.gz: aeb4392ccf951ec2b3fb7334b56c57b1d4a9814bbc355e2770c98531f0f86239
4
+ data.tar.gz: 820384c11d8f79d001cdfeec9f3e55ee4429aef115b2b3cf201d078f7ef45f7b
5
5
  SHA512:
6
- metadata.gz: 218b7ee68fd2703071e384da31dfc33140ed92db7bf7b3755dced4017250c0c1a315dcfb83ed059ff4b233b3784d7b8913bcda12522febfe3d15972eae4c5e01
7
- data.tar.gz: ccee34aba158e35c50055a1cebe438a3a73ca4f8f60cc40c10c97504286616f205fa846a5869177cfb08aeaa6fd5f9d24c62941f4752f5269d58fd5e604711ac
6
+ metadata.gz: b267206b2084f828ef50c6c6db5c8d8160395bf1747811ef964371c5602bfc2b55551c6a8c44dcb7a20410947bf6dc7594698c34043259351ef8f76da91f3051
7
+ data.tar.gz: 8c905e93ed4804cb2cdce78bb21d92a1be8659fe57ad082a4f1d3bb87bf2fd3f802ff0f78cca3185cf6ae0256e77dfbf4870efe399db6f7ed28edcdd898c5db1
@@ -1,3 +1,3 @@
1
1
  module ProcEvaluate
2
- VERSION = '1.0.0'
2
+ VERSION = '1.1.1'
3
3
  end
metadata CHANGED
@@ -1,23 +1,51 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proc_evaluate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brent Jacobs
8
8
  - br3nt
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-10-06 00:00:00.000000000 Z
13
- dependencies: []
12
+ date: 2023-11-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '13'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '13'
28
+ - !ruby/object:Gem::Dependency
29
+ name: minitest
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '5'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '5'
14
42
  description: |2
15
- Adds an `evaulate` refinement method to Proc and Object instances.
43
+ Adds an `evaluate` refinement method to Proc and Object instances.
16
44
 
17
- The goal of this gem is to allow evaluation of variables, procs, and lambdas with the same level of flexibility.
45
+ The goal of this gem is to allow the evaluation of variables, procs, and lambdas with the same level of flexibility.
18
46
 
19
- The `evaluate` method has been added to the Object class to simply return the value of the variable.
20
- The `evaluate` method is overriden on the Proc class to allow parameters to be passed to lambdas in the same flexible way as procs.
47
+ The `evaluate` method has been added to the Object class to return the evaluated value of the variable.
48
+ The `evaluate` method is overridden on the Proc class to allow parameters to be passed to lambdas in the same flexible way as procs.
21
49
  This takes into consideration, required/optional/remaining parameters, and required/optional/remaining keyword parameters.
22
50
 
23
51
  For information on Refinements, see:
@@ -27,7 +55,7 @@ description: |2
27
55
  - https://ruby-doc.org/core-2.3.0/doc/syntax/refinements_rdoc.html
28
56
  - https://ruby-doc.org/core-2.4.0/doc/syntax/refinements_rdoc.html
29
57
  - http://yehudakatz.com/2010/11/30/ruby-2-0-refinements-in-practice/
30
- email:
58
+ email:
31
59
  executables: []
32
60
  extensions: []
33
61
  extra_rdoc_files: []
@@ -38,13 +66,13 @@ homepage: https://github.com/br3nt/proc_evaluate
38
66
  licenses:
39
67
  - MIT
40
68
  metadata: {}
41
- post_install_message:
69
+ post_install_message:
42
70
  rdoc_options: []
43
71
  require_paths:
44
72
  - lib
45
73
  required_ruby_version: !ruby/object:Gem::Requirement
46
74
  requirements:
47
- - - "~>"
75
+ - - ">="
48
76
  - !ruby/object:Gem::Version
49
77
  version: '2.0'
50
78
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -53,9 +81,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
81
  - !ruby/object:Gem::Version
54
82
  version: '0'
55
83
  requirements: []
56
- rubyforge_project:
57
- rubygems_version: 2.6.12
58
- signing_key:
84
+ rubygems_version: 3.0.9
85
+ signing_key:
59
86
  specification_version: 4
60
87
  summary: Allow evaluation of variables, procs, and lambdas with the same level of
61
88
  flexibility.