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 +4 -4
- data/README.md +9 -0
- data/app/models/operations/task.rb +1 -1
- data/lib/operations/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 247457067fee3dc2c60698254bcb9f9d51474762d9414547f525f84e0d76be1b
|
4
|
+
data.tar.gz: b17839f7c5e0e25891c53551d419611c7cabfc2a235ea850a16c6742a47ca49a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/operations/version.rb
CHANGED