versionaire 11.0.1 → 11.0.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: d1a418d6c49583429eebf05b944d6a88564e75eefd2c961537887248f31cd3f9
4
- data.tar.gz: 61143bb22d6790f008578474949dd5e9d5703921d89f1aa7032ccf8cdff9d4ab
3
+ metadata.gz: bf1ea14fadf575fe8801412f0e6a8d368a9276b9e7f332eecbdc29db751d1641
4
+ data.tar.gz: d053ebdda799062c1d42126596889bd4e2ebbc1b3cc19a9cce482aa317325652
5
5
  SHA512:
6
- metadata.gz: 65a639d43361a477b42ec25bdcf7bdfb4c6ff61be79ec47d3e167198e775699539ce0723f670319564c7fda3391243996d32b121c1e11526b5f6232891d0967d
7
- data.tar.gz: 9a8ba7f68fd76690680794adbd7026f50dac25d9f9cb7ad60a7c634f0a810fbfb5c22dfd2b3427bd9ccc352bc08853e2c75c5306dfb916a07da6f7a3bd08d9ec
6
+ metadata.gz: 8fd920388336f3c169802bc631ca280b732ffffd8d4505e7f7234c2cd83ada3385e236a2023738af42770aefc440c476f42256a9ee8263b58a60dba80ad51a15
7
+ data.tar.gz: d7755f5caaac9bce0024ec48661b7a3b3ac686c9bc6019a535c878235f69303900cfd08bb2e7788564908490aa8749ac0b30b3d8fdafcd362c813e2559221e08
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -20,8 +20,8 @@ toc::[]
20
20
 
21
21
  == Screencasts
22
22
 
