versionaire 9.2.0 → 9.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1e1e12933915ebaa8ce2769bac22f1ead28d07902b32bcdb4801f70b724b016
4
- data.tar.gz: 4c454f8f399df43ebc649010c50d9ee95f321435c96468162ab21b9abd849abb
3
+ metadata.gz: 7199f557ced202425079f5237ea073aea0d6b0497eb38a1984adac8e86bde36e
4
+ data.tar.gz: d80af6e9883d501b957ec84958472cad3b6366a6a4c659d6e3bf4d279f0c0fdb
5
5
  SHA512:
6
- metadata.gz: facb53e495986112920ca938387be6448eb5bd6e6b94d1a8d5a5e3f3a9c34bbed72da9b6d2f0476b052796d61bedbbb1f27553c536792d2b72a9f81e961d4f70
7
- data.tar.gz: 32ad27fbdd19b4c6d253009c025b9409ee29766f2eb0c7e158f5d2e231052b8efa661886a534c719cc0baef9b74758698831c81e49c1f7fd93d264ae7e3ffa33
6
+ metadata.gz: 60f279c050db383de253be15e0cea148c2c891f4a43d58528bd76f19dea0a3f3078de054973f09fda24f26451abbd3a4315f8a6318e0670e4e5c99a01b9bc4fb
7
+ data.tar.gz: 2327f4d3604e5edc85a1a8031ba0993ab020476cf9da9fef11b541793f30f1a2e0b5a7786a119384054b5b4eb94cef5b09df355f109c651cc96a6895dc41ec6a
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -11,8 +11,10 @@ image::https://img.shields.io/badge/code_style-alchemists-brightgreen.svg[Alchem
11
11
  [link=https://circleci.com/gh/bkuhlmann/versionaire]
12
12
  image::https://circleci.com/gh/bkuhlmann/versionaire.svg?style=svg[Circle CI Status]
13
13
 
14
- Provides an immutable, thread-safe, and semantic version type when managing versions within your
15
- applications.
14
+ Ruby doesn't provide a primitive version type by default. Versionaire fills this gap by providing an
15
+ immutable, thread-safe, and link:https://semver.org[Semantic Version] in order to use versions
16
+ within your applications. This new version type behaves and feels a lot like other primitives (i.e.
17
+ `String`, `Array`, `Hash`, etc) and can even be cast/converted from other primitives.
16
18
 
17
19
  toc::[]
18
20
 
@@ -150,7 +152,7 @@ Version version
150
152
  By adding `using Versionaire::Cast` to your implementation, this allows Versionaire to refine
151
153
  `Kernel` so you have a top-level `Version` conversion function much like Kernel's native support for
152
154
  `Integer`, `String`, `Array`, `Hash`, etc. The benefit to this approach is it reduces the amount of
153
- typing, doesn't polute your entire object space like a monkey patch would, and provides a idiomatic
155
+ typing, doesn't pollute your entire object space like a monkey patch would, and provides a idiomatic
154
156
  approach to casting like any other primitive.
155
157
 
156
158
  ==== Implicit
@@ -341,6 +343,11 @@ participating in this project you agree to abide by its terms.
341
343
 
342
344
  Read link:CONTRIBUTING.adoc[CONTRIBUTING] for details.
343
345
 
346
+ == Community
347
+
348
+ Feel free to link:https://www.alchemists.io/community[join the commmunity] for discussions related
349
+ to this project and much more.
350
+
344
351
  == License
345
352
 
346
353
  Read link:LICENSE.adoc[LICENSE] for details.
@@ -5,7 +5,7 @@ module Versionaire
5
5
  module Identity
6
6
  NAME = "versionaire"
7
7
  LABEL = "Versionaire"
8
- VERSION = "9.2.0"
9
- VERSION_LABEL = "#{LABEL} #{VERSION}"
8
+ VERSION = "9.4.0"
9
+ VERSION_LABEL = "#{LABEL} #{VERSION}".freeze
10
10
  end
11
11
  end
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: 9.2.0
4
+ version: 9.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -28,7 +28,7 @@ cert_chain:
28
28
  lkHilIrX69jq8wMPpBhlaw2mRmeSL50Wv5u6xVBvOHhXFSP1crXM95vfLhLyRYod
29
29
  W2A=
30
30
  -----END CERTIFICATE-----
31
- date: 2021-05-02 00:00:00.000000000 Z
31
+ date: 2021-11-20 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: refinements
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '8.0'
39
+ version: '8.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '8.0'
46
+ version: '8.5'
47
47
  description:
48
48
  email:
49
49
  - brooke@alchemists.io
@@ -72,6 +72,7 @@ metadata:
72
72
  bug_tracker_uri: https://github.com/bkuhlmann/versionaire/issues
73
73
  changelog_uri: https://www.alchemists.io/projects/versionaire/changes.html
74
74
  documentation_uri: https://www.alchemists.io/projects/versionaire
75
+ rubygems_mfa_required: 'true'
75
76
  source_code_uri: https://github.com/bkuhlmann/versionaire
76
77
  post_install_message:
77
78
  rdoc_options: []
@@ -88,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
89
  - !ruby/object:Gem::Version
89
90
  version: '0'
90
91
  requirements: []
91
- rubygems_version: 3.2.16
92
+ rubygems_version: 3.2.31
92
93
  signing_key:
93
94
  specification_version: 4
94
95
  summary: Provides an immutable, thread-safe, and semantic version type.
metadata.gz.sig CHANGED
Binary file