ruote-maestrodev 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (265) hide show
  1. data/CHANGELOG.txt +290 -0
  2. data/CREDITS.txt +99 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.rdoc +88 -0
  5. data/Rakefile +108 -0
  6. data/TODO.txt +488 -0
  7. data/lib/ruote.rb +7 -0
  8. data/lib/ruote/context.rb +194 -0
  9. data/lib/ruote/engine.rb +1062 -0
  10. data/lib/ruote/engine/process_error.rb +122 -0
  11. data/lib/ruote/engine/process_status.rb +448 -0
  12. data/lib/ruote/exp/command.rb +87 -0
  13. data/lib/ruote/exp/commanded.rb +69 -0
  14. data/lib/ruote/exp/condition.rb +227 -0
  15. data/lib/ruote/exp/fe_add_branches.rb +138 -0
  16. data/lib/ruote/exp/fe_apply.rb +154 -0
  17. data/lib/ruote/exp/fe_cancel_process.rb +78 -0
  18. data/lib/ruote/exp/fe_command.rb +156 -0
  19. data/lib/ruote/exp/fe_concurrence.rb +321 -0
  20. data/lib/ruote/exp/fe_concurrent_iterator.rb +219 -0
  21. data/lib/ruote/exp/fe_cron.rb +141 -0
  22. data/lib/ruote/exp/fe_cursor.rb +324 -0
  23. data/lib/ruote/exp/fe_define.rb +112 -0
  24. data/lib/ruote/exp/fe_echo.rb +60 -0
  25. data/lib/ruote/exp/fe_equals.rb +115 -0
  26. data/lib/ruote/exp/fe_error.rb +82 -0
  27. data/lib/ruote/exp/fe_filter.rb +648 -0
  28. data/lib/ruote/exp/fe_forget.rb +88 -0
  29. data/lib/ruote/exp/fe_given.rb +154 -0
  30. data/lib/ruote/exp/fe_if.rb +127 -0
  31. data/lib/ruote/exp/fe_inc.rb +205 -0
  32. data/lib/ruote/exp/fe_iterator.rb +234 -0
  33. data/lib/ruote/exp/fe_let.rb +75 -0
  34. data/lib/ruote/exp/fe_listen.rb +304 -0
  35. data/lib/ruote/exp/fe_lose.rb +110 -0
  36. data/lib/ruote/exp/fe_noop.rb +45 -0
  37. data/lib/ruote/exp/fe_once.rb +215 -0
  38. data/lib/ruote/exp/fe_participant.rb +287 -0
  39. data/lib/ruote/exp/fe_read.rb +69 -0
  40. data/lib/ruote/exp/fe_redo.rb +82 -0
  41. data/lib/ruote/exp/fe_ref.rb +152 -0
  42. data/lib/ruote/exp/fe_registerp.rb +110 -0
  43. data/lib/ruote/exp/fe_reserve.rb +126 -0
  44. data/lib/ruote/exp/fe_restore.rb +102 -0
  45. data/lib/ruote/exp/fe_save.rb +72 -0
  46. data/lib/ruote/exp/fe_sequence.rb +59 -0
  47. data/lib/ruote/exp/fe_set.rb +154 -0
  48. data/lib/ruote/exp/fe_subprocess.rb +211 -0
  49. data/lib/ruote/exp/fe_that.rb +92 -0
  50. data/lib/ruote/exp/fe_undo.rb +67 -0
  51. data/lib/ruote/exp/fe_unregisterp.rb +69 -0
  52. data/lib/ruote/exp/fe_wait.rb +95 -0
  53. data/lib/ruote/exp/flowexpression.rb +886 -0
  54. data/lib/ruote/exp/iterator.rb +81 -0
  55. data/lib/ruote/exp/merge.rb +118 -0
  56. data/lib/ruote/exp/ro_attributes.rb +212 -0
  57. data/lib/ruote/exp/ro_filters.rb +136 -0
  58. data/lib/ruote/exp/ro_persist.rb +154 -0
  59. data/lib/ruote/exp/ro_variables.rb +189 -0
  60. data/lib/ruote/exp/ro_vf.rb +68 -0
  61. data/lib/ruote/fei.rb +260 -0
  62. data/lib/ruote/id/mnemo_wfid_generator.rb +43 -0
  63. data/lib/ruote/id/wfid_generator.rb +81 -0
  64. data/lib/ruote/log/default_history.rb +122 -0
  65. data/lib/ruote/log/pretty.rb +176 -0
  66. data/lib/ruote/log/storage_history.rb +159 -0
  67. data/lib/ruote/log/test_logger.rb +208 -0
  68. data/lib/ruote/log/wait_logger.rb +64 -0
  69. data/lib/ruote/part/block_participant.rb +137 -0
  70. data/lib/ruote/part/code_participant.rb +81 -0
  71. data/lib/ruote/part/engine_participant.rb +189 -0
  72. data/lib/ruote/part/local_participant.rb +138 -0
  73. data/lib/ruote/part/no_op_participant.rb +60 -0
  74. data/lib/ruote/part/null_participant.rb +54 -0
  75. data/lib/ruote/part/rev_participant.rb +169 -0
  76. data/lib/ruote/part/smtp_participant.rb +116 -0
  77. data/lib/ruote/part/storage_participant.rb +392 -0
  78. data/lib/ruote/part/template.rb +84 -0
  79. data/lib/ruote/participant.rb +7 -0
  80. data/lib/ruote/reader.rb +278 -0
  81. data/lib/ruote/reader/json.rb +49 -0
  82. data/lib/ruote/reader/radial.rb +290 -0
  83. data/lib/ruote/reader/ruby_dsl.rb +186 -0
  84. data/lib/ruote/reader/xml.rb +99 -0
  85. data/lib/ruote/receiver/base.rb +212 -0
  86. data/lib/ruote/storage/base.rb +364 -0
  87. data/lib/ruote/storage/composite_storage.rb +121 -0
  88. data/lib/ruote/storage/fs_storage.rb +139 -0
  89. data/lib/ruote/storage/hash_storage.rb +211 -0
  90. data/lib/ruote/svc/dispatch_pool.rb +158 -0
  91. data/lib/ruote/svc/dollar_sub.rb +298 -0
  92. data/lib/ruote/svc/error_handler.rb +138 -0
  93. data/lib/ruote/svc/expression_map.rb +97 -0
  94. data/lib/ruote/svc/participant_list.rb +397 -0
  95. data/lib/ruote/svc/tracker.rb +172 -0
  96. data/lib/ruote/svc/treechecker.rb +141 -0
  97. data/lib/ruote/tree_dot.rb +85 -0
  98. data/lib/ruote/util/filter.rb +525 -0
  99. data/lib/ruote/util/hashdot.rb +79 -0
  100. data/lib/ruote/util/look.rb +128 -0
  101. data/lib/ruote/util/lookup.rb +127 -0
  102. data/lib/ruote/util/misc.rb +167 -0
  103. data/lib/ruote/util/ometa.rb +71 -0
  104. data/lib/ruote/util/serializer.rb +103 -0
  105. data/lib/ruote/util/subprocess.rb +88 -0
  106. data/lib/ruote/util/time.rb +100 -0
  107. data/lib/ruote/util/tree.rb +58 -0
  108. data/lib/ruote/version.rb +29 -0
  109. data/lib/ruote/worker.rb +386 -0
  110. data/lib/ruote/workitem.rb +394 -0
  111. data/phil.txt +14 -0
  112. data/ruote.gemspec +44 -0
  113. data/test/bm/ci.rb +55 -0
  114. data/test/bm/ici.rb +71 -0
  115. data/test/bm/juuman.rb +54 -0
  116. data/test/bm/launch_bench.rb +37 -0
  117. data/test/bm/load_26c.rb +97 -0
  118. data/test/bm/mega.rb +64 -0
  119. data/test/bm/seq_thousand.rb +31 -0
  120. data/test/bm/t.rb +35 -0
  121. data/test/functional/base.rb +247 -0
  122. data/test/functional/concurrent_base.rb +98 -0
  123. data/test/functional/crunner.rb +31 -0
  124. data/test/functional/ct_0_concurrence.rb +65 -0
  125. data/test/functional/ct_1_iterator.rb +67 -0
  126. data/test/functional/ct_2_cancel.rb +81 -0
  127. data/test/functional/eft_0_process_definition.rb +65 -0
  128. data/test/functional/eft_10_cancel_process.rb +46 -0
  129. data/test/functional/eft_11_wait.rb +109 -0
  130. data/test/functional/eft_12_listen.rb +500 -0
  131. data/test/functional/eft_13_iterator.rb +342 -0
  132. data/test/functional/eft_14_cursor.rb +456 -0
  133. data/test/functional/eft_15_loop.rb +69 -0
  134. data/test/functional/eft_16_if.rb +183 -0
  135. data/test/functional/eft_17_equals.rb +55 -0
  136. data/test/functional/eft_18_concurrent_iterator.rb +410 -0
  137. data/test/functional/eft_19_reserve.rb +136 -0
  138. data/test/functional/eft_1_echo.rb +68 -0
  139. data/test/functional/eft_20_save.rb +116 -0
  140. data/test/functional/eft_21_restore.rb +61 -0
  141. data/test/functional/eft_22_noop.rb +28 -0
  142. data/test/functional/eft_23_apply.rb +168 -0
  143. data/test/functional/eft_24_add_branches.rb +98 -0
  144. data/test/functional/eft_25_command.rb +28 -0
  145. data/test/functional/eft_26_error.rb +77 -0
  146. data/test/functional/eft_27_inc.rb +280 -0
  147. data/test/functional/eft_28_once.rb +135 -0
  148. data/test/functional/eft_29_cron.rb +64 -0
  149. data/test/functional/eft_2_sequence.rb +58 -0
  150. data/test/functional/eft_30_ref.rb +155 -0
  151. data/test/functional/eft_31_registerp.rb +130 -0
  152. data/test/functional/eft_32_lose.rb +93 -0
  153. data/test/functional/eft_33_let.rb +31 -0
  154. data/test/functional/eft_34_given.rb +123 -0
  155. data/test/functional/eft_35_filter.rb +375 -0
  156. data/test/functional/eft_36_read.rb +95 -0
  157. data/test/functional/eft_3_participant.rb +149 -0
  158. data/test/functional/eft_4_set.rb +296 -0
  159. data/test/functional/eft_5_subprocess.rb +163 -0
  160. data/test/functional/eft_6_concurrence.rb +304 -0
  161. data/test/functional/eft_7_forget.rb +61 -0
  162. data/test/functional/eft_8_undo.rb +114 -0
  163. data/test/functional/eft_9_redo.rb +138 -0
  164. data/test/functional/ft_0_worker.rb +65 -0
  165. data/test/functional/ft_10_dollar.rb +304 -0
  166. data/test/functional/ft_11_recursion.rb +109 -0
  167. data/test/functional/ft_12_launchitem.rb +43 -0
  168. data/test/functional/ft_13_variables.rb +151 -0
  169. data/test/functional/ft_14_re_apply.rb +324 -0
  170. data/test/functional/ft_15_timeout.rb +226 -0
  171. data/test/functional/ft_16_participant_params.rb +98 -0
  172. data/test/functional/ft_17_conditional.rb +102 -0
  173. data/test/functional/ft_18_kill.rb +138 -0
  174. data/test/functional/ft_19_participant_code.rb +67 -0
  175. data/test/functional/ft_1_process_status.rb +796 -0
  176. data/test/functional/ft_20_storage_participant.rb +543 -0
  177. data/test/functional/ft_21_forget.rb +153 -0
  178. data/test/functional/ft_22_process_definitions.rb +90 -0
  179. data/test/functional/ft_23_load_defs.rb +79 -0
  180. data/test/functional/ft_24_block_participant.rb +235 -0
  181. data/test/functional/ft_25_receiver.rb +207 -0
  182. data/test/functional/ft_26_participant_rtimeout.rb +179 -0
  183. data/test/functional/ft_27_var_indirection.rb +128 -0
  184. data/test/functional/ft_28_null_noop_participants.rb +51 -0
  185. data/test/functional/ft_29_part_template.rb +60 -0
  186. data/test/functional/ft_2_errors.rb +380 -0
  187. data/test/functional/ft_30_smtp_participant.rb +122 -0
  188. data/test/functional/ft_31_part_blocking.rb +72 -0
  189. data/test/functional/ft_33_participant_subprocess_priority.rb +32 -0
  190. data/test/functional/ft_34_cursor_rewind.rb +101 -0
  191. data/test/functional/ft_35_add_service.rb +56 -0
  192. data/test/functional/ft_36_storage_history.rb +150 -0
  193. data/test/functional/ft_37_default_history.rb +109 -0
  194. data/test/functional/ft_38_participant_more.rb +193 -0
  195. data/test/functional/ft_39_wait_for.rb +136 -0
  196. data/test/functional/ft_3_participant_registration.rb +574 -0
  197. data/test/functional/ft_40_wait_logger.rb +62 -0
  198. data/test/functional/ft_41_participants.rb +91 -0
  199. data/test/functional/ft_42_storage_copy.rb +71 -0
  200. data/test/functional/ft_43_participant_on_reply.rb +87 -0
  201. data/test/functional/ft_44_var_participant.rb +35 -0
  202. data/test/functional/ft_45_participant_accept.rb +64 -0
  203. data/test/functional/ft_46_launch_single.rb +83 -0
  204. data/test/functional/ft_47_wfid_generator.rb +54 -0
  205. data/test/functional/ft_48_lose.rb +112 -0
  206. data/test/functional/ft_49_engine_on_error.rb +201 -0
  207. data/test/functional/ft_4_cancel.rb +132 -0
  208. data/test/functional/ft_50_engine_config.rb +22 -0
  209. data/test/functional/ft_51_misc.rb +67 -0
  210. data/test/functional/ft_52_case.rb +134 -0
  211. data/test/functional/ft_53_engine_on_terminate.rb +95 -0
  212. data/test/functional/ft_54_patterns.rb +104 -0
  213. data/test/functional/ft_55_engine_participant.rb +303 -0
  214. data/test/functional/ft_56_filter_attribute.rb +259 -0
  215. data/test/functional/ft_57_rev_participant.rb +252 -0
  216. data/test/functional/ft_58_workitem.rb +69 -0
  217. data/test/functional/ft_59_pause.rb +343 -0
  218. data/test/functional/ft_5_on_error.rb +384 -0
  219. data/test/functional/ft_60_code_participant.rb +45 -0
  220. data/test/functional/ft_61_trailing_fields.rb +34 -0
  221. data/test/functional/ft_62_exp_name_and_dollar_substitution.rb +35 -0
  222. data/test/functional/ft_6_on_cancel.rb +221 -0
  223. data/test/functional/ft_7_tags.rb +177 -0
  224. data/test/functional/ft_8_participant_consumption.rb +124 -0
  225. data/test/functional/ft_9_subprocesses.rb +146 -0
  226. data/test/functional/restart_base.rb +34 -0
  227. data/test/functional/rt_0_wait.rb +55 -0
  228. data/test/functional/rt_1_listen.rb +56 -0
  229. data/test/functional/rt_2_errors.rb +56 -0
  230. data/test/functional/rt_3_once.rb +70 -0
  231. data/test/functional/rt_4_cron.rb +64 -0
  232. data/test/functional/rt_5_timeout.rb +60 -0
  233. data/test/functional/rtest.rb +8 -0
  234. data/test/functional/storage_helper.rb +93 -0
  235. data/test/functional/test.rb +44 -0
  236. data/test/functional/vertical.rb +46 -0
  237. data/test/path_helper.rb +15 -0
  238. data/test/test.rb +13 -0
  239. data/test/test_helper.rb +28 -0
  240. data/test/unit/storage.rb +428 -0
  241. data/test/unit/storages.rb +37 -0
  242. data/test/unit/test.rb +28 -0
  243. data/test/unit/ut_0_ruby_reader.rb +223 -0
  244. data/test/unit/ut_11_lookup.rb +122 -0
  245. data/test/unit/ut_13_serializer.rb +65 -0
  246. data/test/unit/ut_14_is_uri.rb +28 -0
  247. data/test/unit/ut_15_util.rb +57 -0
  248. data/test/unit/ut_16_reader.rb +225 -0
  249. data/test/unit/ut_18_engine.rb +47 -0
  250. data/test/unit/ut_19_part_template.rb +86 -0
  251. data/test/unit/ut_1_fei.rb +165 -0
  252. data/test/unit/ut_20_composite_storage.rb +74 -0
  253. data/test/unit/ut_21_svc_participant_list.rb +46 -0
  254. data/test/unit/ut_22_filter.rb +1094 -0
  255. data/test/unit/ut_23_svc_tracker.rb +48 -0
  256. data/test/unit/ut_24_radial_reader.rb +332 -0
  257. data/test/unit/ut_25_merge.rb +113 -0
  258. data/test/unit/ut_3_wait_logger.rb +39 -0
  259. data/test/unit/ut_4_expmap.rb +20 -0
  260. data/test/unit/ut_5_tree.rb +54 -0
  261. data/test/unit/ut_6_condition.rb +303 -0
  262. data/test/unit/ut_7_workitem.rb +99 -0
  263. data/test/unit/ut_8_tree_to_dot.rb +72 -0
  264. data/test/unit/ut_9_xml_reader.rb +61 -0
  265. metadata +504 -0
