rbpm 0.0.2 → 0.0.3
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.
- data/LICENSE +147 -0
- data/README +30 -5
- data/bin/signal.sh +6 -0
- data/bin/start.sh +6 -0
- data/docs/rbpm-0.0.2-manual--wiki-snapshot.pdf +0 -0
- data/docs/todo.txt +7 -4
- data/lib/rbpm.rb +24 -598
- data/lib/rbpm/nodes.rb +109 -0
- data/lib/rbpm/persistence2.rb +265 -0
- data/lib/rbpm/persistence2_standalone.rb +46 -0
- data/lib/rbpm/token.rb +169 -0
- data/lib/rbpm/workflow.rb +457 -0
- data/lib/rbpm/workflow_managment.rb +57 -0
- data/test/rbpm_action_tests.rb +7 -2
- data/test/rbpm_call_tests.rb +7 -2
- data/test/rbpm_concurrency_fine_grained_graph_programming_sync_tests.rb +153 -0
- data/test/rbpm_condition_tests.rb +7 -2
- data/test/rbpm_ctxvars_tests.rb +7 -2
- data/test/rbpm_exceptions_tests.rb +7 -2
- data/test/rbpm_fork_join_tests.rb +7 -2
- data/test/rbpm_fs2_persistence_tests.rb +144 -0
- data/test/rbpm_simple_tests.rb +7 -2
- data/test/rbpm_state_tests.rb +7 -2
- data/test/rbpm_task_role_tests.rb +7 -2
- data/test/rbpm_transition_tests.rb +8 -3
- data/test/rbpm_versionning_tests.rb +13 -2
- data/test/ruby_lang_tests.rb +21 -0
- data/test/ts_all.rb +35 -25
- data/tutorial/README +65 -0
- data/tutorial/hello_world.rb +17 -0
- data/tutorial/rbpm_tutorial.rb +46 -0
- data/tutorial/sample_state_2_wf.rb +56 -0
- data/tutorial/signal_sample_state2.sh +1 -0
- data/tutorial/start_sample_state2.sh +1 -0
- data/tutorial/workflow_template.rb +73 -0
- metadata +22 -2
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rbpm
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2006-01-
|
6
|
+
version: 0.0.3
|
7
|
+
date: 2006-01-12
|
8
8
|
summary: lightweight (jbpm-like) workflow framework
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -27,12 +27,16 @@ platform: ruby
|
|
27
27
|
authors:
|
28
28
|
- Christian Tschenett
|
29
29
|
files:
|
30
|
+
- bin/signal.sh
|
31
|
+
- bin/start.sh
|
30
32
|
- test/rbpm_action_tests.rb
|
31
33
|
- test/rbpm_call_tests.rb
|
34
|
+
- test/rbpm_concurrency_fine_grained_graph_programming_sync_tests.rb
|
32
35
|
- test/rbpm_condition_tests.rb
|
33
36
|
- test/rbpm_ctxvars_tests.rb
|
34
37
|
- test/rbpm_exceptions_tests.rb
|
35
38
|
- test/rbpm_fork_join_tests.rb
|
39
|
+
- test/rbpm_fs2_persistence_tests.rb
|
36
40
|
- test/rbpm_simple_tests.rb
|
37
41
|
- test/rbpm_state_tests.rb
|
38
42
|
- test/rbpm_task_role_tests.rb
|
@@ -40,15 +44,31 @@ files:
|
|
40
44
|
- test/rbpm_versionning_tests.rb
|
41
45
|
- test/ruby_lang_tests.rb
|
42
46
|
- test/ts_all.rb
|
47
|
+
- lib/rbpm
|
43
48
|
- lib/rbpm.rb
|
49
|
+
- lib/rbpm/nodes.rb
|
50
|
+
- lib/rbpm/persistence2.rb
|
51
|
+
- lib/rbpm/persistence2_standalone.rb
|
52
|
+
- lib/rbpm/token.rb
|
53
|
+
- lib/rbpm/workflow.rb
|
54
|
+
- lib/rbpm/workflow_managment.rb
|
44
55
|
- docs/rbpm-0.0.2-manual--wiki-snapshot.pdf
|
45
56
|
- docs/todo.txt
|
57
|
+
- tutorial/hello_world.rb
|
58
|
+
- tutorial/rbpm_tutorial.rb
|
59
|
+
- tutorial/README
|
60
|
+
- tutorial/sample_state_2_wf.rb
|
61
|
+
- tutorial/signal_sample_state2.sh
|
62
|
+
- tutorial/start_sample_state2.sh
|
63
|
+
- tutorial/workflow_template.rb
|
46
64
|
- README
|
65
|
+
- LICENSE
|
47
66
|
test_files:
|
48
67
|
- test/ts_all.rb
|
49
68
|
rdoc_options: []
|
50
69
|
extra_rdoc_files:
|
51
70
|
- README
|
71
|
+
- LICENSE
|
52
72
|
executables: []
|
53
73
|
extensions: []
|
54
74
|
requirements: []
|