ruote 0.9.20 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/CHANGELOG.txt +8 -0
- data/CREDITS.txt +65 -0
- data/LICENSE.txt +21 -0
- data/README.rdoc +76 -0
- data/Rakefile +68 -0
- data/TODO.txt +287 -0
- data/examples/flickr_report.rb +108 -0
- data/examples/ruote_quickstart.rb +42 -0
- data/examples/web_first_page.rb +57 -0
- data/lib/ruote.rb +6 -0
- data/lib/ruote/context.rb +136 -0
- data/lib/ruote/engine.rb +339 -0
- data/lib/{openwfe/expressions/merge.rb → ruote/engine/process_error.rb} +35 -24
- data/lib/ruote/engine/process_status.rb +236 -0
- data/lib/ruote/evt/tracker.rb +110 -0
- data/lib/ruote/exp/command.rb +88 -0
- data/lib/ruote/exp/commanded.rb +69 -0
- data/lib/ruote/exp/condition.rb +120 -0
- data/lib/ruote/exp/expression_map.rb +103 -0
- data/lib/ruote/exp/fe_add_branches.rb +138 -0
- data/lib/ruote/exp/fe_apply.rb +85 -0
- data/lib/ruote/exp/fe_cancel_process.rb +74 -0
- data/lib/ruote/exp/fe_command.rb +163 -0
- data/lib/ruote/exp/fe_concurrence.rb +273 -0
- data/lib/ruote/exp/fe_concurrent_iterator.rb +204 -0
- data/lib/ruote/exp/fe_cron.rb +141 -0
- data/lib/ruote/exp/fe_cursor.rb +270 -0
- data/lib/ruote/exp/fe_define.rb +112 -0
- data/lib/{openwfe/engine/fs_engine.rb → ruote/exp/fe_echo.rb} +24 -18
- data/lib/ruote/exp/fe_equals.rb +115 -0
- data/lib/ruote/exp/fe_error.rb +90 -0
- data/lib/ruote/exp/fe_forget.rb +81 -0
- data/lib/ruote/exp/fe_if.rb +124 -0
- data/lib/ruote/exp/fe_inc.rb +205 -0
- data/lib/ruote/exp/fe_iterator.rb +193 -0
- data/lib/ruote/exp/fe_listen.rb +197 -0
- data/lib/{openwfe/engine.rb → ruote/exp/fe_noop.rb} +20 -3
- data/lib/ruote/exp/fe_participant.rb +202 -0
- data/lib/ruote/exp/fe_redo.rb +83 -0
- data/lib/ruote/exp/fe_reserve.rb +126 -0
- data/lib/ruote/exp/fe_restore.rb +102 -0
- data/lib/ruote/exp/fe_save.rb +79 -0
- data/lib/ruote/exp/fe_sequence.rb +60 -0
- data/lib/ruote/exp/fe_set.rb +160 -0
- data/lib/ruote/exp/fe_subprocess.rb +203 -0
- data/lib/{openwfe/expool/errors.rb → ruote/exp/fe_undo.rb} +28 -30
- data/lib/ruote/exp/fe_wait.rb +92 -0
- data/lib/ruote/exp/fe_when.rb +214 -0
- data/lib/ruote/exp/flowexpression.rb +624 -0
- data/lib/{openwfe/omixins.rb → ruote/exp/iterator.rb} +41 -23
- data/lib/ruote/exp/merge.rb +66 -0
- data/lib/{openwfe/util/ometa.rb → ruote/exp/raw.rb} +16 -16
- data/lib/ruote/exp/ro_attributes.rb +203 -0
- data/lib/ruote/exp/ro_persist.rb +139 -0
- data/lib/ruote/exp/ro_variables.rb +192 -0
- data/lib/ruote/fei.rb +131 -0
- data/lib/{openwfe/version.rb → ruote/id/mnemo_wfid_generator.rb} +17 -3
- data/lib/{openwfe/extras/engine/dm_engine.rb → ruote/id/wfid_generator.rb} +34 -22
- data/lib/ruote/log/fs_history.rb +181 -0
- data/lib/ruote/log/test_logger.rb +254 -0
- data/lib/ruote/log/wait_logger.rb +67 -0
- data/lib/ruote/parser.rb +205 -0
- data/lib/ruote/parser/ruby_dsl.rb +85 -0
- data/lib/ruote/parser/xml.rb +92 -0
- data/lib/ruote/part/block_participant.rb +101 -0
- data/lib/ruote/part/dispatch_pool.rb +84 -0
- data/lib/ruote/part/hash_participant.rb +91 -0
- data/lib/ruote/part/local_participant.rb +52 -0
- data/lib/{openwfe/engine/tc_engine.rb → ruote/part/no_op_participant.rb} +19 -14
- data/lib/{openwfe/engine/tt_engine.rb → ruote/part/null_participant.rb} +17 -18
- data/lib/ruote/part/participant_list.rb +201 -0
- data/lib/ruote/part/smtp_participant.rb +135 -0
- data/lib/ruote/part/storage_participant.rb +140 -0
- data/lib/{openwfe/util/irb.rb → ruote/part/template.rb} +23 -31
- data/lib/ruote/participant.rb +6 -0
- data/lib/ruote/receiver/base.rb +73 -0
- data/lib/ruote/storage/base.rb +210 -0
- data/lib/ruote/storage/fs_storage.rb +89 -0
- data/lib/ruote/storage/hash_storage.rb +171 -0
- data/lib/ruote/tree_dot.rb +85 -0
- data/lib/{openwfe → ruote}/util/dollar.rb +47 -63
- data/lib/{openwfe/extras/singlecon.rb → ruote/util/hashdot.rb} +40 -19
- data/lib/ruote/util/look.rb +129 -0
- data/lib/ruote/util/lookup.rb +92 -0
- data/lib/ruote/util/misc.rb +119 -0
- data/lib/ruote/util/ometa.rb +55 -0
- data/lib/ruote/util/serializer.rb +103 -0
- data/lib/ruote/util/time.rb +90 -0
- data/lib/ruote/util/tree.rb +58 -0
- data/lib/{openwfe → ruote}/util/treechecker.rb +10 -16
- data/lib/ruote/worker.rb +375 -0
- data/lib/ruote/workitem.rb +176 -0
- data/phil.txt +14 -0
- data/ruote.gemspec +278 -0
- data/test/README.rdoc +15 -0
- data/test/bm/ci.rb +55 -0
- data/test/bm/ici.rb +71 -0
- data/test/bm/juuman.rb +54 -0
- data/test/bm/load_26c.rb +25 -7
- data/test/bm/mega.rb +64 -0
- data/test/bm/seq_thousand.rb +31 -0
- data/test/bm/t.rb +35 -0
- data/test/functional/base.rb +88 -99
- data/test/functional/concurrent_base.rb +91 -0
- data/test/functional/crunner.rb +26 -0
- data/test/functional/ct_0_concurrence.rb +68 -0
- data/test/functional/ct_1_iterator.rb +61 -0
- data/test/functional/ct_2_cancel.rb +69 -0
- data/test/functional/eft_0_process_definition.rb +46 -15
- data/test/functional/eft_10_cancel_process.rb +46 -0
- data/test/functional/eft_11_wait.rb +97 -0
- data/test/functional/eft_12_listen.rb +271 -0
- data/test/functional/eft_13_iterator.rb +267 -0
- data/test/functional/eft_14_cursor.rb +278 -0
- data/test/functional/eft_15_loop.rb +67 -0
- data/test/functional/eft_16_if.rb +171 -0
- data/test/functional/eft_17_equals.rb +55 -0
- data/test/functional/eft_18_concurrent_iterator.rb +361 -0
- data/test/functional/eft_19_reserve.rb +136 -0
- data/test/functional/eft_1_echo.rb +59 -0
- data/test/functional/eft_20_save.rb +76 -0
- data/test/functional/eft_21_restore.rb +61 -0
- data/test/functional/eft_22_noop.rb +28 -0
- data/test/functional/eft_23_apply.rb +145 -0
- data/test/functional/eft_24_add_branches.rb +86 -0
- data/test/functional/eft_25_command.rb +28 -0
- data/test/functional/eft_26_error.rb +77 -0
- data/test/functional/eft_27_inc.rb +279 -0
- data/test/functional/eft_28_when.rb +109 -0
- data/test/functional/eft_29_cron.rb +64 -0
- data/test/functional/eft_2_sequence.rb +38 -27
- data/test/functional/eft_3_participant.rb +122 -0
- data/test/functional/eft_4_set.rb +230 -0
- data/test/functional/eft_5_subprocess.rb +164 -0
- data/test/functional/eft_6_concurrence.rb +279 -0
- data/test/functional/eft_7_forget.rb +61 -0
- data/test/functional/eft_8_undo.rb +78 -0
- data/test/functional/eft_9_redo.rb +46 -0
- data/test/functional/ft_0_worker.rb +46 -0
- data/test/functional/ft_10_dollar.rb +90 -0
- data/test/functional/ft_11_recursion.rb +111 -0
- data/test/functional/ft_12_launchitem.rb +37 -0
- data/test/functional/ft_13_variables.rb +131 -0
- data/test/functional/ft_14_re_apply.rb +133 -0
- data/test/functional/ft_15_timeout.rb +205 -0
- data/test/functional/ft_16_participant_params.rb +47 -0
- data/test/functional/ft_17_conditional.rb +76 -0
- data/test/functional/ft_18_kill.rb +85 -0
- data/test/functional/ft_19_alias.rb +33 -0
- data/test/functional/ft_1_process_status.rb +410 -20
- data/test/functional/ft_20_storage_participant.rb +46 -0
- data/test/functional/ft_21_forget.rb +42 -0
- data/test/functional/ft_22_process_definitions.rb +80 -0
- data/test/functional/ft_23_load_defs.rb +55 -0
- data/test/functional/ft_24_block_participants.rb +59 -0
- data/test/functional/ft_25_receiver.rb +87 -0
- data/test/functional/ft_26_participant_timeout.rb +49 -0
- data/test/functional/ft_27_var_indirection.rb +93 -0
- data/test/functional/ft_28_null_noop_participants.rb +51 -0
- data/test/functional/ft_29_part_template.rb +78 -0
- data/test/functional/ft_2_errors.rb +320 -0
- data/test/functional/ft_30_smtp_participant.rb +69 -0
- data/test/functional/ft_31_part_blocking.rb +70 -0
- data/test/functional/ft_32_history.rb +184 -0
- data/test/functional/ft_33_participant_subprocess_priority.rb +32 -0
- data/test/functional/ft_34_cursor_rewind.rb +98 -0
- data/test/functional/ft_35_add_service.rb +48 -0
- data/test/functional/ft_3_participant_registration.rb +107 -0
- data/test/functional/ft_4_cancel.rb +72 -0
- data/test/functional/ft_5_on_error.rb +155 -0
- data/test/functional/ft_6_on_cancel.rb +165 -0
- data/test/functional/ft_7_tags.rb +88 -0
- data/test/functional/ft_8_participant_consumption.rb +75 -0
- data/test/functional/ft_9_subprocesses.rb +145 -0
- data/test/functional/restart_base.rb +17 -26
- data/test/functional/rt_0_wait.rb +55 -0
- data/test/functional/rt_1_listen.rb +56 -0
- data/test/functional/rt_2_errors.rb +56 -0
- data/test/functional/rt_3_when.rb +70 -0
- data/test/functional/rt_4_cron.rb +63 -0
- data/test/functional/rt_5_timeout.rb +60 -0
- data/test/functional/rtest.rb +8 -0
- data/test/functional/storage_helper.rb +79 -0
- data/test/functional/test.rb +23 -11
- data/test/mpc_test.rb +29 -0
- data/test/path_helper.rb +4 -2
- data/test/pdef.xml +7 -0
- data/test/test_helper.rb +2 -30
- data/test/unit/storages.rb +13 -0
- data/test/unit/test.rb +2 -11
- data/test/unit/ut_0_ruby_parser.rb +120 -0
- data/test/unit/ut_11_lookup.rb +51 -0
- data/test/unit/ut_13_serializer.rb +65 -0
- data/test/unit/ut_14_is_uri.rb +28 -0
- data/test/unit/ut_15_util.rb +34 -0
- data/test/unit/ut_16_parser.rb +100 -0
- data/test/unit/ut_17_storage.rb +122 -0
- data/test/unit/ut_1_fei.rb +20 -0
- data/test/unit/ut_2_wfidgen.rb +21 -0
- data/test/unit/ut_3_wait_logger.rb +41 -0
- data/test/unit/ut_4_expmap.rb +20 -0
- data/test/unit/ut_5_tree.rb +54 -0
- data/test/unit/ut_6_condition.rb +138 -0
- data/test/unit/ut_7_workitem.rb +21 -0
- data/test/unit/ut_8_tree_to_dot.rb +72 -0
- data/test/unit/ut_9_xml_parser.rb +61 -0
- metadata +246 -253
- data/README.txt +0 -36
- data/bin/validate-workflow.rb +0 -89
- data/examples/about_state.rb +0 -81
- data/examples/bigflow.rb +0 -19
- data/examples/csv_weather.rb +0 -23
- data/examples/engine_template.rb +0 -222
- data/examples/flowtracing.rb +0 -24
- data/examples/homeworkreview.rb +0 -68
- data/examples/kotoba.rb +0 -22
- data/examples/mano_tracker.rb +0 -172
- data/examples/openwferu.rb +0 -60
- data/examples/quickstart.rb +0 -87
- data/examples/quotereporter.rb +0 -150
- data/examples/simple.rb +0 -56
- data/lib/openwfe.rb +0 -27
- data/lib/openwfe/contextual.rb +0 -120
- data/lib/openwfe/def.rb +0 -37
- data/lib/openwfe/engine/engine.rb +0 -455
- data/lib/openwfe/engine/expool_methods.rb +0 -113
- data/lib/openwfe/engine/file_persisted_engine.rb +0 -84
- data/lib/openwfe/engine/launch_methods.rb +0 -245
- data/lib/openwfe/engine/listener_methods.rb +0 -128
- data/lib/openwfe/engine/lookup_methods.rb +0 -156
- data/lib/openwfe/engine/participant_methods.rb +0 -141
- data/lib/openwfe/engine/status_methods.rb +0 -382
- data/lib/openwfe/engine/update_exp_methods.rb +0 -119
- data/lib/openwfe/expool/def_parser.rb +0 -196
- data/lib/openwfe/expool/errorjournal.rb +0 -294
- data/lib/openwfe/expool/expool_pause_methods.rb +0 -87
- data/lib/openwfe/expool/expressionpool.rb +0 -941
- data/lib/openwfe/expool/expstorage.rb +0 -370
- data/lib/openwfe/expool/fs_expstorage.rb +0 -302
- data/lib/openwfe/expool/history.rb +0 -278
- data/lib/openwfe/expool/journal.rb +0 -210
- data/lib/openwfe/expool/journal_replay.rb +0 -305
- data/lib/openwfe/expool/representation.rb +0 -105
- data/lib/openwfe/expool/tc_expstorage.rb +0 -239
- data/lib/openwfe/expool/threaded_expstorage.rb +0 -163
- data/lib/openwfe/expool/tt_expstorage.rb +0 -55
- data/lib/openwfe/expool/wfidgen.rb +0 -370
- data/lib/openwfe/expool/yaml_errorjournal.rb +0 -187
- data/lib/openwfe/expressions/condition.rb +0 -226
- data/lib/openwfe/expressions/environment.rb +0 -232
- data/lib/openwfe/expressions/expression_map.rb +0 -248
- data/lib/openwfe/expressions/expression_tree.rb +0 -265
- data/lib/openwfe/expressions/fe_cancel.rb +0 -89
- data/lib/openwfe/expressions/fe_command.rb +0 -237
- data/lib/openwfe/expressions/fe_concurrence.rb +0 -599
- data/lib/openwfe/expressions/fe_cron.rb +0 -197
- data/lib/openwfe/expressions/fe_cursor.rb +0 -200
- data/lib/openwfe/expressions/fe_define.rb +0 -146
- data/lib/openwfe/expressions/fe_do.rb +0 -181
- data/lib/openwfe/expressions/fe_equals.rb +0 -273
- data/lib/openwfe/expressions/fe_error.rb +0 -103
- data/lib/openwfe/expressions/fe_filter.rb +0 -112
- data/lib/openwfe/expressions/fe_filter_definition.rb +0 -151
- data/lib/openwfe/expressions/fe_fqv.rb +0 -231
- data/lib/openwfe/expressions/fe_http.rb +0 -198
- data/lib/openwfe/expressions/fe_if.rb +0 -287
- data/lib/openwfe/expressions/fe_iterator.rb +0 -128
- data/lib/openwfe/expressions/fe_listen.rb +0 -327
- data/lib/openwfe/expressions/fe_losfor.rb +0 -102
- data/lib/openwfe/expressions/fe_misc.rb +0 -374
- data/lib/openwfe/expressions/fe_participant.rb +0 -231
- data/lib/openwfe/expressions/fe_reserve.rb +0 -192
- data/lib/openwfe/expressions/fe_save.rb +0 -255
- data/lib/openwfe/expressions/fe_sequence.rb +0 -102
- data/lib/openwfe/expressions/fe_set.rb +0 -121
- data/lib/openwfe/expressions/fe_step.rb +0 -146
- data/lib/openwfe/expressions/fe_subprocess.rb +0 -150
- data/lib/openwfe/expressions/fe_timeout.rb +0 -107
- data/lib/openwfe/expressions/fe_wait.rb +0 -183
- data/lib/openwfe/expressions/fe_when.rb +0 -118
- data/lib/openwfe/expressions/filter.rb +0 -85
- data/lib/openwfe/expressions/flowexpression.rb +0 -872
- data/lib/openwfe/expressions/iterator.rb +0 -206
- data/lib/openwfe/expressions/raw.rb +0 -330
- data/lib/openwfe/expressions/rprocdef.rb +0 -373
- data/lib/openwfe/expressions/time.rb +0 -314
- data/lib/openwfe/expressions/timeout.rb +0 -184
- data/lib/openwfe/expressions/value.rb +0 -100
- data/lib/openwfe/extras/engine/ar_engine.rb +0 -58
- data/lib/openwfe/extras/engine/db_persisted_engine.rb +0 -74
- data/lib/openwfe/extras/expool/ar_expstorage.rb +0 -337
- data/lib/openwfe/extras/expool/db_errorjournal.rb +0 -165
- data/lib/openwfe/extras/expool/db_expstorage.rb +0 -73
- data/lib/openwfe/extras/expool/db_history.rb +0 -163
- data/lib/openwfe/extras/expool/dm_expstorage.rb +0 -327
- data/lib/openwfe/extras/listeners/jabber_listeners.rb +0 -102
- data/lib/openwfe/extras/listeners/jabberlisteners.rb +0 -26
- data/lib/openwfe/extras/listeners/sqs_listeners.rb +0 -128
- data/lib/openwfe/extras/misc/activityfeed.rb +0 -249
- data/lib/openwfe/extras/misc/basecamp.rb +0 -485
- data/lib/openwfe/extras/misc/jabber_common.rb +0 -122
- data/lib/openwfe/extras/participants/active_participants.rb +0 -724
- data/lib/openwfe/extras/participants/active_resource_participants.rb +0 -213
- data/lib/openwfe/extras/participants/activeparticipants.rb +0 -3
- data/lib/openwfe/extras/participants/ar_participants.rb +0 -285
- data/lib/openwfe/extras/participants/atomfeed_participants.rb +0 -158
- data/lib/openwfe/extras/participants/atompub_participants.rb +0 -252
- data/lib/openwfe/extras/participants/basecamp_participants.rb +0 -73
- data/lib/openwfe/extras/participants/decision_participants.rb +0 -113
- data/lib/openwfe/extras/participants/jabber_participants.rb +0 -147
- data/lib/openwfe/extras/participants/jabberparticipants.rb +0 -3
- data/lib/openwfe/extras/participants/sqs_participants.rb +0 -108
- data/lib/openwfe/extras/participants/twitter_participants.rb +0 -162
- data/lib/openwfe/filterdef.rb +0 -277
- data/lib/openwfe/flowexpressionid.rb +0 -396
- data/lib/openwfe/listeners/listener.rb +0 -86
- data/lib/openwfe/listeners/listeners.rb +0 -135
- data/lib/openwfe/logging.rb +0 -108
- data/lib/openwfe/participants.rb +0 -5
- data/lib/openwfe/participants/mail_participants.rb +0 -216
- data/lib/openwfe/participants/participant.rb +0 -142
- data/lib/openwfe/participants/participant_map.rb +0 -245
- data/lib/openwfe/participants/participants.rb +0 -381
- data/lib/openwfe/participants/soap_participants.rb +0 -121
- data/lib/openwfe/participants/store_participants.rb +0 -249
- data/lib/openwfe/participants/yaml_filestorage.rb +0 -216
- data/lib/openwfe/representations.rb +0 -770
- data/lib/openwfe/rexml.rb +0 -44
- data/lib/openwfe/rudefinitions.rb +0 -114
- data/lib/openwfe/service.rb +0 -92
- data/lib/openwfe/tools/flowtracer.rb +0 -63
- data/lib/openwfe/util/json.rb +0 -55
- data/lib/openwfe/util/observable.rb +0 -119
- data/lib/openwfe/util/workqueue.rb +0 -125
- data/lib/openwfe/util/xml.rb +0 -270
- data/lib/openwfe/utils.rb +0 -484
- data/lib/openwfe/workitem.rb +0 -541
- data/lib/openwfe/worklist/storelocks.rb +0 -277
- data/lib/openwfe/worklist/storeparticipant.rb +0 -6
- data/lib/openwfe/worklist/worklist.rb +0 -283
- data/lib/pooltool.ru +0 -311
- data/test/ar_test_connection.rb +0 -63
- data/test/bm/fatxml.rb +0 -70
- data/test/dm_test_connection.rb +0 -11
- data/test/extras/base.rb +0 -3
- data/test/extras/et_0_sqs.rb +0 -37
- data/test/extras/et_jabber_test.rb +0 -226
- data/test/extras/test.rb +0 -16
- data/test/functional/db_ft_0_ar_participants.rb +0 -136
- data/test/functional/eft_10_unset.rb +0 -60
- data/test/functional/eft_11_sleep.rb +0 -95
- data/test/functional/eft_12_wait.rb +0 -57
- data/test/functional/eft_13_cursor.rb +0 -139
- data/test/functional/eft_14_loop.rb +0 -36
- data/test/functional/eft_15_undo.rb +0 -77
- data/test/functional/eft_16_redo.rb +0 -88
- data/test/functional/eft_1_print.rb +0 -57
- data/test/functional/eft_3_equals.rb +0 -98
- data/test/functional/eft_4_if.rb +0 -96
- data/test/functional/eft_5_eval.rb +0 -89
- data/test/functional/eft_6_reval.rb +0 -101
- data/test/functional/eft_7_exp.rb +0 -47
- data/test/functional/eft_8_log.rb +0 -50
- data/test/functional/eft_9_set.rb +0 -132
- data/test/functional/engine_helper.rb +0 -122
- data/test/functional/ft_0_vars_at_launch.rb +0 -27
- data/test/functional/ft_2_file_listener.rb +0 -45
- data/test/functional/ft_3_on_cancel.rb +0 -171
- data/test/functional/ft_4_on_error.rb +0 -220
- data/test/functional/ft_5_process_uri.rb +0 -82
- data/test/functional/ft_6_process_status.rb +0 -62
- data/test/functional/ft_7_parameters.rb +0 -103
- data/test/functional/ft_8_dollar.rb +0 -53
- data/test/functional/ft_9_register_participants.rb +0 -119
- data/test/functional/rft_0_sleep.rb +0 -76
- data/test/unit/ut_0_fei.rb +0 -166
- data/test/unit/ut_10_lookup_attribute.rb +0 -86
- data/test/unit/ut_11_filter.rb +0 -124
- data/test/unit/ut_12_conditional.rb +0 -162
- data/test/unit/ut_13_xmlutil.rb +0 -57
- data/test/unit/ut_14_var_field_lookup.rb +0 -85
- data/test/unit/ut_15_fe_att_lookup.rb +0 -55
- data/test/unit/ut_16_expstorage_findexp.rb +0 -38
- data/test/unit/ut_17_representations.rb +0 -330
- data/test/unit/ut_17b_representations_hash.rb +0 -97
- data/test/unit/ut_18_store_lock.rb +0 -77
- data/test/unit/ut_1_wfid.rb +0 -104
- data/test/unit/ut_2_utils.rb +0 -53
- data/test/unit/ut_3_expmap.rb +0 -65
- data/test/unit/ut_4_fulldup.rb +0 -163
- data/test/unit/ut_5_observable.rb +0 -132
- data/test/unit/ut_6_treechecker.rb +0 -101
- data/test/unit/ut_7_parser_ruby.rb +0 -344
- data/test/unit/ut_7b_parser_ruby.rb +0 -56
- data/test/unit/ut_8_parser_description.rb +0 -77
- data/test/unit/ut_9_workitem.rb +0 -72
@@ -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/parser/xml'
|
11
|
+
|
12
|
+
|
13
|
+
class RubyParserTest < Test::Unit::TestCase
|
14
|
+
|
15
|
+
def test_sequence
|
16
|
+
|
17
|
+
tree = Ruote::XmlParser.parse(%{
|
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::XmlParser.parse(%{
|
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::XmlParser.parse(%{
|
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
CHANGED
@@ -1,30 +1,30 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruote
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Mettraux
|
8
|
-
-
|
8
|
+
- Kenneth Kalmer
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-
|
13
|
+
date: 2009-12-31 00:00:00 +09:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
|
-
name:
|
17
|
+
name: rufus-cloche
|
18
18
|
type: :runtime
|
19
19
|
version_requirement:
|
20
20
|
version_requirements: !ruby/object:Gem::Requirement
|
21
21
|
requirements:
|
22
22
|
- - ">="
|
23
23
|
- !ruby/object:Gem::Version
|
24
|
-
version:
|
24
|
+
version: 0.1.6
|
25
25
|
version:
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
|
-
name: rufus-
|
27
|
+
name: rufus-dollar
|
28
28
|
type: :runtime
|
29
29
|
version_requirement:
|
30
30
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
version: "0"
|
35
35
|
version:
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
|
-
name: rufus-
|
37
|
+
name: rufus-json
|
38
38
|
type: :runtime
|
39
39
|
version_requirement:
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -44,7 +44,7 @@ dependencies:
|
|
44
44
|
version: "0"
|
45
45
|
version:
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
|
-
name: rufus-
|
47
|
+
name: rufus-lru
|
48
48
|
type: :runtime
|
49
49
|
version_requirement:
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -54,282 +54,281 @@ dependencies:
|
|
54
54
|
version: "0"
|
55
55
|
version:
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
|
-
name: rufus-
|
57
|
+
name: rufus-mnemo
|
58
58
|
type: :runtime
|
59
59
|
version_requirement:
|
60
60
|
version_requirements: !ruby/object:Gem::Requirement
|
61
61
|
requirements:
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version:
|
64
|
+
version: 1.1.0
|
65
65
|
version:
|
66
66
|
- !ruby/object:Gem::Dependency
|
67
|
-
name: rufus-
|
67
|
+
name: rufus-scheduler
|
68
68
|
type: :runtime
|
69
69
|
version_requirement:
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
74
|
+
version: 2.0.3
|
75
75
|
version:
|
76
76
|
- !ruby/object:Gem::Dependency
|
77
|
-
name: rufus-
|
77
|
+
name: rufus-treechecker
|
78
78
|
type: :runtime
|
79
79
|
version_requirement:
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 1.0.3
|
85
|
+
version:
|
86
|
+
- !ruby/object:Gem::Dependency
|
87
|
+
name: json
|
88
|
+
type: :development
|
89
|
+
version_requirement:
|
80
90
|
version_requirements: !ruby/object:Gem::Requirement
|
81
91
|
requirements:
|
82
92
|
- - ">="
|
83
93
|
- !ruby/object:Gem::Version
|
84
94
|
version: "0"
|
85
95
|
version:
|
86
|
-
|
87
|
-
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: yard
|
98
|
+
type: :development
|
99
|
+
version_requirement:
|
100
|
+
version_requirements: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: "0"
|
105
|
+
version:
|
106
|
+
description: "\n\
|
107
|
+
ruote is an open source ruby workflow engine.\n "
|
108
|
+
email: jmettraux@gmail.com
|
88
109
|
executables: []
|
89
110
|
|
90
111
|
extensions: []
|
91
112
|
|
92
113
|
extra_rdoc_files:
|
93
|
-
-
|
114
|
+
- LICENSE.txt
|
115
|
+
- README.rdoc
|
94
116
|
files:
|
95
|
-
-
|
96
|
-
-
|
97
|
-
-
|
98
|
-
-
|
99
|
-
-
|
100
|
-
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
- lib/
|
106
|
-
- lib/
|
107
|
-
- lib/
|
108
|
-
- lib/
|
109
|
-
- lib/
|
110
|
-
- lib/
|
111
|
-
- lib/
|
112
|
-
- lib/
|
113
|
-
- lib/
|
114
|
-
- lib/
|
115
|
-
- lib/
|
116
|
-
- lib/
|
117
|
-
- lib/
|
118
|
-
- lib/
|
119
|
-
- lib/
|
120
|
-
- lib/
|
121
|
-
- lib/
|
122
|
-
- lib/
|
123
|
-
- lib/
|
124
|
-
- lib/
|
125
|
-
- lib/
|
126
|
-
- lib/
|
127
|
-
- lib/
|
128
|
-
- lib/
|
129
|
-
- lib/
|
130
|
-
- lib/
|
131
|
-
- lib/
|
132
|
-
- lib/
|
133
|
-
- lib/
|
134
|
-
- lib/
|
135
|
-
- lib/
|
136
|
-
- lib/
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
154
|
-
- lib/
|
155
|
-
- lib/
|
156
|
-
- lib/
|
157
|
-
- lib/
|
158
|
-
- lib/
|
159
|
-
- lib/
|
160
|
-
- lib/
|
161
|
-
- lib/
|
162
|
-
- lib/
|
163
|
-
- lib/
|
164
|
-
- lib/
|
165
|
-
- lib/
|
166
|
-
- lib/
|
167
|
-
- lib/
|
168
|
-
- lib/
|
169
|
-
- lib/
|
170
|
-
- lib/
|
171
|
-
- lib/
|
172
|
-
- lib/
|
173
|
-
- lib/
|
174
|
-
- lib/
|
175
|
-
- lib/
|
176
|
-
- lib/
|
177
|
-
- lib/
|
178
|
-
- lib/
|
179
|
-
- lib/
|
180
|
-
- lib/
|
181
|
-
- lib/
|
182
|
-
- lib/
|
183
|
-
- lib/
|
184
|
-
- lib/
|
185
|
-
- lib/
|
186
|
-
- lib/
|
187
|
-
- lib/
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
- lib/openwfe/extras/participants/activeparticipants.rb
|
195
|
-
- lib/openwfe/extras/participants/ar_participants.rb
|
196
|
-
- lib/openwfe/extras/participants/atomfeed_participants.rb
|
197
|
-
- lib/openwfe/extras/participants/atompub_participants.rb
|
198
|
-
- lib/openwfe/extras/participants/basecamp_participants.rb
|
199
|
-
- lib/openwfe/extras/participants/decision_participants.rb
|
200
|
-
- lib/openwfe/extras/participants/jabber_participants.rb
|
201
|
-
- lib/openwfe/extras/participants/jabberparticipants.rb
|
202
|
-
- lib/openwfe/extras/participants/sqs_participants.rb
|
203
|
-
- lib/openwfe/extras/participants/twitter_participants.rb
|
204
|
-
- lib/openwfe/extras/singlecon.rb
|
205
|
-
- lib/openwfe/filterdef.rb
|
206
|
-
- lib/openwfe/flowexpressionid.rb
|
207
|
-
- lib/openwfe/listeners
|
208
|
-
- lib/openwfe/listeners/listener.rb
|
209
|
-
- lib/openwfe/listeners/listeners.rb
|
210
|
-
- lib/openwfe/logging.rb
|
211
|
-
- lib/openwfe/omixins.rb
|
212
|
-
- lib/openwfe/participants
|
213
|
-
- lib/openwfe/participants/mail_participants.rb
|
214
|
-
- lib/openwfe/participants/participant.rb
|
215
|
-
- lib/openwfe/participants/participant_map.rb
|
216
|
-
- lib/openwfe/participants/participants.rb
|
217
|
-
- lib/openwfe/participants/soap_participants.rb
|
218
|
-
- lib/openwfe/participants/store_participants.rb
|
219
|
-
- lib/openwfe/participants/yaml_filestorage.rb
|
220
|
-
- lib/openwfe/participants.rb
|
221
|
-
- lib/openwfe/representations.rb
|
222
|
-
- lib/openwfe/rexml.rb
|
223
|
-
- lib/openwfe/rudefinitions.rb
|
224
|
-
- lib/openwfe/service.rb
|
225
|
-
- lib/openwfe/tools
|
226
|
-
- lib/openwfe/tools/flowtracer.rb
|
227
|
-
- lib/openwfe/util
|
228
|
-
- lib/openwfe/util/dollar.rb
|
229
|
-
- lib/openwfe/util/irb.rb
|
230
|
-
- lib/openwfe/util/json.rb
|
231
|
-
- lib/openwfe/util/observable.rb
|
232
|
-
- lib/openwfe/util/ometa.rb
|
233
|
-
- lib/openwfe/util/treechecker.rb
|
234
|
-
- lib/openwfe/util/workqueue.rb
|
235
|
-
- lib/openwfe/util/xml.rb
|
236
|
-
- lib/openwfe/utils.rb
|
237
|
-
- lib/openwfe/version.rb
|
238
|
-
- lib/openwfe/workitem.rb
|
239
|
-
- lib/openwfe/worklist
|
240
|
-
- lib/openwfe/worklist/storelocks.rb
|
241
|
-
- lib/openwfe/worklist/storeparticipant.rb
|
242
|
-
- lib/openwfe/worklist/worklist.rb
|
243
|
-
- lib/openwfe.rb
|
244
|
-
- lib/pooltool.ru
|
245
|
-
- test/ar_test_connection.rb
|
246
|
-
- test/bm
|
247
|
-
- test/bm/fatxml.rb
|
117
|
+
- .gitignore
|
118
|
+
- CHANGELOG.txt
|
119
|
+
- CREDITS.txt
|
120
|
+
- LICENSE.txt
|
121
|
+
- README.rdoc
|
122
|
+
- Rakefile
|
123
|
+
- TODO.txt
|
124
|
+
- examples/flickr_report.rb
|
125
|
+
- examples/ruote_quickstart.rb
|
126
|
+
- examples/web_first_page.rb
|
127
|
+
- lib/ruote.rb
|
128
|
+
- lib/ruote/context.rb
|
129
|
+
- lib/ruote/engine.rb
|
130
|
+
- lib/ruote/engine/process_error.rb
|
131
|
+
- lib/ruote/engine/process_status.rb
|
132
|
+
- lib/ruote/evt/tracker.rb
|
133
|
+
- lib/ruote/exp/command.rb
|
134
|
+
- lib/ruote/exp/commanded.rb
|
135
|
+
- lib/ruote/exp/condition.rb
|
136
|
+
- lib/ruote/exp/expression_map.rb
|
137
|
+
- lib/ruote/exp/fe_add_branches.rb
|
138
|
+
- lib/ruote/exp/fe_apply.rb
|
139
|
+
- lib/ruote/exp/fe_cancel_process.rb
|
140
|
+
- lib/ruote/exp/fe_command.rb
|
141
|
+
- lib/ruote/exp/fe_concurrence.rb
|
142
|
+
- lib/ruote/exp/fe_concurrent_iterator.rb
|
143
|
+
- lib/ruote/exp/fe_cron.rb
|
144
|
+
- lib/ruote/exp/fe_cursor.rb
|
145
|
+
- lib/ruote/exp/fe_define.rb
|
146
|
+
- lib/ruote/exp/fe_echo.rb
|
147
|
+
- lib/ruote/exp/fe_equals.rb
|
148
|
+
- lib/ruote/exp/fe_error.rb
|
149
|
+
- lib/ruote/exp/fe_forget.rb
|
150
|
+
- lib/ruote/exp/fe_if.rb
|
151
|
+
- lib/ruote/exp/fe_inc.rb
|
152
|
+
- lib/ruote/exp/fe_iterator.rb
|
153
|
+
- lib/ruote/exp/fe_listen.rb
|
154
|
+
- lib/ruote/exp/fe_noop.rb
|
155
|
+
- lib/ruote/exp/fe_participant.rb
|
156
|
+
- lib/ruote/exp/fe_redo.rb
|
157
|
+
- lib/ruote/exp/fe_reserve.rb
|
158
|
+
- lib/ruote/exp/fe_restore.rb
|
159
|
+
- lib/ruote/exp/fe_save.rb
|
160
|
+
- lib/ruote/exp/fe_sequence.rb
|
161
|
+
- lib/ruote/exp/fe_set.rb
|
162
|
+
- lib/ruote/exp/fe_subprocess.rb
|
163
|
+
- lib/ruote/exp/fe_undo.rb
|
164
|
+
- lib/ruote/exp/fe_wait.rb
|
165
|
+
- lib/ruote/exp/fe_when.rb
|
166
|
+
- lib/ruote/exp/flowexpression.rb
|
167
|
+
- lib/ruote/exp/iterator.rb
|
168
|
+
- lib/ruote/exp/merge.rb
|
169
|
+
- lib/ruote/exp/raw.rb
|
170
|
+
- lib/ruote/exp/ro_attributes.rb
|
171
|
+
- lib/ruote/exp/ro_persist.rb
|
172
|
+
- lib/ruote/exp/ro_variables.rb
|
173
|
+
- lib/ruote/fei.rb
|
174
|
+
- lib/ruote/id/mnemo_wfid_generator.rb
|
175
|
+
- lib/ruote/id/wfid_generator.rb
|
176
|
+
- lib/ruote/log/fs_history.rb
|
177
|
+
- lib/ruote/log/test_logger.rb
|
178
|
+
- lib/ruote/log/wait_logger.rb
|
179
|
+
- lib/ruote/parser.rb
|
180
|
+
- lib/ruote/parser/ruby_dsl.rb
|
181
|
+
- lib/ruote/parser/xml.rb
|
182
|
+
- lib/ruote/part/block_participant.rb
|
183
|
+
- lib/ruote/part/dispatch_pool.rb
|
184
|
+
- lib/ruote/part/hash_participant.rb
|
185
|
+
- lib/ruote/part/local_participant.rb
|
186
|
+
- lib/ruote/part/no_op_participant.rb
|
187
|
+
- lib/ruote/part/null_participant.rb
|
188
|
+
- lib/ruote/part/participant_list.rb
|
189
|
+
- lib/ruote/part/smtp_participant.rb
|
190
|
+
- lib/ruote/part/storage_participant.rb
|
191
|
+
- lib/ruote/part/template.rb
|
192
|
+
- lib/ruote/participant.rb
|
193
|
+
- lib/ruote/receiver/base.rb
|
194
|
+
- lib/ruote/storage/base.rb
|
195
|
+
- lib/ruote/storage/fs_storage.rb
|
196
|
+
- lib/ruote/storage/hash_storage.rb
|
197
|
+
- lib/ruote/tree_dot.rb
|
198
|
+
- lib/ruote/util/dollar.rb
|
199
|
+
- lib/ruote/util/hashdot.rb
|
200
|
+
- lib/ruote/util/look.rb
|
201
|
+
- lib/ruote/util/lookup.rb
|
202
|
+
- lib/ruote/util/misc.rb
|
203
|
+
- lib/ruote/util/ometa.rb
|
204
|
+
- lib/ruote/util/serializer.rb
|
205
|
+
- lib/ruote/util/time.rb
|
206
|
+
- lib/ruote/util/tree.rb
|
207
|
+
- lib/ruote/util/treechecker.rb
|
208
|
+
- lib/ruote/worker.rb
|
209
|
+
- lib/ruote/workitem.rb
|
210
|
+
- phil.txt
|
211
|
+
- ruote.gemspec
|
212
|
+
- test/README.rdoc
|
213
|
+
- test/bm/ci.rb
|
214
|
+
- test/bm/ici.rb
|
215
|
+
- test/bm/juuman.rb
|
248
216
|
- test/bm/load_26c.rb
|
249
|
-
- test/
|
250
|
-
- test/
|
251
|
-
- test/
|
252
|
-
- test/extras/et_0_sqs.rb
|
253
|
-
- test/extras/et_jabber_test.rb
|
254
|
-
- test/extras/test.rb
|
255
|
-
- test/functional
|
217
|
+
- test/bm/mega.rb
|
218
|
+
- test/bm/seq_thousand.rb
|
219
|
+
- test/bm/t.rb
|
256
220
|
- test/functional/base.rb
|
257
|
-
- test/functional/
|
221
|
+
- test/functional/concurrent_base.rb
|
222
|
+
- test/functional/crunner.rb
|
223
|
+
- test/functional/ct_0_concurrence.rb
|
224
|
+
- test/functional/ct_1_iterator.rb
|
225
|
+
- test/functional/ct_2_cancel.rb
|
258
226
|
- test/functional/eft_0_process_definition.rb
|
259
|
-
- test/functional/
|
260
|
-
- test/functional/
|
261
|
-
- test/functional/
|
262
|
-
- test/functional/
|
263
|
-
- test/functional/
|
264
|
-
- test/functional/
|
265
|
-
- test/functional/
|
266
|
-
- test/functional/
|
227
|
+
- test/functional/eft_10_cancel_process.rb
|
228
|
+
- test/functional/eft_11_wait.rb
|
229
|
+
- test/functional/eft_12_listen.rb
|
230
|
+
- test/functional/eft_13_iterator.rb
|
231
|
+
- test/functional/eft_14_cursor.rb
|
232
|
+
- test/functional/eft_15_loop.rb
|
233
|
+
- test/functional/eft_16_if.rb
|
234
|
+
- test/functional/eft_17_equals.rb
|
235
|
+
- test/functional/eft_18_concurrent_iterator.rb
|
236
|
+
- test/functional/eft_19_reserve.rb
|
237
|
+
- test/functional/eft_1_echo.rb
|
238
|
+
- test/functional/eft_20_save.rb
|
239
|
+
- test/functional/eft_21_restore.rb
|
240
|
+
- test/functional/eft_22_noop.rb
|
241
|
+
- test/functional/eft_23_apply.rb
|
242
|
+
- test/functional/eft_24_add_branches.rb
|
243
|
+
- test/functional/eft_25_command.rb
|
244
|
+
- test/functional/eft_26_error.rb
|
245
|
+
- test/functional/eft_27_inc.rb
|
246
|
+
- test/functional/eft_28_when.rb
|
247
|
+
- test/functional/eft_29_cron.rb
|
267
248
|
- test/functional/eft_2_sequence.rb
|
268
|
-
- test/functional/
|
269
|
-
- test/functional/
|
270
|
-
- test/functional/
|
271
|
-
- test/functional/
|
272
|
-
- test/functional/
|
273
|
-
- test/functional/
|
274
|
-
- test/functional/
|
275
|
-
- test/functional/
|
276
|
-
- test/functional/
|
249
|
+
- test/functional/eft_3_participant.rb
|
250
|
+
- test/functional/eft_4_set.rb
|
251
|
+
- test/functional/eft_5_subprocess.rb
|
252
|
+
- test/functional/eft_6_concurrence.rb
|
253
|
+
- test/functional/eft_7_forget.rb
|
254
|
+
- test/functional/eft_8_undo.rb
|
255
|
+
- test/functional/eft_9_redo.rb
|
256
|
+
- test/functional/ft_0_worker.rb
|
257
|
+
- test/functional/ft_10_dollar.rb
|
258
|
+
- test/functional/ft_11_recursion.rb
|
259
|
+
- test/functional/ft_12_launchitem.rb
|
260
|
+
- test/functional/ft_13_variables.rb
|
261
|
+
- test/functional/ft_14_re_apply.rb
|
262
|
+
- test/functional/ft_15_timeout.rb
|
263
|
+
- test/functional/ft_16_participant_params.rb
|
264
|
+
- test/functional/ft_17_conditional.rb
|
265
|
+
- test/functional/ft_18_kill.rb
|
266
|
+
- test/functional/ft_19_alias.rb
|
277
267
|
- test/functional/ft_1_process_status.rb
|
278
|
-
- test/functional/
|
279
|
-
- test/functional/
|
280
|
-
- test/functional/
|
281
|
-
- test/functional/
|
282
|
-
- test/functional/
|
283
|
-
- test/functional/
|
284
|
-
- test/functional/
|
285
|
-
- test/functional/
|
268
|
+
- test/functional/ft_20_storage_participant.rb
|
269
|
+
- test/functional/ft_21_forget.rb
|
270
|
+
- test/functional/ft_22_process_definitions.rb
|
271
|
+
- test/functional/ft_23_load_defs.rb
|
272
|
+
- test/functional/ft_24_block_participants.rb
|
273
|
+
- test/functional/ft_25_receiver.rb
|
274
|
+
- test/functional/ft_26_participant_timeout.rb
|
275
|
+
- test/functional/ft_27_var_indirection.rb
|
276
|
+
- test/functional/ft_28_null_noop_participants.rb
|
277
|
+
- test/functional/ft_29_part_template.rb
|
278
|
+
- test/functional/ft_2_errors.rb
|
279
|
+
- test/functional/ft_30_smtp_participant.rb
|
280
|
+
- test/functional/ft_31_part_blocking.rb
|
281
|
+
- test/functional/ft_32_history.rb
|
282
|
+
- test/functional/ft_33_participant_subprocess_priority.rb
|
283
|
+
- test/functional/ft_34_cursor_rewind.rb
|
284
|
+
- test/functional/ft_35_add_service.rb
|
285
|
+
- test/functional/ft_3_participant_registration.rb
|
286
|
+
- test/functional/ft_4_cancel.rb
|
287
|
+
- test/functional/ft_5_on_error.rb
|
288
|
+
- test/functional/ft_6_on_cancel.rb
|
289
|
+
- test/functional/ft_7_tags.rb
|
290
|
+
- test/functional/ft_8_participant_consumption.rb
|
291
|
+
- test/functional/ft_9_subprocesses.rb
|
286
292
|
- test/functional/restart_base.rb
|
287
|
-
- test/functional/
|
293
|
+
- test/functional/rt_0_wait.rb
|
294
|
+
- test/functional/rt_1_listen.rb
|
295
|
+
- test/functional/rt_2_errors.rb
|
296
|
+
- test/functional/rt_3_when.rb
|
297
|
+
- test/functional/rt_4_cron.rb
|
298
|
+
- test/functional/rt_5_timeout.rb
|
299
|
+
- test/functional/rtest.rb
|
300
|
+
- test/functional/storage_helper.rb
|
288
301
|
- test/functional/test.rb
|
302
|
+
- test/mpc_test.rb
|
289
303
|
- test/path_helper.rb
|
304
|
+
- test/pdef.xml
|
290
305
|
- test/test.rb
|
291
306
|
- test/test_helper.rb
|
292
|
-
- test/unit
|
307
|
+
- test/unit/storages.rb
|
293
308
|
- test/unit/test.rb
|
294
|
-
- test/unit/
|
295
|
-
- test/unit/
|
296
|
-
- test/unit/
|
297
|
-
- test/unit/
|
298
|
-
- test/unit/
|
299
|
-
- test/unit/
|
300
|
-
- test/unit/
|
301
|
-
- test/unit/
|
302
|
-
- test/unit/
|
303
|
-
- test/unit/
|
304
|
-
- test/unit/
|
305
|
-
- test/unit/
|
306
|
-
- test/unit/
|
307
|
-
- test/unit/
|
308
|
-
- test/unit/
|
309
|
-
- test/unit/
|
310
|
-
- test/unit/ut_6_treechecker.rb
|
311
|
-
- test/unit/ut_7_parser_ruby.rb
|
312
|
-
- test/unit/ut_7b_parser_ruby.rb
|
313
|
-
- test/unit/ut_8_parser_description.rb
|
314
|
-
- test/unit/ut_9_workitem.rb
|
315
|
-
- examples/about_state.rb
|
316
|
-
- examples/bigflow.rb
|
317
|
-
- examples/csv_weather.rb
|
318
|
-
- examples/engine_template.rb
|
319
|
-
- examples/flowtracing.rb
|
320
|
-
- examples/homeworkreview.rb
|
321
|
-
- examples/kotoba.rb
|
322
|
-
- examples/mano_tracker.rb
|
323
|
-
- examples/openwferu.rb
|
324
|
-
- examples/quickstart.rb
|
325
|
-
- examples/quotereporter.rb
|
326
|
-
- examples/simple.rb
|
327
|
-
- README.txt
|
309
|
+
- test/unit/ut_0_ruby_parser.rb
|
310
|
+
- test/unit/ut_11_lookup.rb
|
311
|
+
- test/unit/ut_13_serializer.rb
|
312
|
+
- test/unit/ut_14_is_uri.rb
|
313
|
+
- test/unit/ut_15_util.rb
|
314
|
+
- test/unit/ut_16_parser.rb
|
315
|
+
- test/unit/ut_17_storage.rb
|
316
|
+
- test/unit/ut_1_fei.rb
|
317
|
+
- test/unit/ut_2_wfidgen.rb
|
318
|
+
- test/unit/ut_3_wait_logger.rb
|
319
|
+
- test/unit/ut_4_expmap.rb
|
320
|
+
- test/unit/ut_5_tree.rb
|
321
|
+
- test/unit/ut_6_condition.rb
|
322
|
+
- test/unit/ut_7_workitem.rb
|
323
|
+
- test/unit/ut_8_tree_to_dot.rb
|
324
|
+
- test/unit/ut_9_xml_parser.rb
|
328
325
|
has_rdoc: true
|
329
|
-
homepage: http://
|
330
|
-
|
331
|
-
rdoc_options: []
|
326
|
+
homepage: http://ruote.rubyforge.org
|
327
|
+
licenses: []
|
332
328
|
|
329
|
+
post_install_message:
|
330
|
+
rdoc_options:
|
331
|
+
- --charset=UTF-8
|
333
332
|
require_paths:
|
334
333
|
- lib
|
335
334
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -344,18 +343,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
344
343
|
- !ruby/object:Gem::Version
|
345
344
|
version: "0"
|
346
345
|
version:
|
347
|
-
requirements:
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
- rufus-dollar
|
352
|
-
- rufus-treechecker
|
353
|
-
- rufus-mnemo
|
354
|
-
- rufus-verbs
|
355
|
-
rubyforge_project: openwferu
|
356
|
-
rubygems_version: 1.3.1
|
346
|
+
requirements: []
|
347
|
+
|
348
|
+
rubyforge_project: ruote
|
349
|
+
rubygems_version: 1.3.5
|
357
350
|
signing_key:
|
358
|
-
specification_version:
|
359
|
-
summary: an open source ruby workflow
|
351
|
+
specification_version: 3
|
352
|
+
summary: an open source ruby workflow engine
|
360
353
|
test_files:
|
361
354
|
- test/test.rb
|