@@ -0,0 +1,72 @@
1
+
2
+ #
3
+ # testing ruote
4
+ #
5
+ # Wed Jul 15 09:27:20 JST 2009
6
+ #
7
+
8
+ require File.join(File.dirname(__FILE__), '..', 'test_helper.rb')
9
+
10
+ require 'ruote/reader/ruby_dsl'
11
+ require 'ruote/tree_dot'
12
+
13
+
14
+ class TreeDotTest < Test::Unit::TestCase
15
+
16
+ def test_sequence
17
+
18
+ tree = Ruote.define :name => 'test' do
19
+ sequence do
20
+ alpha
21
+ bravo
22
+ end
23
+ end
24
+
25
+ #puts Ruote.tree_to_dot(tree)
26
+
27
+ assert_equal(
28
+ %{
29
+ digraph "ruote process definition" {
30
+ "0" [ label = "define {'name'=>'test'}" ];
31
+ "0_0" [ label = "sequence {}" ];
32
+ "0_0_0" [ label = "alpha {}" ];
33
+ "0_0_1" [ label = "bravo {}" ];
34
+ "0_0" -> "0_0_0";
35
+ "0_0_1" -> "0_0";
36
+ "0_0_0" -> "0_0_1";
37
+ "0" -> "0_0";
38
+ "0_0" -> "0";
39
+ }
40
+ }.strip,
41
+ Ruote.tree_to_dot(tree).strip)
42
+ end
43
+
44
+ def test_concurrence
45
+
46
+ tree = Ruote.define :name => 'test' do
47
+ concurrence do
48
+ alpha
49
+ bravo
50
+ end
51
+ end
52
+
53
+ #puts Ruote.tree_to_dot(tree)
54
+
55
+ assert_equal(
56
+ %{
57
+ digraph "ruote process definition" {
58
+ "0" [ label = "define {'name'=>'test'}" ];
59
+ "0_0" [ label = "concurrence {}" ];
60
+ "0_0_0" [ label = "alpha {}" ];
61
+ "0_0_1" [ label = "bravo {}" ];
62
+ "0_0" -> "0_0_0";
63
+ "0_0_0" -> "0_0";
64
+ "0_0" -> "0_0_1";
65
+ "0_0_1" -> "0_0";
66
+ "0" -> "0_0";
67
+ "0_0" -> "0";
68
+ }
69
+ }.strip,
70
+ Ruote.tree_to_dot(tree).strip)
71
+ end
72
+ end
@@ -0,0 +1,61 @@
1
+
2
+ #
3
+ # testing ruote
4
+ #
5
+ # Fri Jul 31 09:50:13 JST 2009
6
+ #
7
+
8
+ require File.join(File.dirname(__FILE__), '..', 'test_helper.rb')
9
+
10
+ require 'ruote/reader/xml'
11
+
12
+
13
+ class XmlReaderTest < Test::Unit::TestCase
14
+
15
+ def test_sequence
16
+
17
+ tree = Ruote::XmlReader.read(%{
18
+ <define name="nada">
19
+ <sequence>
20
+ <alpha/>
21
+ <bravo/>
22
+ </sequence>
23
+ </define>
24
+ })
25
+
26
+ assert_equal(
27
+ ["define", {"name"=>"nada"}, [
28
+ ["sequence", {}, [["alpha", {}, []], ["bravo", {}, []]]]
29
+ ]],
30
+ tree)
31
+ end
32
+
33
+ def test_echo
34
+
35
+ tree = Ruote::XmlReader.read(%{
36
+ <process-definition name="nada">
37
+ <echo>la vida loca</echo>
38
+ </process-definition>
39
+ })
40
+
41
+ assert_equal(
42
+ ["process_definition", {"name"=>"nada"}, [["echo", {"la vida loca"=>nil}, []]]],
43
+ tree)
44
+ end
45
+
46
+ def test_concurrent_iterator
47
+
48
+ tree = Ruote::XmlReader.read(%{
49
+ <process-definition name="nada">
50
+ <concurrent-iterator on-field="toti" to-field="toto">
51
+ </concurrent-iterator>
52
+ </process-definition>
53
+ })
54
+
55
+ assert_equal(
56
+ ["process_definition", {"name"=>"nada"}, [
57
+ ["concurrent_iterator", {"on_field"=>"toti", "to_field"=>"toto"}, []]]],
58
+ tree)
59
+ end
60
+ end
61
+
metadata ADDED
@@ -0,0 +1,504 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruote-maestrodev
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - John Mettraux
9
+ - Kenneth Kalmer
10
+ - Torsten Schoenebaum
11
+ autorequire:
12
+ bindir: bin
13
+ cert_chain: []
14
+ date: 2013-04-30 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: parslet
18
+ requirement: !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - '='
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.1
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - '='
30
+ - !ruby/object:Gem::Version
31
+ version: 1.2.1
32
+ - !ruby/object:Gem::Dependency
33
+ name: sourcify
34
+ requirement: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - '='
38
+ - !ruby/object:Gem::Version
39
+ version: 0.5.0
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 0.5.0
48
+ - !ruby/object:Gem::Dependency
49
+ name: rufus-json
50
+ requirement: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: 1.0.1
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ! '>='
62
+ - !ruby/object:Gem::Version
63
+ version: 1.0.1
64
+ - !ruby/object:Gem::Dependency
65
+ name: rufus-cloche
66
+ requirement: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: 1.0.1
72
+ type: :runtime
73
+ prerelease: false
74
+ version_requirements: !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - ! '>='
78
+ - !ruby/object:Gem::Version
79
+ version: 1.0.1
80
+ - !ruby/object:Gem::Dependency
81
+ name: rufus-dollar
82
+ requirement: !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: 1.0.4
88
+ type: :runtime
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: 1.0.4
96
+ - !ruby/object:Gem::Dependency
97
+ name: rufus-mnemo
98
+ requirement: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: 1.1.0
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ! '>='
110
+ - !ruby/object:Gem::Version
111
+ version: 1.1.0
112
+ - !ruby/object:Gem::Dependency
113
+ name: rufus-scheduler
114
+ requirement: !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - ! '>='
118
+ - !ruby/object:Gem::Version
119
+ version: 2.0.9
120
+ type: :runtime
121
+ prerelease: false
122
+ version_requirements: !ruby/object:Gem::Requirement
123
+ none: false
124
+ requirements:
125
+ - - ! '>='
126
+ - !ruby/object:Gem::Version
127
+ version: 2.0.9
128
+ - !ruby/object:Gem::Dependency
129
+ name: rufus-treechecker
130
+ requirement: !ruby/object:Gem::Requirement
131
+ none: false
132
+ requirements:
133
+ - - ! '>='
134
+ - !ruby/object:Gem::Version
135
+ version: 1.0.6
136
+ type: :runtime
137
+ prerelease: false
138
+ version_requirements: !ruby/object:Gem::Requirement
139
+ none: false
140
+ requirements:
141
+ - - ! '>='
142
+ - !ruby/object:Gem::Version
143
+ version: 1.0.6
144
+ - !ruby/object:Gem::Dependency
145
+ name: rake
146
+ requirement: !ruby/object:Gem::Requirement
147
+ none: false
148
+ requirements:
149
+ - - ! '>='
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ none: false
156
+ requirements:
157
+ - - ! '>='
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ - !ruby/object:Gem::Dependency
161
+ name: json
162
+ requirement: !ruby/object:Gem::Requirement
163
+ none: false
164
+ requirements:
165
+ - - ! '>='
166
+ - !ruby/object:Gem::Version
167
+ version: '0'
168
+ type: :development
169
+ prerelease: false
170
+ version_requirements: !ruby/object:Gem::Requirement
171
+ none: false
172
+ requirements:
173
+ - - ! '>='
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ - !ruby/object:Gem::Dependency
177
+ name: builder
178
+ requirement: !ruby/object:Gem::Requirement
179
+ none: false
180
+ requirements:
181
+ - - ! '>='
182
+ - !ruby/object:Gem::Version
183
+ version: '0'
184
+ type: :development
185
+ prerelease: false
186
+ version_requirements: !ruby/object:Gem::Requirement
187
+ none: false
188
+ requirements:
189
+ - - ! '>='
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ - !ruby/object:Gem::Dependency
193
+ name: mailtrap
194
+ requirement: !ruby/object:Gem::Requirement
195
+ none: false
196
+ requirements:
197
+ - - ! '>='
198
+ - !ruby/object:Gem::Version
199
+ version: '0'
200
+ type: :development
201
+ prerelease: false
202
+ version_requirements: !ruby/object:Gem::Requirement
203
+ none: false
204
+ requirements:
205
+ - - ! '>='
206
+ - !ruby/object:Gem::Version
207
+ version: '0'
208
+ description: ! "\nruote is an open source Ruby workflow engine\n "
209
+ email:
210
+ - jmettraux@gmail.com
211
+ executables: []
212
+ extensions: []
213
+ extra_rdoc_files: []
214
+ files:
215
+ - Rakefile
216
+ - lib/ruote/context.rb
217
+ - lib/ruote/engine/process_error.rb
218
+ - lib/ruote/engine/process_status.rb
219
+ - lib/ruote/engine.rb
220
+ - lib/ruote/exp/command.rb
221
+ - lib/ruote/exp/commanded.rb
222
+ - lib/ruote/exp/condition.rb
223
+ - lib/ruote/exp/fe_add_branches.rb
224
+ - lib/ruote/exp/fe_apply.rb
225
+ - lib/ruote/exp/fe_cancel_process.rb
226
+ - lib/ruote/exp/fe_command.rb
227
+ - lib/ruote/exp/fe_concurrence.rb
228
+ - lib/ruote/exp/fe_concurrent_iterator.rb
229
+ - lib/ruote/exp/fe_cron.rb
230
+ - lib/ruote/exp/fe_cursor.rb
231
+ - lib/ruote/exp/fe_define.rb
232
+ - lib/ruote/exp/fe_echo.rb
233
+ - lib/ruote/exp/fe_equals.rb
234
+ - lib/ruote/exp/fe_error.rb
235
+ - lib/ruote/exp/fe_filter.rb
236
+ - lib/ruote/exp/fe_forget.rb
237
+ - lib/ruote/exp/fe_given.rb
238
+ - lib/ruote/exp/fe_if.rb
239
+ - lib/ruote/exp/fe_inc.rb
240
+ - lib/ruote/exp/fe_iterator.rb
241
+ - lib/ruote/exp/fe_let.rb
242
+ - lib/ruote/exp/fe_listen.rb
243
+ - lib/ruote/exp/fe_lose.rb
244
+ - lib/ruote/exp/fe_noop.rb
245
+ - lib/ruote/exp/fe_once.rb
246
+ - lib/ruote/exp/fe_participant.rb
247
+ - lib/ruote/exp/fe_read.rb
248
+ - lib/ruote/exp/fe_redo.rb
249
+ - lib/ruote/exp/fe_ref.rb
250
+ - lib/ruote/exp/fe_registerp.rb
251
+ - lib/ruote/exp/fe_reserve.rb
252
+ - lib/ruote/exp/fe_restore.rb
253
+ - lib/ruote/exp/fe_save.rb
254
+ - lib/ruote/exp/fe_sequence.rb
255
+ - lib/ruote/exp/fe_set.rb
256
+ - lib/ruote/exp/fe_subprocess.rb
257
+ - lib/ruote/exp/fe_that.rb
258
+ - lib/ruote/exp/fe_undo.rb
259
+ - lib/ruote/exp/fe_unregisterp.rb
260
+ - lib/ruote/exp/fe_wait.rb
261
+ - lib/ruote/exp/flowexpression.rb
262
+ - lib/ruote/exp/iterator.rb
263
+ - lib/ruote/exp/merge.rb
264
+ - lib/ruote/exp/ro_attributes.rb
265
+ - lib/ruote/exp/ro_filters.rb
266
+ - lib/ruote/exp/ro_persist.rb
267
+ - lib/ruote/exp/ro_variables.rb
268
+ - lib/ruote/exp/ro_vf.rb
269
+ - lib/ruote/fei.rb
270
+ - lib/ruote/id/mnemo_wfid_generator.rb
271
+ - lib/ruote/id/wfid_generator.rb
272
+ - lib/ruote/log/default_history.rb
273
+ - lib/ruote/log/pretty.rb
274
+ - lib/ruote/log/storage_history.rb
275
+ - lib/ruote/log/test_logger.rb
276
+ - lib/ruote/log/wait_logger.rb
277
+ - lib/ruote/part/block_participant.rb
278
+ - lib/ruote/part/code_participant.rb
279
+ - lib/ruote/part/engine_participant.rb
280
+ - lib/ruote/part/local_participant.rb
281
+ - lib/ruote/part/no_op_participant.rb
282
+ - lib/ruote/part/null_participant.rb
283
+ - lib/ruote/part/rev_participant.rb
284
+ - lib/ruote/part/smtp_participant.rb
285
+ - lib/ruote/part/storage_participant.rb
286
+ - lib/ruote/part/template.rb
287
+ - lib/ruote/participant.rb
288
+ - lib/ruote/reader/json.rb
289
+ - lib/ruote/reader/radial.rb
290
+ - lib/ruote/reader/ruby_dsl.rb
291
+ - lib/ruote/reader/xml.rb
292
+ - lib/ruote/reader.rb
293
+ - lib/ruote/receiver/base.rb
294
+ - lib/ruote/storage/base.rb
295
+ - lib/ruote/storage/composite_storage.rb
296
+ - lib/ruote/storage/fs_storage.rb
297
+ - lib/ruote/storage/hash_storage.rb
298
+ - lib/ruote/svc/dispatch_pool.rb
299
+ - lib/ruote/svc/dollar_sub.rb
300
+ - lib/ruote/svc/error_handler.rb
301
+ - lib/ruote/svc/expression_map.rb
302
+ - lib/ruote/svc/participant_list.rb
303
+ - lib/ruote/svc/tracker.rb
304
+ - lib/ruote/svc/treechecker.rb
305
+ - lib/ruote/tree_dot.rb
306
+ - lib/ruote/util/filter.rb
307
+ - lib/ruote/util/hashdot.rb
308
+ - lib/ruote/util/look.rb
309
+ - lib/ruote/util/lookup.rb
310
+ - lib/ruote/util/misc.rb
311
+ - lib/ruote/util/ometa.rb
312
+ - lib/ruote/util/serializer.rb
313
+ - lib/ruote/util/subprocess.rb
314
+ - lib/ruote/util/time.rb
315
+ - lib/ruote/util/tree.rb
316
+ - lib/ruote/version.rb
317
+ - lib/ruote/worker.rb
318
+ - lib/ruote/workitem.rb
319
+ - lib/ruote.rb
320
+ - test/bm/ci.rb
321
+ - test/bm/ici.rb
322
+ - test/bm/juuman.rb
323
+ - test/bm/launch_bench.rb
324
+ - test/bm/load_26c.rb
325
+ - test/bm/mega.rb
326
+ - test/bm/seq_thousand.rb
327
+ - test/bm/t.rb
328
+ - test/functional/base.rb
329
+ - test/functional/concurrent_base.rb
330
+ - test/functional/crunner.rb
331
+ - test/functional/ct_0_concurrence.rb
332
+ - test/functional/ct_1_iterator.rb
333
+ - test/functional/ct_2_cancel.rb
334
+ - test/functional/eft_0_process_definition.rb
335
+ - test/functional/eft_10_cancel_process.rb
336
+ - test/functional/eft_11_wait.rb
337
+ - test/functional/eft_12_listen.rb
338
+ - test/functional/eft_13_iterator.rb
339
+ - test/functional/eft_14_cursor.rb
340
+ - test/functional/eft_15_loop.rb
341
+ - test/functional/eft_16_if.rb
342
+ - test/functional/eft_17_equals.rb
343
+ - test/functional/eft_18_concurrent_iterator.rb
344
+ - test/functional/eft_19_reserve.rb
345
+ - test/functional/eft_1_echo.rb
346
+ - test/functional/eft_20_save.rb
347
+ - test/functional/eft_21_restore.rb
348
+ - test/functional/eft_22_noop.rb
349
+ - test/functional/eft_23_apply.rb
350
+ - test/functional/eft_24_add_branches.rb
351
+ - test/functional/eft_25_command.rb
352
+ - test/functional/eft_26_error.rb
353
+ - test/functional/eft_27_inc.rb
354
+ - test/functional/eft_28_once.rb
355
+ - test/functional/eft_29_cron.rb
356
+ - test/functional/eft_2_sequence.rb
357
+ - test/functional/eft_30_ref.rb
358
+ - test/functional/eft_31_registerp.rb
359
+ - test/functional/eft_32_lose.rb
360
+ - test/functional/eft_33_let.rb
361
+ - test/functional/eft_34_given.rb
362
+ - test/functional/eft_35_filter.rb
363
+ - test/functional/eft_36_read.rb
364
+ - test/functional/eft_3_participant.rb
365
+ - test/functional/eft_4_set.rb
366
+ - test/functional/eft_5_subprocess.rb
367
+ - test/functional/eft_6_concurrence.rb
368
+ - test/functional/eft_7_forget.rb
369
+ - test/functional/eft_8_undo.rb
370
+ - test/functional/eft_9_redo.rb
371
+ - test/functional/ft_0_worker.rb
372
+ - test/functional/ft_10_dollar.rb
373
+ - test/functional/ft_11_recursion.rb
374
+ - test/functional/ft_12_launchitem.rb
375
+ - test/functional/ft_13_variables.rb
376
+ - test/functional/ft_14_re_apply.rb
377
+ - test/functional/ft_15_timeout.rb
378
+ - test/functional/ft_16_participant_params.rb
379
+ - test/functional/ft_17_conditional.rb
380
+ - test/functional/ft_18_kill.rb
381
+ - test/functional/ft_19_participant_code.rb
382
+ - test/functional/ft_1_process_status.rb
383
+ - test/functional/ft_20_storage_participant.rb
384
+ - test/functional/ft_21_forget.rb
385
+ - test/functional/ft_22_process_definitions.rb
386
+ - test/functional/ft_23_load_defs.rb
387
+ - test/functional/ft_24_block_participant.rb
388
+ - test/functional/ft_25_receiver.rb
389
+ - test/functional/ft_26_participant_rtimeout.rb
390
+ - test/functional/ft_27_var_indirection.rb
391
+ - test/functional/ft_28_null_noop_participants.rb
392
+ - test/functional/ft_29_part_template.rb
393
+ - test/functional/ft_2_errors.rb
394
+ - test/functional/ft_30_smtp_participant.rb
395
+ - test/functional/ft_31_part_blocking.rb
396
+ - test/functional/ft_33_participant_subprocess_priority.rb
397
+ - test/functional/ft_34_cursor_rewind.rb
398
+ - test/functional/ft_35_add_service.rb
399
+ - test/functional/ft_36_storage_history.rb
400
+ - test/functional/ft_37_default_history.rb
401
+ - test/functional/ft_38_participant_more.rb
402
+ - test/functional/ft_39_wait_for.rb
403
+ - test/functional/ft_3_participant_registration.rb
404
+ - test/functional/ft_40_wait_logger.rb
405
+ - test/functional/ft_41_participants.rb
406
+ - test/functional/ft_42_storage_copy.rb
407
+ - test/functional/ft_43_participant_on_reply.rb
408
+ - test/functional/ft_44_var_participant.rb
409
+ - test/functional/ft_45_participant_accept.rb
410
+ - test/functional/ft_46_launch_single.rb
411
+ - test/functional/ft_47_wfid_generator.rb
412
+ - test/functional/ft_48_lose.rb
413
+ - test/functional/ft_49_engine_on_error.rb
414
+ - test/functional/ft_4_cancel.rb
415
+ - test/functional/ft_50_engine_config.rb
416
+ - test/functional/ft_51_misc.rb
417
+ - test/functional/ft_52_case.rb
418
+ - test/functional/ft_53_engine_on_terminate.rb
419
+ - test/functional/ft_54_patterns.rb
420
+ - test/functional/ft_55_engine_participant.rb
421
+ - test/functional/ft_56_filter_attribute.rb
422
+ - test/functional/ft_57_rev_participant.rb
423
+ - test/functional/ft_58_workitem.rb
424
+ - test/functional/ft_59_pause.rb
425
+ - test/functional/ft_5_on_error.rb
426
+ - test/functional/ft_60_code_participant.rb
427
+ - test/functional/ft_61_trailing_fields.rb
428
+ - test/functional/ft_62_exp_name_and_dollar_substitution.rb
429
+ - test/functional/ft_6_on_cancel.rb
430
+ - test/functional/ft_7_tags.rb
431
+ - test/functional/ft_8_participant_consumption.rb
432
+ - test/functional/ft_9_subprocesses.rb
433
+ - test/functional/restart_base.rb
434
+ - test/functional/rt_0_wait.rb
435
+ - test/functional/rt_1_listen.rb
436
+ - test/functional/rt_2_errors.rb
437
+ - test/functional/rt_3_once.rb
438
+ - test/functional/rt_4_cron.rb
439
+ - test/functional/rt_5_timeout.rb
440
+ - test/functional/rtest.rb
441
+ - test/functional/storage_helper.rb
442
+ - test/functional/test.rb
443
+ - test/functional/vertical.rb
444
+ - test/path_helper.rb
445
+ - test/test.rb
446
+ - test/test_helper.rb
447
+ - test/unit/storage.rb
448
+ - test/unit/storages.rb
449
+ - test/unit/test.rb
450
+ - test/unit/ut_0_ruby_reader.rb
451
+ - test/unit/ut_11_lookup.rb
452
+ - test/unit/ut_13_serializer.rb
453
+ - test/unit/ut_14_is_uri.rb
454
+ - test/unit/ut_15_util.rb
455
+ - test/unit/ut_16_reader.rb
456
+ - test/unit/ut_18_engine.rb
457
+ - test/unit/ut_19_part_template.rb
458
+ - test/unit/ut_1_fei.rb
459
+ - test/unit/ut_20_composite_storage.rb
460
+ - test/unit/ut_21_svc_participant_list.rb
461
+ - test/unit/ut_22_filter.rb
462
+ - test/unit/ut_23_svc_tracker.rb
463
+ - test/unit/ut_24_radial_reader.rb
464
+ - test/unit/ut_25_merge.rb
465
+ - test/unit/ut_3_wait_logger.rb
466
+ - test/unit/ut_4_expmap.rb
467
+ - test/unit/ut_5_tree.rb
468
+ - test/unit/ut_6_condition.rb
469
+ - test/unit/ut_7_workitem.rb
470
+ - test/unit/ut_8_tree_to_dot.rb
471
+ - test/unit/ut_9_xml_reader.rb
472
+ - ruote.gemspec
473
+ - CHANGELOG.txt
474
+ - CREDITS.txt
475
+ - LICENSE.txt
476
+ - phil.txt
477
+ - TODO.txt
478
+ - README.rdoc
479
+ homepage: http://ruote.rubyforge.org
480
+ licenses: []
481
+ post_install_message:
482
+ rdoc_options: []
483
+ require_paths:
484
+ - lib
485
+ required_ruby_version: !ruby/object:Gem::Requirement
486
+ none: false
487
+ requirements:
488
+ - - ! '>='
489
+ - !ruby/object:Gem::Version
490
+ version: '0'
491
+ required_rubygems_version: !ruby/object:Gem::Requirement
492
+ none: false
493
+ requirements:
494
+ - - ! '>='
495
+ - !ruby/object:Gem::Version
496
+ version: '0'
497
+ requirements: []
498
+ rubyforge_project: ruote
499
+ rubygems_version: 1.8.25
500
+ signing_key:
501
+ specification_version: 3
502
+ summary: an open source Ruby workflow engine
503
+ test_files: []
504
+ has_rdoc: