standard_procedure_operations 0.4.0 → 0.4.1

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: 61d128fb2351976c6771cd7b9d0e5b929c45b14c7e0e91911dd7e0b26990cadf
4
- data.tar.gz: 9cd6b3bd8402f2cec3a4ad272f349af643bc8696fb95e4cad4d4e6530c1e0b9e
3
+ metadata.gz: 9d90e57e4b3e01cb8a83ce7be2f368f31eed30a96ed73ac619ab513609a18d96
4
+ data.tar.gz: fdbb00026f173b2eb8bb2569d2c7135799b0ad2478a147293973932837597c66
5
5
  SHA512:
6
- metadata.gz: 145bb9834d6f9c95c2c9208b1e30fde979f1ec131cca1814f14b0cdfa14eae4a768b431bc8f75c4c2fec75fe948d966cf8b074772ff82f2f0fdccb584fa76e49
7
- data.tar.gz: 13b0383ef1e585d40846d561bbd71027897e01c6f6f4a5e6216c3670ef12092e3793d4da96806b0e79db92889f3cc336e8a14b892d287ed1c6b2924e0d9c3afc
6
+ metadata.gz: 358365e5739fca1314b5905e90bc0b17e76be041158164535b22c6d22f324239f302e455ad0973925dc7bb4180673f2663ecc5af90beee8e197f586f9059b557
7
+ data.tar.gz: d833dcb1aecb3d7fa12810ca45f447074f89d6fa775a6f3ab3da674b3e782cb0193217111a5253b1c8cd0f802fe089a4748eb5a956136c8aeadb5928171da371
@@ -7,6 +7,8 @@ class Operations::Task::DataCarrier < OpenStruct
7
7
 
8
8
  def start(sub_task_class, **data, &result_handler) = task.start(sub_task_class, **data, &result_handler)
9
9
 
10
+ def go_to(state, data = nil) = task.go_to state, data || self
11
+
10
12
  def complete(results) = task.complete(results)
11
13
 
12
14
  def inputs(*names)
@@ -1,33 +1,17 @@
1
1
  class Operations::Task::StateManagement::ActionHandler
2
2
  attr_accessor :next_state
3
3
 
4
- def initialize name, inputs = [], optional = [], &action
4
+ def initialize name, &action
5
5
  @name = name.to_sym
6
- @required_inputs = inputs
7
- @optional_inputs = optional
6
+ @required_inputs = []
7
+ @optional_inputs = []
8
8
  @action = action
9
9
  @next_state = nil
10
10
  end
11
11
 
12
12
  def call(task, data)
13
- # Execute the action block in the context of the data carrier
14
- result = data.instance_exec(&@action)
15
-
16
- # If state hasn't changed (no go_to in the action) and we have a static next_state,
17
- # perform the transition now
18
- if @next_state && task.state == @name.to_s
19
- # Get the current data as a hash to preserve changes made in the action
20
- current_data = data.to_h
21
-
22
- # If next_state is a symbol that matches an input parameter name, use that parameter's value
23
- if @required_inputs.include?(@next_state) || @optional_inputs.include?(@next_state)
24
- target_state = data.send(@next_state)
25
- task.go_to(target_state, current_data) if target_state
26
- else
27
- task.go_to(@next_state, current_data)
28
- end
13
+ data.instance_exec(&@action).tap do |result|
14
+ data.go_to @next_state unless @next_state.nil?
29
15
  end
30
-
31
- result
32
16
  end
33
17
  end
@@ -37,14 +37,7 @@ class Operations::Task::StateManagement::DecisionHandler
37
37
 
38
38
  private def handle_single_condition(task, data)
39
39
  next_state = data.instance_eval(&@conditions.first) ? @true_state : @false_state
40
- if next_state.respond_to?(:call)
41
- data.instance_eval(&next_state)
42
- elsif data.respond_to?(:next_state=)
43
- # Check if we're in a testing environment (data is TestResultCarrier)
44
- data.go_to(next_state)
45
- else
46
- task.go_to(next_state, data.to_h)
47
- end
40
+ next_state.respond_to?(:call) ? data.instance_eval(&next_state) : data.go_to(next_state, data)
48
41
  end
49
42
 
50
43
  private def handle_multiple_conditions(task, data)
@@ -13,7 +13,7 @@ module Operations::Task::StateManagement
13
13
 
14
14
  def decision(name, &config) = state_handlers[name.to_sym] = DecisionHandler.new(name, &config)
15
15
 
16
- def action(name, inputs: [], optional: [], &handler) = state_handlers[name.to_sym] = ActionHandler.new(name, inputs, optional, &handler)
16
+ def action(name, &handler) = state_handlers[name.to_sym] = ActionHandler.new(name, &handler)
17
17
 
18
18
  def wait_until(name, &config) = state_handlers[name.to_sym] = WaitHandler.new(name, &config)
19
19
 
@@ -5,7 +5,7 @@ module Operations::Task::Testing
5
5
  def handling state, **data, &block
6
6
  # Create a task specifically for testing - avoid serialization issues
7
7
  task = new(state: state)
8
- # Use our own test-specific data carrier that has go_to
8
+ # Use our own test-specific data carrier so we can examine results
9
9
  data = TestResultCarrier.new(data.merge(task: task))
10
10
 
11
11
  # Testing doesn't use the database, so handle serialization by overriding task's go_to
@@ -1,3 +1,3 @@
1
1
  module Operations
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard_procedure_operations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rahoul Baruah
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-09 00:00:00.000000000 Z
10
+ date: 2025-03-10 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails