standard_procedure_operations 0.4.1 → 0.4.2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40faff52f3486a0ce989b2ea1fdb8350d8872827391331d0e5d8ad78c4e86a0a
|
4
|
+
data.tar.gz: b3667d26ebea3598955b0d4bf71eed3e22774c4aaf589ea3851c02454144a539
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a84bbf1163fbc9515450cf129bc9385043bb21f5d9d1e5c6135318f44caec11c1971801acdcd7e541915815e067898f36f7ffdbdb4e133b38f4a3a50156276aa
|
7
|
+
data.tar.gz: 4e6bbab0ababc9eb6a24f9b9dacbf4e755e08c44fd8a6da01502f59a5e763945df8cccd9198e0ef5532a80d31cccec81fb4eaafb5fa390fd682daf8e408fd66e
|
data/README.md
CHANGED
@@ -75,8 +75,7 @@ class PrepareDocumentForDownload < Operations::Task
|
|
75
75
|
inputs :document
|
76
76
|
|
77
77
|
self.filename = "#{Faker::Lorem.word}#{File.extname(document.filename.to_s)}"
|
78
|
-
|
79
|
-
end
|
78
|
+
end
|
80
79
|
go_to :return_filename
|
81
80
|
|
82
81
|
result :return_filename do |results|
|
@@ -44,12 +44,6 @@ class Operations::Task::StateManagement::DecisionHandler
|
|
44
44
|
condition = @conditions.find { |condition| data.instance_eval(&condition) }
|
45
45
|
raise Operations::NoDecision.new("No conditions matched #{@name}") if condition.nil?
|
46
46
|
index = @conditions.index condition
|
47
|
-
|
48
|
-
# Check if we're in a testing environment (data is TestResultCarrier)
|
49
|
-
if data.respond_to?(:next_state=)
|
50
|
-
data.go_to(@destinations[index])
|
51
|
-
else
|
52
|
-
task.go_to(@destinations[index], data.to_h)
|
53
|
-
end
|
47
|
+
data.go_to(@destinations[index])
|
54
48
|
end
|
55
49
|
end
|
data/lib/operations/version.rb
CHANGED