versionaire 9.2.0 → 9.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +10 -3
- data/lib/versionaire/identity.rb +2 -2
- data.tar.gz.sig +0 -0
- metadata +6 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7199f557ced202425079f5237ea073aea0d6b0497eb38a1984adac8e86bde36e
|
4
|
+
data.tar.gz: d80af6e9883d501b957ec84958472cad3b6366a6a4c659d6e3bf4d279f0c0fdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
15
|
-
|
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
|
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.
|
data/lib/versionaire/identity.rb
CHANGED
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.
|
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-
|
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.
|
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.
|
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.
|
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
|