standard_procedure_operations 0.2.1 → 0.2.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: 01add4a31dd9bc5fadf9c8c133ab46ad0ce7d562061bcf176324d3b5bb7bcdcc
4
- data.tar.gz: b807c6c826e7f572581bfc93eb1676d1c472377771ae872ff882d0ff6360ab7e
3
+ metadata.gz: 247457067fee3dc2c60698254bcb9f9d51474762d9414547f525f84e0d76be1b
4
+ data.tar.gz: b17839f7c5e0e25891c53551d419611c7cabfc2a235ea850a16c6742a47ca49a
5
5
  SHA512:
6
- metadata.gz: 15c50c2237db2c236f256071035e74795f345f632550b8c1dab4878e02914c698819252b75977630e52c47b607dc312b0b42abd44646e36ef285c82d024e23aa
7
- data.tar.gz: 430746923c58ff6e3081f4aaf4dd5fb9e69a3fd38927af926282136fc2ea4594756e5e99d813303754a23fcbaf560f1aecc884a91999b6d97c76232365eba13b
6
+ metadata.gz: ca73b99af337d62e70cc542e2c63cb401f1f269d349008bc01fea0856a4147a3b5eed1458504e3fbb9f0bf9b1dc5b6aa4ec420c594f7741d22bec1fbd39d963c
7
+ data.tar.gz: 315a25627f2c5ce4798f2efa6e26375a44ffcbef30981f1df4f87946373bd3d6513cf51c7b9ce6202fa8b8325278471473d9591b3d9380cdfa626d44c9727fa8
data/README.md CHANGED
@@ -297,3 +297,12 @@ Step 4: If you're using RSpec for testing, add `require "operations/matchers" to
297
297
 
298
298
  ## License
299
299
  The gem is available as open source under the terms of the [LGPL License](/LICENSE). This may or may not make it suitable for your needs.
300
+
301
+ ## Roadmap
302
+
303
+ - [ ] Always raise errors instead of just recording a failure (will be useful when dealing with sub-tasks)
304
+ - [ ] Simplify calling sub-tasks (and testing the same)
305
+ - [ ] Split out the state-management definition stuff from the task class (so you can use it without subclassing Operations::Task)
306
+ - [ ] Make Operations::Task work in the background using ActiveJob
307
+ - [ ] Add pause/resume capabilities (for example, when a task needs to wait for user input)
308
+ - [ ] Add wait for sub-tasks capabilities
@@ -21,6 +21,6 @@ module Operations
21
21
 
22
22
  def fail_with(message) = update! status: "failed", status_message: message.to_s.truncate(240), results: {failure_message: message.to_s}
23
23
 
24
- def complete(results) = update!(status: "completed", status_message: "completed", results: results)
24
+ def complete(results) = update!(status: "completed", status_message: "completed", results: results.to_h)
25
25
  end
26
26
  end
@@ -1,3 +1,3 @@
1
1
  module Operations
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.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.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rahoul Baruah