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: 9d90e57e4b3e01cb8a83ce7be2f368f31eed30a96ed73ac619ab513609a18d96
4
- data.tar.gz: fdbb00026f173b2eb8bb2569d2c7135799b0ad2478a147293973932837597c66
3
+ metadata.gz: 40faff52f3486a0ce989b2ea1fdb8350d8872827391331d0e5d8ad78c4e86a0a
4
+ data.tar.gz: b3667d26ebea3598955b0d4bf71eed3e22774c4aaf589ea3851c02454144a539
5
5
  SHA512:
6
- metadata.gz: 358365e5739fca1314b5905e90bc0b17e76be041158164535b22c6d22f324239f302e455ad0973925dc7bb4180673f2663ecc5af90beee8e197f586f9059b557
7
- data.tar.gz: d833dcb1aecb3d7fa12810ca45f447074f89d6fa775a6f3ab3da674b3e782cb0193217111a5253b1c8cd0f802fe089a4748eb5a956136c8aeadb5928171da371
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
- # State transition defined statically
79
- end
78
+ end
80
79
  go_to :return_filename
81
80
 
82
81
  result :return_filename do |results|
@@ -1,6 +1,4 @@
1
1
  class Operations::Task::DataCarrier < OpenStruct
2
- # go_to method removed to enforce static state transitions
3
-
4
2
  def fail_with(message) = task.fail_with(message)
5
3
 
6
4
  def call(sub_task_class, **data, &result_handler) = task.call(sub_task_class, **data, &result_handler)
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Operations
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard_procedure_operations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rahoul Baruah