versionaire 11.0.2 → 11.0.3
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +19 -3
- data/versionaire.gemspec +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -3
- 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: bf1ea14fadf575fe8801412f0e6a8d368a9276b9e7f332eecbdc29db751d1641
|
|
4
|
+
data.tar.gz: d053ebdda799062c1d42126596889bd4e2ebbc1b3cc19a9cce482aa317325652
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8fd920388336f3c169802bc631ca280b732ffffd8d4505e7f7234c2cd83ada3385e236a2023738af42770aefc440c476f42256a9ee8263b58a60dba80ad51a15
|
|
7
|
+
data.tar.gz: d7755f5caaac9bce0024ec48661b7a3b3ac686c9bc6019a535c878235f69303900cfd08bb2e7788564908490aa8749ac0b30b3d8fdafcd362c813e2559221e08
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -29,18 +29,34 @@ image::https://alchemists.io/images/screencasts/versionaire/cover.svg[Screencast
|
|
|
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
|
-
|
|
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
|
-
|
|
59
|
+
require "versionaire"
|
|
44
60
|
----
|
|
45
61
|
|
|
46
62
|
== Usage
|
data/versionaire.gemspec
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: 11.0.
|
|
4
|
+
version: 11.0.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: 2023-
|
|
38
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: refinements
|
|
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
requirements: []
|
|
98
|
-
rubygems_version: 3.4.
|
|
98
|
+
rubygems_version: 3.4.12
|
|
99
99
|
signing_key:
|
|
100
100
|
specification_version: 4
|
|
101
101
|
summary: Provides an immutable, thread-safe, and semantic version type.
|
metadata.gz.sig
CHANGED
|
Binary file
|