infusible 1.0.2 → 1.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/infusible.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: 46b42c55c3aa5ccb951b3b048c0bb88d2dff2096ac3e96f91832cd09c4780c52
|
|
4
|
+
data.tar.gz: 54810861bd9630883971d546bc35fa2b45bed767dc07307d96724179a1a56e62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3e491e90e57f2ef6c677ae1a532fc10cb9e7ebf4b9711ae5b4b3adf95fabb66c1114393ade6bc79a396f419a7bba029409fcb24f45dee36fa29ef6fb55a7921
|
|
7
|
+
data.tar.gz: 66877cecb7c3f8376390a2114e0c147d26e6a3b6228d2d0599996099974d3a90f07201652d44a25aafa29e542afd7cf875d63ecf3d1d57bec73b9f4a76f8a67c
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -47,18 +47,34 @@ toc::[]
|
|
|
47
47
|
|
|
48
48
|
== Setup
|
|
49
49
|
|
|
50
|
-
To install, run:
|
|
50
|
+
To install _with_ security, run:
|
|
51
|
+
|
|
52
|
+
[source,bash]
|
|
53
|
+
----
|
|
54
|
+
# 💡 Skip this line if you already have the public certificate installed.
|
|
55
|
+
gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
|
|
56
|
+
gem install infusible --trust-policy HighSecurity
|
|
57
|
+
----
|
|
58
|
+
|
|
59
|
+
To install _without_ security, run:
|
|
51
60
|
|
|
52
61
|
[source,bash]
|
|
53
62
|
----
|
|
54
63
|
gem install infusible
|
|
55
64
|
----
|
|
56
65
|
|
|
57
|
-
|
|
66
|
+
You can also add the gem directly to your project:
|
|
67
|
+
|
|
68
|
+
[source,bash]
|
|
69
|
+
----
|
|
70
|
+
bundle add infusible
|
|
71
|
+
----
|
|
72
|
+
|
|
73
|
+
Once the gem is installed, you only need to require it:
|
|
58
74
|
|
|
59
75
|
[source,ruby]
|
|
60
76
|
----
|
|
61
|
-
|
|
77
|
+
require "infusible"
|
|
62
78
|
----
|
|
63
79
|
|
|
64
80
|
== Usage
|
data/infusible.gemspec
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infusible
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.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: marameters
|
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
111
|
version: '0'
|
|
112
112
|
requirements: []
|
|
113
|
-
rubygems_version: 3.4.
|
|
113
|
+
rubygems_version: 3.4.12
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 4
|
|
116
116
|
summary: Automates the injection of dependencies into your class.
|
metadata.gz.sig
CHANGED
|
Binary file
|