23
- [link=https://www.alchemists.io/screencasts/versionaire]
24
- image::https://www.alchemists.io/images/screencasts/versionaire/cover.svg[Screencast,600,240,role=focal_point]
23
+ [link=https://alchemists.io/screencasts/versionaire]
24
+ image::https://alchemists.io/images/screencasts/versionaire/cover.svg[Screencast,600,240,role=focal_point]
25
25
 
26
26
  == Requirements
27
27
 
@@ -29,18 +29,34 @@ image::https://www.alchemists.io/images/screencasts/versionaire/cover.svg[Screen
29
29
 
30
30
  == Setup
31
31
 
32
- To install, run:
32
+ To install _with_ security, run:
33
+
34
+ [source,bash]
35
+ ----
36
+ # 💡 Skip this line if you already have the public certificate installed.
37
+ gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
38
+ gem install versionaire --trust-policy HighSecurity
39
+ ----
40
+
41
+ To install _without_ security, run:
33
42
 
34
43
  [source,bash]
35
44
  ----
36
45
  gem install versionaire
37
46
  ----
38
47
 
39
- Add the following to your Gemfile:
48
+ You can also add the gem directly to your project:
49
+
50
+ [source,bash]
51
+ ----
52
+ bundle add versionaire
53
+ ----
54
+
55
+ Once the gem is installed, you only need to require it:
40
56
 
41
57
  [source,ruby]
42
58
  ----
43
- gem "versionaire"
59
+ require "versionaire"
44
60
  ----
45
61
 
46
62
  == Usage
@@ -129,7 +145,7 @@ to convert an unsupported type, a `+Versionaire::Errors::Cast+` exception will b
129
145
  ==== Refinement
130
146
 
131
147
  Building upon the examples shown above, there is an even more elegant solution where you can use
132
- this gem's built-in link:https://www.alchemists.io/articles/ruby_refinements[refinement] support:
148
+ this gem's built-in link:https://alchemists.io/articles/ruby_refinements[refinement] support:
133
149
 
134
150
  [source,ruby]
135
151
  ----
@@ -344,19 +360,19 @@ To test, run:
344
360
  bin/rake
345
361
  ----
346
362
 
347
- == link:https://www.alchemists.io/policies/license[License]
363
+ == link:https://alchemists.io/policies/license[License]
348
364
 
349
- == link:https://www.alchemists.io/policies/security[Security]
365
+ == link:https://alchemists.io/policies/security[Security]
350
366
 
351
- == link:https://www.alchemists.io/policies/code_of_conduct[Code of Conduct]
367
+ == link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
352
368
 
353
- == link:https://www.alchemists.io/policies/contributions[Contributions]
369
+ == link:https://alchemists.io/policies/contributions[Contributions]
354
370
 
355
- == link:https://www.alchemists.io/projects/versionaire/versions[Versions]
371
+ == link:https://alchemists.io/projects/versionaire/versions[Versions]
356
372
 
357
- == link:https://www.alchemists.io/community[Community]
373
+ == link:https://alchemists.io/community[Community]
358
374
 
359
375
  == Credits
360
376
 
361
- * Built with link:https://www.alchemists.io/projects/gemsmith[Gemsmith].
362
- * Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
377
+ * Built with link:https://alchemists.io/projects/gemsmith[Gemsmith].
378
+ * Engineered by link:https://alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
data/versionaire.gemspec CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "versionaire"
5
- spec.version = "11.0.1"
5
+ spec.version = "11.0.3"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
- spec.homepage = "https://www.alchemists.io/projects/versionaire"
8
+ spec.homepage = "https://alchemists.io/projects/versionaire"
9
9
  spec.summary = "Provides an immutable, thread-safe, and semantic version type."
10
10
  spec.license = "Hippocratic-2.1"
11
11
 
12
12
  spec.metadata = {
13
13
  "bug_tracker_uri" => "https://github.com/bkuhlmann/versionaire/issues",
14
- "changelog_uri" => "https://www.alchemists.io/projects/versionaire/versions",
15
- "documentation_uri" => "https://www.alchemists.io/projects/versionaire",
14
+ "changelog_uri" => "https://alchemists.io/projects/versionaire/versions",
15
+ "documentation_uri" => "https://alchemists.io/projects/versionaire",
16
16
  "funding_uri" => "https://github.com/sponsors/bkuhlmann",
17
17
  "label" => "Versionaire",
18
18
  "rubygems_mfa_required" => "true",
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: versionaire
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.0.1
4
+ version: 11.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -10,25 +10,32 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIC/jCCAeagAwIBAgIBBTANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
- a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMjAzMTkxNzI0MzJaFw0yMzAzMTkx
15
- NzI0MzJaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
16
- IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6l1qpXTiomH1RfMRloyw7MiE
17
- xyVx/x8Yc3EupdH7uhNaTXQGyORN6aOY//1QXXMHIZ9tW74nZLhesWMSUMYy0XhB
18
- brs+KkurHnc9FnEJAbG7ebGvl/ncqZt72nQvaxpDxvuCBHgJAz+8i5wl6FhLw+oT
19
- 9z0A8KcGhz67SdcoQiD7qiCjL/2NTeWHOzkpPrdGlt088+VerEEGf5I13QCvaftP
20
- D5vkU0YlAm1r98BymuJlcQ1qdkVEI1d48ph4kcS0S0nv1RiuyVb6TCAR3Nu3VaVq
21
- 3fPzZKJLZBx67UvXdbdicWPiUR75elI4PXpLIic3xytaF52ZJYyKZCNZJhNwfQID
22
- AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU0nzow9vc
23
- 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAJbbNyWzFjqUNVPPCUCo
24
- IMrhDa9xf1xkORXNYYbmXgoxRy/KyNbUr+jgEEoWJAm9GXlcqxxWAUI6pK/i4/Qi
25
- X6rPFEFmeObDOHNvuqy8Hd6AYsu+kP94U/KJhe9wnWGMmGoNKJNU3EkW3jM/osSl
26
- +JRxiH5t4WtnDiVyoYl5nYC02rYdjJkG6VMxDymXTqn7u6HhYgZkGujq1UPar8x2
27
- hNIWJblDKKSu7hA2d6+kUthuYo13o1sg1Da/AEDg0hoZSUvhqDEF5Hy232qb3pDt
28
- CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
29
- RFE=
13
+ MIIEeDCCAuCgAwIBAgIBATANBgkqhkiG9w0BAQsFADBBMQ8wDQYDVQQDDAZicm9v
14
+ a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
15
+ aW8wHhcNMjMwMzIyMTYxNDQxWhcNMjUwMzIxMTYxNDQxWjBBMQ8wDQYDVQQDDAZi
16
+ cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
17
+ GRYCaW8wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCro8tj5/E1Hg88
18
+ f4qfiwPVd2zJQHvdYt4GHVvuHRRgx4HGhJuNp+4BId08RBn7V6V1MW6MY3kezRBs
19
+ M+7QOQ4b1xNLTvY7FYQB1wGK5a4x7TTokDrPYQxDB2jmsdDYCzVbIMrAvUfcecRi
20
+ khyGZCdByiiCl4fKv77P12tTT+NfsvXkLt/AYCGwjOUyGKTQ01Z6eC09T27GayPH
21
+ QQvIkakyFgcJtzSyGzs8bzK5q9u7wQ12MNTjJoXzW69lqp0oNvDylu81EiSUb5S6
22
+ QzzPxZBiRB1sgtbt1gUbVI262ZDq1gR+HxPFmp+Cgt7ZLIJZAtesQvtcMzseXpfn
23
+ hpmm0Sw22KGhRAy/mqHBRhDl5HqS1SJp2Ko3lcnpXeFResp0HNlt8NSu13vhC08j
24
+ GUHU9MyIXbFOsnp3K3ADrAVjPWop8EZkmUR3MV/CUm00w2cZHCSGiXl1KMpiVKvk
25
+ Ywr1gd2ZME4QLSo+EXUtLxDUa/W3xnBS8dBOuMMz02FPWYr3PN8CAwEAAaN7MHkw
26
+ CQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAFgmv0tYMZnItuPycSM
27
+ F5wykJEVMB8GA1UdEQQYMBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMB8GA1UdEgQY
28
+ MBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMA0GCSqGSIb3DQEBCwUAA4IBgQAX+EGY
29
+ 9RLYGxF1VLZz+G1ACQc4uyrCB6kXwI06kzUa5dF9tPXqTX9ffnz3/W8ck2IQhKzu
30
+ MKO2FVijzbDWTsZeZGglS4E+4Jxpau1lU9HhOIcKolv6LeC6UdALTFudY+GLb8Xw
31
+ REXgaJkjzzhkUSILmEnRwEbY08dVSl7ZAaxVI679vfI2yapLlIwpbBgmQTiTvPr3
32
+ qyyLUno9flYEOv9fmGHunSrM+gE0/0niGTXa5GgXBXYGS2he4LQGgSBfGp/cTwMU
33
+ rDKJRcusZ12lNBeDfgqACz/BBJF8FLodgk6rGMRZz7+ZmjjHEmpG5bQpR6Q2BuWL
34
+ XMtYk/QzaWuhiR7pWjiF8jbdd7RO6or0ohq7iFkokz/5xrtQ/vPzU2RQ3Qc6YaKw
35
+ 3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
+ gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
30
37
  -----END CERTIFICATE-----
31
- date: 2023-01-22 00:00:00.000000000 Z
38
+ date: 2023-04-30 00:00:00.000000000 Z
32
39
  dependencies:
33
40
  - !ruby/object:Gem::Dependency
34
41
  name: refinements
@@ -62,13 +69,13 @@ files:
62
69
  - lib/versionaire/function.rb
63
70
  - lib/versionaire/version.rb
64
71
  - versionaire.gemspec
65
- homepage: https://www.alchemists.io/projects/versionaire
72
+ homepage: https://alchemists.io/projects/versionaire
66
73
  licenses:
67
74
  - Hippocratic-2.1
68
75
  metadata:
69
76
  bug_tracker_uri: https://github.com/bkuhlmann/versionaire/issues
70
- changelog_uri: https://www.alchemists.io/projects/versionaire/versions
71
- documentation_uri: https://www.alchemists.io/projects/versionaire
77
+ changelog_uri: https://alchemists.io/projects/versionaire/versions
78
+ documentation_uri: https://alchemists.io/projects/versionaire
72
79
  funding_uri: https://github.com/sponsors/bkuhlmann
73
80
  label: Versionaire
74
81
  rubygems_mfa_required: 'true'
@@ -88,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
95
  - !ruby/object:Gem::Version
89
96
  version: '0'
90
97
  requirements: []
91
- rubygems_version: 3.4.4
98
+ rubygems_version: 3.4.12
92
99
  signing_key:
93
100
  specification_version: 4
94
101
  summary: Provides an immutable, thread-safe, and semantic version type.
metadata.gz.sig CHANGED
@@ -1 +1,2 @@
1
- �A�/1N39�\���`���?T�y�5/6����K{�A���㤳8�e��Y���هT��w�H����v�4P�Uos��w����5��9��LF��������)������@�����<;�����e|�(*Ȅ����k�ᆺ��=۫:
1
+ �ɧ{v�
2
+ �� C��b[5�"�a�h����3�3\���q��&�y�u��w�Ph�]7��T�Rs瘞x|8Vr�kJd��XjW,�S��T��T3��װK1�A� ���B��?�3Ed�Ӵ�#7������S}4�@�z��{�b�M�]����E,�LCwn���  F#.