transactable 0.4.2 → 0.4.3
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 +19 -3
- data/transactable.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: e7e47f7fa9f03846876538e85d5d6213ef7bca6f4ab89ef2b4dd9ba2f2b6fc3e
|
4
|
+
data.tar.gz: 0e6d53eddaa2669e264754bf741bc2fb7d470916e31bfbbe6adfb3b6dbfa3134
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51106c2916ccf9918d57943d15b925781ed96d4182c9589a4acb49d096dc9ed9ad6c69bee544421eeb7f11139a57aa721b9eb411fb1b3efe17fa5a3327acd7d3
|
7
|
+
data.tar.gz: bd529f25021dfc2e5251db19401c0d1efbc6c9b20a34da347963e3f4c67fb29e4b55e81879f4f554f96fb8c1a165497925f1044c31dff2bc0fdbaf9a9d10d849
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.adoc
CHANGED
@@ -31,18 +31,34 @@ toc::[]
|
|
31
31
|
|
32
32
|
== Setup
|
33
33
|
|
34
|
-
To install, run:
|
34
|
+
To install _with_ security, run:
|
35
|
+
|
36
|
+
[source,bash]
|
37
|
+
----
|
38
|
+
# 💡 Skip this line if you already have the public certificate installed.
|
39
|
+
gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
|
40
|
+
gem install transactable --trust-policy HighSecurity
|
41
|
+
----
|
42
|
+
|
43
|
+
To install _without_ security, run:
|
35
44
|
|
36
45
|
[source,bash]
|
37
46
|
----
|
38
47
|
gem install transactable
|
39
48
|
----
|
40
49
|
|
41
|
-
|
50
|
+
You can also add the gem directly to your project:
|
51
|
+
|
52
|
+
[source,bash]
|
53
|
+
----
|
54
|
+
bundle add transactable
|
55
|
+
----
|
56
|
+
|
57
|
+
Once the gem is installed, you only need to require it:
|
42
58
|
|
43
59
|
[source,ruby]
|
44
60
|
----
|
45
|
-
|
61
|
+
require "transactable"
|
46
62
|
----
|
47
63
|
|
48
64
|
== Usage
|
data/transactable.gemspec
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: transactable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.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: dry-container
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
195
|
- !ruby/object:Gem::Version
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
|
-
rubygems_version: 3.4.
|
198
|
+
rubygems_version: 3.4.12
|
199
199
|
signing_key:
|
200
200
|
specification_version: 4
|
201
201
|
summary: A DSL for transactional workflows built atop function composition.
|
metadata.gz.sig
CHANGED
Binary file
|