wholable 1.5.1 → 1.5.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 530b45ef1f47b52aaf7cbbcb40bf80dcc73192afaf18327f532449202be26895
4
- data.tar.gz: 21186b2aacb590b0da05c54cf24504c03d5947136170db85ffee43d99034d961
3
+ metadata.gz: 62b61c08f09849f5ad68030c9f35679d1985d7502255082bbdec4e15a1834f0e
4
+ data.tar.gz: bd6132920202d4b0b455d9f1a5d3728065240c48515ca56ec113a7ae373ecfc4
5
5
  SHA512:
6
- metadata.gz: e369629f337a398c4dc95ccfefdb741721a05343e936d342072ea232a4c662f6eb7aa613089bc921cc9c49ecd7807b5e6452004a9b76601b9a7be0f86a565a0c
7
- data.tar.gz: 26cd72d04340cf9abb380a649dd171aab0a44d1f5fd00636b6ab25e14a02215f6be0fd274b5f6bbb828a2bb77f86c1fb7b14a8296e2462fd562aa4b217872121
6
+ metadata.gz: 31f349672a2131c880bca65c92c6238fb62254c873f0469f8e101f3885daeee33ef5506eaffb7591c03b7b98cb544f498347fa5eff194deb53c8eb118f552d7c
7
+ data.tar.gz: d9786db3e5028bda61d424cf68b7d892bc6b9f6fdee2350497a3324b2f6464962601fb6a6c60f2567462014c057803b5f20fa8c31d81485f9595ed192c90d50b
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  = Wholable
12
12
 
13
+ ⚠️ *This gem is deprecated and will be fully destroyed on 2025-01-10. Please use the link:https://alchemists.io/projects/wholeable[Wholeable] gem instead because it's identical and fixes the spelling of the name.* ⚠️
14
+
13
15
  Wholable allows you to turn your object into a _whole value object_ by ensuring object equality is determined by the values of the object instead of by identity. Whole value objects -- or value objects in general -- have the following traits as also noted via link:https://en.wikipedia.org/wiki/Value_object[Wikipedia]:
14
16
 
15
17
  * Equality is determined by the values that make up an object and not by link:https://en.wikipedia.org/wiki/Identity_(object-oriented_programming)[identity] (i.e. memory address) which is the default behavior for all {ruby_link} objects except for {data_link} and {structs_link}.
@@ -177,6 +179,8 @@ bin/rake
177
179
 
178
180
  == link:https://alchemists.io/policies/contributions[Contributions]
179
181
 
182
+ == link:https://alchemists.io/policies/developer_certificate_of_origin[Developer Certificate of Origin]
183
+
180
184
  == link:https://alchemists.io/projects/wholable/versions[Versions]
181
185
 
182
186
  == link:https://alchemists.io/community[Community]
data/wholable.gemspec CHANGED
@@ -2,17 +2,22 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "wholable"
5
- spec.version = "1.5.1"
5
+ spec.version = "1.5.3"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/wholable"
9
9
  spec.summary = "A whole value object enabler."
10
10
  spec.license = "Hippocratic-2.1"
11
11
 
12
+ spec.post_install_message = <<~MESSAGE
13
+ DEPRECATION: The Wholable gem is deprecated and will be fully destroyed on 2025-01-10.
14
+ Please use the Wholeable gem instead: https://alchemists.io/projects/wholeable.
15
+ MESSAGE
16
+
12
17
  spec.metadata = {
13
18
  "bug_tracker_uri" => "https://github.com/bkuhlmann/wholable/issues",
14
19
  "changelog_uri" => "https://alchemists.io/projects/wholable/versions",
15
- "documentation_uri" => "https://alchemists.io/projects/wholable",
20
+ "homepage_uri" => "https://alchemists.io/projects/wholable",
16
21
  "funding_uri" => "https://github.com/sponsors/bkuhlmann",
17
22
  "label" => "Wholable",
18
23
  "rubygems_mfa_required" => "true",
@@ -22,7 +27,7 @@ Gem::Specification.new do |spec|
22
27
  spec.signing_key = Gem.default_key_path
23
28
  spec.cert_chain = [Gem.default_cert_path]
24
29
 
25
- spec.required_ruby_version = "~> 3.3"
30
+ spec.required_ruby_version = ">= 3.3", "<= 3.4"
26
31
 
27
32
  spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
28
33
  spec.files = Dir["*.gemspec", "lib/**/*"]
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wholable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -35,7 +35,7 @@ cert_chain:
35
35
  3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
36
  gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
37
37
  -----END CERTIFICATE-----
38
- date: 2024-08-17 00:00:00.000000000 Z
38
+ date: 2024-10-04 00:00:00.000000000 Z
39
39
  dependencies: []
40
40
  description:
41
41
  email:
@@ -57,27 +57,32 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/bkuhlmann/wholable/issues
59
59
  changelog_uri: https://alchemists.io/projects/wholable/versions
60
- documentation_uri: https://alchemists.io/projects/wholable
60
+ homepage_uri: https://alchemists.io/projects/wholable
61
61
  funding_uri: https://github.com/sponsors/bkuhlmann
62
62
  label: Wholable
63
63
  rubygems_mfa_required: 'true'
64
64
  source_code_uri: https://github.com/bkuhlmann/wholable
65
- post_install_message:
65
+ post_install_message: |
66
+ DEPRECATION: The Wholable gem is deprecated and will be fully destroyed on 2025-01-10.
67
+ Please use the Wholeable gem instead: https://alchemists.io/projects/wholeable.
66
68
  rdoc_options: []
67
69
  require_paths:
68
70
  - lib
69
71
  required_ruby_version: !ruby/object:Gem::Requirement
70
72
  requirements:
71
- - - "~>"
73
+ - - ">="
72
74
  - !ruby/object:Gem::Version
73
75
  version: '3.3'
76
+ - - "<="
77
+ - !ruby/object:Gem::Version
78
+ version: '3.4'
74
79
  required_rubygems_version: !ruby/object:Gem::Requirement
75
80
  requirements:
76
81
  - - ">="
77
82
  - !ruby/object:Gem::Version
78
83
  version: '0'
79
84
  requirements: []
80
- rubygems_version: 3.5.17
85
+ rubygems_version: 3.5.21
81
86
  signing_key:
82
87
  specification_version: 4
83
88
  summary: A whole value object enabler.
metadata.gz.sig CHANGED
Binary file