opera 0.3.1 → 0.3.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
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/lib/opera/operation/builder.rb +1 -0
- data/lib/opera/operation/result.rb +2 -2
- data/lib/opera/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66df118360280b866b0d104645f8f837d6046536167999f14fb4fdd97bb082a8
|
|
4
|
+
data.tar.gz: cfe3b8d4d05f8e28900bf0339a70a5bb648ad26ee92c2c449eccb0ecee492887
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5bae55e20de7a7759b600050874bba4b14612635bb0616941317898ba0c537828131e24a145626b08c6d8d783ed38059dae8c55d59895dd705174aa385bfaae
|
|
7
|
+
data.tar.gz: 2eb1c3540d2a855a9e71046499ef38f7fc9477d4acc76f92a7f0f3148daadb95cb8d4166a1e7d18a151f9a0107e42a4db50e965b232ef3228f0c61fb2dfa1962
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Opera Changelog
|
|
2
2
|
|
|
3
|
+
### 0.3.3 - January 15, 2025
|
|
4
|
+
|
|
5
|
+
- Fix issue with handling exceptions in nested operations
|
|
6
|
+
|
|
7
|
+
### 0.3.2 - December 16, 2024
|
|
8
|
+
|
|
9
|
+
- Fix issue with step method definition overriding context
|
|
10
|
+
|
|
3
11
|
### 0.3.1 - October 10, 2024
|
|
4
12
|
|
|
5
13
|
- change minor ruby version to align it with specs
|
data/Gemfile.lock
CHANGED
|
@@ -62,8 +62,8 @@ module Opera
|
|
|
62
62
|
|
|
63
63
|
def add_exception(method, message, classname: nil)
|
|
64
64
|
key = [classname, Array(method).first].compact.join('#')
|
|
65
|
-
|
|
66
|
-
@exceptions[key].
|
|
65
|
+
|
|
66
|
+
@exceptions[key] = message unless @exceptions.key?(key)
|
|
67
67
|
end
|
|
68
68
|
|
|
69
69
|
def add_exceptions(exceptions)
|
data/lib/opera/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opera
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ProFinda Development Team
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-validation
|
|
@@ -52,7 +52,7 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description:
|
|
55
|
+
description:
|
|
56
56
|
email:
|
|
57
57
|
- dev@profinda.com
|
|
58
58
|
executables: []
|
|
@@ -101,7 +101,7 @@ metadata:
|
|
|
101
101
|
homepage_uri: https://github.com/Profinda/opera
|
|
102
102
|
source_code_uri: https://github.com/Profinda/opera
|
|
103
103
|
changelog_uri: https://github.com/Profinda/opera/blob/master/CHANGELOG.md
|
|
104
|
-
post_install_message:
|
|
104
|
+
post_install_message:
|
|
105
105
|
rdoc_options: []
|
|
106
106
|
require_paths:
|
|
107
107
|
- lib
|
|
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
117
117
|
version: '0'
|
|
118
118
|
requirements: []
|
|
119
119
|
rubygems_version: 3.4.19
|
|
120
|
-
signing_key:
|
|
120
|
+
signing_key:
|
|
121
121
|
specification_version: 4
|
|
122
122
|
summary: Use simple DSL language to keep your Operations clean and maintainable
|
|
123
123
|
test_files: []
|