opera 0.2.16 → 0.2.17
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 +4 -0
- data/lib/opera/operation/executor.rb +4 -0
- data/lib/opera/operation/instructions/executors/operation.rb +3 -1
- data/lib/opera/operation/instructions/executors/operations.rb +1 -1
- data/lib/opera/operation/instructions/executors/step.rb +1 -1
- data/lib/opera/operation/result.rb +0 -8
- data/lib/opera/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6b4eeef70ec90ace2eab7861bb9e9801f1e986354a411f2ca426f1380c3a0f7
|
|
4
|
+
data.tar.gz: b2264478656ffab0e08ae0e50b7b54a4dffdf81d64bb53bb2a27365151700351
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efb5db089f99b26ab2f085e62a064dcaf31adc46632fccc9e51ab73f22dc611d9341f7f3ddb5b4d1bdf5d1c8b598aab54af5071df891f0696f5b8357bcd1960b
|
|
7
|
+
data.tar.gz: 0c5e84d50fa8f0a0b5f4a839b97e208925420de362ed42ab60e0731aadfe4b7a25462a6927078feb185dd03c2621aa09562a13d5893b3fdba3bd9de171e01fd6
|
data/CHANGELOG.md
CHANGED
|
@@ -18,7 +18,9 @@ module Opera
|
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
execution = result.executions.pop
|
|
21
|
-
result.add_execution(execution => operation_result.executions)
|
|
21
|
+
result.add_execution(execution => operation_result.executions) unless production_mode?
|
|
22
|
+
|
|
23
|
+
operation_result
|
|
22
24
|
end
|
|
23
25
|
|
|
24
26
|
private
|
|
@@ -45,7 +45,7 @@ module Opera
|
|
|
45
45
|
def add_results(instruction, results)
|
|
46
46
|
add_instruction_output(instruction, results.map(&:output))
|
|
47
47
|
execution = result.executions.pop
|
|
48
|
-
result.add_execution(execution => results.map(&:executions))
|
|
48
|
+
result.add_execution(execution => results.map(&:executions)) unless production_mode?
|
|
49
49
|
end
|
|
50
50
|
|
|
51
51
|
def raise_error
|
|
@@ -8,7 +8,7 @@ module Opera
|
|
|
8
8
|
def call(instruction)
|
|
9
9
|
method = instruction[:method]
|
|
10
10
|
|
|
11
|
-
operation.result.add_execution(method)
|
|
11
|
+
operation.result.add_execution(method) unless production_mode?
|
|
12
12
|
operation.send(method)
|
|
13
13
|
rescue StandardError => exception
|
|
14
14
|
reporter&.error(exception)
|
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.2.
|
|
4
|
+
version: 0.2.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ProFinda Development Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-validation
|