etcher 1.2.0 → 1.3.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +2 -3
- data/etcher.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: 84180c8738954c3de89c404a1e069faae6131c648f66c58cf52cc895fa416d0b
|
|
4
|
+
data.tar.gz: abe217a1b453316529fa6e23d01cda222835999f4e9ac5c0acbbd3f2a9c600f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21c134f172e4bf53fb6c9d4b8738b24af2871a3463ed1bf103786b75c5e40f98be5e3732366f474b037c055caed16c58a6673d4b7006625db94e285472c823a3
|
|
7
|
+
data.tar.gz: d923a76699e9806bed54951436cb55e164d3a71780758890b27db27355206e32dc15475d7db701e988702659074aa50f03387b71485977160ce6ed231734f57f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
:data_link: link:https://alchemists.io/articles/ruby_data[Data]
|
|
6
6
|
:demeter_link: link:https://en.wikipedia.org/wiki/Law_of_Demeter[Law of Demeter]
|
|
7
|
-
:dry_container_link: link:https://dry-rb.org/gems/dry-container[Dry Container]
|
|
8
7
|
:dry_monads_link: link:https://dry-rb.org/gems/dry-monads[Dry Monads]
|
|
9
8
|
:dry_schema_link: link:https://dry-rb.org/gems/dry-schema[Dry Schema]
|
|
10
9
|
:dry_types_link: link:https://dry-rb.org/gems/dry-types[Dry Types]
|
|
@@ -13,10 +12,10 @@
|
|
|
13
12
|
:gitt_link: link:https://alchemists.io/projects/gitt[Gitt]
|
|
14
13
|
:hash_link: link:https://rubyapi.org/o/hash[Hash]
|
|
15
14
|
:json_link: link:https://rubyapi.org/o/json[JSON]
|
|
15
|
+
:pipeable_link: link:https://alchemists.io/projects/pipeable[Pipeable]
|
|
16
16
|
:runcom_link: link:https://alchemists.io/projects/runcom[Runcom]
|
|
17
17
|
:sod_link: link:https://alchemists.io/projects/sod[Sod]
|
|
18
18
|
:struct_link: link:https://alchemists.io/articles/ruby_structs[Struct]
|
|
19
|
-
:transactable_link: link:https://alchemists.io/projects/transactable[Transactable]
|
|
20
19
|
:versionaire_link: link:https://alchemists.io/projects/versionaire[Versionaire]
|
|
21
20
|
:xdg_link: link:https://alchemists.io/projects/xdg[XDG]
|
|
22
21
|
:yaml_link: link:https://rubyapi.org/o/yaml[YAML]
|
|
@@ -89,7 +88,7 @@ etcher.call({one: 1, two: 2})
|
|
|
89
88
|
# Success({:one=>1, :two=>2})
|
|
90
89
|
----
|
|
91
90
|
|
|
92
|
-
Notice you get a monad -- either a `Success` or `Failure` -- as provided by the {dry_monads_link} gem. This allows you to create more sophisticated pipelines as found with the {
|
|
91
|
+
Notice you get a monad -- either a `Success` or `Failure` -- as provided by the {dry_monads_link} gem. This allows you to create more sophisticated pipelines as found with the {pipeable_link} gem or any kind of failsafe workflow you might need.
|
|
93
92
|
|
|
94
93
|
By default, any attributes you message the instance with will only pass through what you gave it and always answer a `Success`. This is nice for initial experimentation but true power comes with full customization of the instance. Here's an advanced configuration showing all features:
|
|
95
94
|
|
data/etcher.gemspec
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: etcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
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: 2024-
|
|
38
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: cogger
|
|
@@ -182,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
182
182
|
- !ruby/object:Gem::Version
|
|
183
183
|
version: '0'
|
|
184
184
|
requirements: []
|
|
185
|
-
rubygems_version: 3.5.
|
|
185
|
+
rubygems_version: 3.5.7
|
|
186
186
|
signing_key:
|
|
187
187
|
specification_version: 4
|
|
188
188
|
summary: A monadic configuration loader, transformer, and validator.
|
metadata.gz.sig
CHANGED
|
Binary file
|