├── .bxsenvs.yaml ├── .github ├── dependabot.yml └── workflows │ └── test.yaml ├── .gitignore ├── .rspec ├── .vimshorts ├── CHANGELOG.md ├── CREDITS.md ├── Gemfile ├── LICENSE.txt ├── Makefile ├── README.md ├── bin ├── firb ├── flosh └── flotojson ├── doc ├── README.md ├── blocks.md ├── cancelling.md ├── chaining.md ├── common_attributes.md ├── domains.md ├── fragments.md ├── glossary.md ├── hooks.md ├── language.md ├── launching.md ├── messages.md ├── multi_instance.md ├── node.md ├── nodes.md ├── on_cancel.md ├── on_error.md ├── on_receive.md ├── on_timeout.md ├── patterns.md ├── patterns__control_flow.md ├── patterns__data.md ├── patterns__exception_handling.md ├── patterns__resource.md ├── procedures │ ├── README.md │ ├── _arr.md │ ├── _obj.md │ ├── _skip.md │ ├── abort.md │ ├── all.md │ ├── andor.md │ ├── any.md │ ├── apply.md │ ├── arith.md │ ├── array_qmark.md │ ├── break.md │ ├── c_collect.md │ ├── c_each.md │ ├── c_for_each.md │ ├── c_map.md │ ├── cancel.md │ ├── case.md │ ├── collect.md │ ├── concurrence.md │ ├── cond.md │ ├── cron.md │ ├── cursor.md │ ├── define.md │ ├── del.md │ ├── detect.md │ ├── do_return.md │ ├── do_trap.md │ ├── each.md │ ├── empty.md │ ├── every.md │ ├── fail.md │ ├── filter.md │ ├── find.md │ ├── flatten.md │ ├── for_each.md │ ├── graft.md │ ├── if.md │ ├── inject.md │ ├── keys.md │ ├── length.md │ ├── loop.md │ ├── map.md │ ├── match.md │ ├── matchr.md │ ├── merge.md │ ├── move.md │ ├── noeval.md │ ├── noret.md │ ├── not.md │ ├── on.md │ ├── on_cancel.md │ ├── on_error.md │ ├── on_receive.md │ ├── on_timeout.md │ ├── push.md │ ├── rand.md │ ├── range.md │ ├── reduce.md │ ├── reverse.md │ ├── schedule.md │ ├── select.md │ ├── sequence.md │ ├── set.md │ ├── shuffle.md │ ├── signal.md │ ├── sleep.md │ ├── slice.md │ ├── sort.md │ ├── sort_by.md │ ├── stall.md │ ├── strings.md │ ├── task.md │ ├── timestamp.md │ ├── to_array.md │ ├── trap.md │ ├── type_of.md │ └── until.md ├── quickstart0 │ ├── Gemfile │ ├── README.md │ └── quickstart.rb ├── quickstart1 │ ├── .gitignore │ ├── Gemfile │ ├── README.md │ ├── flor │ │ ├── etc │ │ │ └── conf.json │ │ ├── lib │ │ │ ├── flows │ │ │ │ └── org.example │ │ │ │ │ └── flow0.flor │ │ │ └── taskers │ │ │ │ └── org.example │ │ │ │ ├── alice.rb │ │ │ │ └── bob.rb │ │ └── var │ │ │ └── log │ │ │ └── .gitkeep │ └── quickstart.rb ├── re_applying.md ├── recipes.md ├── services │ ├── ganger.md │ ├── hooker.md │ ├── loader.md │ ├── readme.md │ └── spooler.md ├── signalling.md ├── storage_callbacks.md ├── strings.md ├── tags.md ├── taskers.md ├── tasks.md ├── traps.md └── variables.md ├── envs ├── README.md ├── dev │ ├── etc │ │ └── conf.json │ ├── lib │ │ └── .gitkeep │ └── usr │ │ └── .gitkeep ├── shell │ ├── etc │ │ └── conf.json │ ├── floshrc │ ├── home │ │ ├── .floshrc │ │ ├── payload.json.template │ │ ├── ra_scratch.flo │ │ ├── scratch.flo.template │ │ └── variables.json.template │ ├── lib │ │ └── taskers │ │ │ ├── nato │ │ │ ├── dot.json │ │ │ └── nato.rb │ │ │ ├── puts │ │ │ ├── dot.json │ │ │ └── puts.rb │ │ │ └── tasker │ │ │ ├── dot.json │ │ │ └── shell.rb │ └── var │ │ └── tasks │ │ └── .gitkeep ├── test │ ├── etc │ │ ├── conf.json │ │ ├── conf2.json │ │ └── variables │ │ │ ├── bleakrock.yaml │ │ │ └── com.acme │ │ │ └── dot.json │ ├── lib │ │ ├── flows │ │ │ └── com.acme │ │ │ │ ├── flow0.flor │ │ │ │ ├── flow1.flor │ │ │ │ └── flow99.flor │ │ ├── hooks │ │ │ └── .gitkeep │ │ ├── subflows │ │ │ ├── com.acme.alpha │ │ │ │ └── sub0.flo │ │ │ └── sub1_funs.flo │ │ └── taskers │ │ │ ├── alpha │ │ │ ├── alpha.rb │ │ │ └── dot.json │ │ │ ├── bravo │ │ │ ├── bravo.rb │ │ │ └── dot.json │ │ │ ├── charly │ │ │ ├── charly.rb │ │ │ └── flor.json │ │ │ ├── delta │ │ │ ├── delta.rb │ │ │ └── flor.json │ │ │ ├── emil │ │ │ ├── dot.json │ │ │ └── emil.rb │ │ │ ├── failfox │ │ │ ├── dot.json │ │ │ └── tasker.rb │ │ │ ├── failfox2 │ │ │ ├── dot.json │ │ │ └── tasker.rb │ │ │ ├── hole │ │ │ ├── flor.json │ │ │ └── hole.rb │ │ │ ├── india │ │ │ ├── dot.json │ │ │ └── india.rb │ │ │ ├── juliett │ │ │ ├── dot.json │ │ │ └── lib │ │ │ │ └── juliett.rb │ │ │ ├── kilo │ │ │ ├── ganger.json │ │ │ └── lib │ │ │ │ └── kilo.rb │ │ │ └── pile.rb │ └── usr │ │ └── net.acme │ │ └── lib │ │ └── taskers │ │ └── tasker │ │ ├── flor.json │ │ └── tasker.rb └── uspec_loader │ ├── etc │ └── variables │ │ ├── dot.json │ │ ├── net.example.json │ │ └── net.json │ ├── lib │ ├── flows │ │ ├── net.example │ │ │ └── flow0.flor │ │ └── org.example │ │ │ └── flow0.flor │ ├── hooks │ │ ├── dot.json │ │ └── org.example.json │ └── taskers │ │ ├── alice │ │ └── dot.json │ │ ├── com.example │ │ ├── charly │ │ │ └── tasker.json │ │ └── tasker │ │ │ └── dot.json │ │ ├── edu.example │ │ └── echo │ │ │ └── dot.json │ │ ├── mil.example.json │ │ ├── mil.example │ │ └── ground.json │ │ ├── net.example │ │ └── .gitkeep │ │ ├── org.example │ │ ├── alice │ │ │ └── dot.json │ │ ├── bob │ │ │ └── dot.json │ │ └── charly.json │ │ └── zebulon.rb │ └── usr │ ├── com.example.alpha │ └── lib │ │ └── taskers │ │ └── tasker │ │ └── dot.json │ ├── com.example.bravo │ └── lib │ │ └── taskers │ │ └── tasker │ │ └── flor.json │ ├── mil.example │ └── lib │ │ ├── hooks │ │ └── hooks.json │ │ └── taskers │ │ └── air.json │ ├── net.example │ ├── etc │ │ └── variables │ │ │ ├── alpha.json │ │ │ ├── alpha │ │ │ └── dot.json │ │ │ └── flor.json │ └── lib │ │ ├── flows │ │ └── flow1.flo │ │ └── taskers │ │ └── bob │ │ └── dot.json │ └── org.example │ ├── etc │ └── variables │ │ └── dot.json │ └── lib │ ├── flows │ └── flow1.flor │ └── taskers │ └── .gitkeep ├── flor.gemspec ├── lib ├── flor.rb └── flor │ ├── colours.rb │ ├── conf.rb │ ├── core.rb │ ├── core │ ├── executor.rb │ ├── node.rb │ ├── procedure.rb │ └── texecutor.rb │ ├── djan.rb │ ├── errors.rb │ ├── flor.rb │ ├── id.rb │ ├── log.rb │ ├── migrations │ ├── 0001_tables.rb │ ├── 0002_cunit_and_munit.rb │ ├── 0003_timer_onid_bnid.rb │ ├── 0004_trap_bnid.rb │ └── 0005_pointer_content.rb │ ├── parser.rb │ ├── pcore │ ├── README.md │ ├── _apply.rb │ ├── _arr.rb │ ├── _atom.rb │ ├── _att.rb │ ├── _coll.rb │ ├── _dmute.rb │ ├── _dol.rb │ ├── _dqs.rb │ ├── _dump.rb │ ├── _err.rb │ ├── _head.rb │ ├── _obj.rb │ ├── _pat_.rb │ ├── _pat_arr.rb │ ├── _pat_guard.rb │ ├── _pat_obj.rb │ ├── _pat_or.rb │ ├── _pat_regex.rb │ ├── _ref.rb │ ├── _rxs.rb │ ├── _skip.rb │ ├── _val.rb │ ├── all.rb │ ├── andor.rb │ ├── any.rb │ ├── apply.rb │ ├── arith.rb │ ├── array_qmark.rb │ ├── break.rb │ ├── case.rb │ ├── cmp.rb │ ├── collect.rb │ ├── cond.rb │ ├── cursor.rb │ ├── define.rb │ ├── del.rb │ ├── detect.rb │ ├── do_return.rb │ ├── each.rb │ ├── echo.rb │ ├── empty.rb │ ├── fail.rb │ ├── filter.rb │ ├── find.rb │ ├── flatten.rb │ ├── for_each.rb │ ├── if.rb │ ├── includes.rb │ ├── inject.rb │ ├── iterator.rb │ ├── keys.rb │ ├── length.rb │ ├── loop.rb │ ├── map.rb │ ├── match.rb │ ├── matchr.rb │ ├── max.rb │ ├── merge.rb │ ├── move.rb │ ├── noeval.rb │ ├── noret.rb │ ├── not.rb │ ├── on.rb │ ├── on_cancel.rb │ ├── on_error.rb │ ├── on_receive.rb │ ├── push.rb │ ├── rand.rb │ ├── range.rb │ ├── reduce.rb │ ├── return.rb │ ├── reverse.rb │ ├── select.rb │ ├── sequence.rb │ ├── set.rb │ ├── shuffle.rb │ ├── slice.rb │ ├── sort.rb │ ├── sort_by.rb │ ├── split.rb │ ├── stall.rb │ ├── strings.rb │ ├── timestamp.rb │ ├── to_array.rb │ ├── twig.rb │ ├── type_of.rb │ └── until.rb │ ├── punit │ ├── abort.rb │ ├── c_collect.rb │ ├── c_each.rb │ ├── c_for_each.rb │ ├── c_iterator.rb │ ├── c_map.rb │ ├── cancel.rb │ ├── concurrence.rb │ ├── cron.rb │ ├── do_trap.rb │ ├── every.rb │ ├── graft.rb │ ├── m_receive_and_merge.rb │ ├── on_timeout.rb │ ├── part.rb │ ├── schedule.rb │ ├── signal.rb │ ├── sleep.rb │ ├── task.rb │ ├── trace.rb │ └── trap.rb │ ├── to_string.rb │ ├── tools │ ├── env.rb │ ├── firb.rb │ ├── flotojson.rb │ ├── shell.rb │ └── shell_out.rb │ ├── tt.rb │ ├── unit.rb │ └── unit │ ├── caller.rb │ ├── caller_jruby.rb │ ├── dump.rb │ ├── executor.rb │ ├── ganger.rb │ ├── gangers.rb │ ├── hloader.rb │ ├── hook.rb │ ├── hooker.rb │ ├── journal.rb │ ├── loader.rb │ ├── logger.rb │ ├── models.rb │ ├── models │ ├── execution.rb │ ├── message.rb │ ├── pointer.rb │ ├── timer.rb │ ├── trace.rb │ └── trap.rb │ ├── scheduler.rb │ ├── spooler.rb │ ├── storage.rb │ ├── taskers.rb │ ├── waiter.rb │ └── wlist.rb ├── mak ├── doc_procedures.rb └── ptree.rb ├── misc └── flor.vim ├── spec ├── README.md ├── conf_spec.rb ├── core │ ├── applications_spec.rb │ ├── attributes_spec.rb │ ├── cancel_spec.rb │ ├── common_attributes_spec.rb │ ├── core_spec.rb │ ├── dollar_spec.rb │ ├── fields_spec.rb │ ├── if_unless_suffix_spec.rb │ ├── journal_spec.rb │ ├── node_spec.rb │ ├── on_cancel_spec.rb │ ├── on_error_spec.rb │ ├── tags_spec.rb │ └── variables_spec.rb ├── djan_spec.rb ├── flor_spec.rb ├── id_spec.rb ├── node_spec.rb ├── parser_spec.md ├── parser_spec.rb ├── pcore │ ├── _arr_spec.rb │ ├── _atom_spec.rb │ ├── _dqs_spec.rb │ ├── _obj_spec.rb │ ├── _pat_arr_spec.rb │ ├── _pat_guard_spec.rb │ ├── _pat_obj_spec.rb │ ├── _pat_or_spec.rb │ ├── _pat_regex_spec.rb │ ├── _ref_spec.rb │ ├── _rxs_spec.rb │ ├── _skip_spec.rb │ ├── all_spec.rb │ ├── andor_spec.rb │ ├── any_spec.rb │ ├── apply_spec.rb │ ├── arith_spec.rb │ ├── array_qmark_spec.rb │ ├── break_spec.rb │ ├── case_spec.rb │ ├── cmp_spec.rb │ ├── collect_spec.rb │ ├── cond_spec.rb │ ├── cursor_spec.rb │ ├── define_spec.rb │ ├── del_spec.rb │ ├── detect_spec.rb │ ├── do_return_spec.rb │ ├── each_spec.rb │ ├── empty_spec.rb │ ├── fail_spec.rb │ ├── filter_spec.rb │ ├── find_spec.rb │ ├── flatten_spec.rb │ ├── for_each_spec.rb │ ├── if_spec.rb │ ├── includes_spec.rb │ ├── inject_spec.rb │ ├── keys_spec.rb │ ├── length_spec.rb │ ├── loop_spec.rb │ ├── map_spec.rb │ ├── match_spec.rb │ ├── matchr_spec.rb │ ├── max_spec.rb │ ├── merge_spec.rb │ ├── move_spec.rb │ ├── noeval_spec.rb │ ├── noret_spec.rb │ ├── not_spec.rb │ ├── on_cancel_spec.rb │ ├── on_error_spec.rb │ ├── on_receive_spec.rb │ ├── on_spec.rb │ ├── procedure_spec.rb │ ├── push_spec.rb │ ├── rand_spec.rb │ ├── range_spec.rb │ ├── reduce_spec.rb │ ├── return_spec.rb │ ├── reverse_spec.rb │ ├── select_spec.rb │ ├── sequence_spec.rb │ ├── set_spec.rb │ ├── shuffle_spec.rb │ ├── slice_spec.rb │ ├── sort_by_spec.rb │ ├── sort_spec.rb │ ├── split_spec.rb │ ├── stall_spec.rb │ ├── strings_spec.rb │ ├── timestamp_spec.rb │ ├── to_array_spec.rb │ ├── twig_spec.rb │ ├── type_of_spec.rb │ └── until_spec.rb ├── punit │ ├── _arr_spec.rb │ ├── abort_spec.rb │ ├── c_collect_spec.rb │ ├── c_each_spec.rb │ ├── c_for_each_spec.rb │ ├── c_map_spec.rb │ ├── cancel_spec.rb │ ├── concurrence_spec.rb │ ├── cron_spec.rb │ ├── do_trap_spec.rb │ ├── every_spec.rb │ ├── graft_spec.rb │ ├── on_spec.rb │ ├── on_timeout_spec.rb │ ├── part_spec.rb │ ├── schedule_spec.rb │ ├── signal_spec.rb │ ├── sleep_spec.rb │ ├── task_spec.rb │ ├── trace_spec.rb │ └── trap_spec.rb ├── spec_helper.rb └── unit │ ├── add_branch_spec.rb │ ├── add_iteration_spec.rb │ ├── attributes_spec.rb │ ├── caller_jruby_spec.rb │ ├── caller_spec.rb │ ├── cancel_spec.rb │ ├── concurrency_spec.rb │ ├── conf_hooks_spec.rb │ ├── dump_spec.rb │ ├── errors_spec.rb │ ├── execution_spec.rb │ ├── flanking_spec.rb │ ├── ganger_spec.rb │ ├── hloader_spec.rb │ ├── hooks │ ├── alpha.rb │ ├── bravo.rb │ ├── for_caller.py │ └── for_caller.rb │ ├── loader_spec.rb │ ├── logger_spec.rb │ ├── misc_spec.rb │ ├── model_execution_spec.rb │ ├── model_pointer_spec.rb │ ├── module_ganger_spec.rb │ ├── on_receive_spec.rb │ ├── on_timeout_spec.rb │ ├── pointers_spec.rb │ ├── push_and_runs_spec.rb │ ├── re_apply_spec.rb │ ├── scheduler_spec.rb │ ├── spooler_spec.rb │ ├── staged_basic_tasker_spec.rb │ ├── sto_uri_spec.rb │ ├── storage_spec.rb │ ├── sub_spec.rb │ ├── tags_spec.rb │ ├── task_applications_spec.rb │ ├── tasker_name_spec.rb │ ├── taskers_2_spec.rb │ ├── taskers_spec.rb │ ├── timeout_spec.rb │ ├── unit_hloader_spec.rb │ ├── unit_hooks_spec.rb │ ├── unit_spec.rb │ ├── variables_spec.rb │ ├── waiter_launch_spec.rb │ ├── waiter_multi_spec.rb │ ├── waiter_spec.rb │ └── waiter_wait_spec.rb └── tmp └── .gitkeep /.bxsenvs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/.bxsenvs.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour --format documentation 2 | -------------------------------------------------------------------------------- /.vimshorts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/.vimshorts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/README.md -------------------------------------------------------------------------------- /bin/firb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/bin/firb -------------------------------------------------------------------------------- /bin/flosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/bin/flosh -------------------------------------------------------------------------------- /bin/flotojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/bin/flotojson -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/blocks.md -------------------------------------------------------------------------------- /doc/cancelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/cancelling.md -------------------------------------------------------------------------------- /doc/chaining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/chaining.md -------------------------------------------------------------------------------- /doc/common_attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/common_attributes.md -------------------------------------------------------------------------------- /doc/domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/domains.md -------------------------------------------------------------------------------- /doc/fragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/fragments.md -------------------------------------------------------------------------------- /doc/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/glossary.md -------------------------------------------------------------------------------- /doc/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/hooks.md -------------------------------------------------------------------------------- /doc/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/language.md -------------------------------------------------------------------------------- /doc/launching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/launching.md -------------------------------------------------------------------------------- /doc/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/messages.md -------------------------------------------------------------------------------- /doc/multi_instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/multi_instance.md -------------------------------------------------------------------------------- /doc/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/node.md -------------------------------------------------------------------------------- /doc/nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/nodes.md -------------------------------------------------------------------------------- /doc/on_cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/on_cancel.md -------------------------------------------------------------------------------- /doc/on_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/on_error.md -------------------------------------------------------------------------------- /doc/on_receive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/on_receive.md -------------------------------------------------------------------------------- /doc/on_timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/on_timeout.md -------------------------------------------------------------------------------- /doc/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/patterns.md -------------------------------------------------------------------------------- /doc/patterns__control_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/patterns__control_flow.md -------------------------------------------------------------------------------- /doc/patterns__data.md: -------------------------------------------------------------------------------- 1 | 2 | # patterns__data.md 3 | 4 | TODO 5 | 6 | -------------------------------------------------------------------------------- /doc/patterns__exception_handling.md: -------------------------------------------------------------------------------- 1 | 2 | # patterns__exception_handling.md 3 | 4 | TODO 5 | 6 | -------------------------------------------------------------------------------- /doc/patterns__resource.md: -------------------------------------------------------------------------------- 1 | 2 | # patterns__resource.md 3 | 4 | TODO 5 | 6 | -------------------------------------------------------------------------------- /doc/procedures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/README.md -------------------------------------------------------------------------------- /doc/procedures/_arr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/_arr.md -------------------------------------------------------------------------------- /doc/procedures/_obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/_obj.md -------------------------------------------------------------------------------- /doc/procedures/_skip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/_skip.md -------------------------------------------------------------------------------- /doc/procedures/abort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/abort.md -------------------------------------------------------------------------------- /doc/procedures/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/all.md -------------------------------------------------------------------------------- /doc/procedures/andor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/andor.md -------------------------------------------------------------------------------- /doc/procedures/any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/any.md -------------------------------------------------------------------------------- /doc/procedures/apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/apply.md -------------------------------------------------------------------------------- /doc/procedures/arith.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/arith.md -------------------------------------------------------------------------------- /doc/procedures/array_qmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/array_qmark.md -------------------------------------------------------------------------------- /doc/procedures/break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/break.md -------------------------------------------------------------------------------- /doc/procedures/c_collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/c_collect.md -------------------------------------------------------------------------------- /doc/procedures/c_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/c_each.md -------------------------------------------------------------------------------- /doc/procedures/c_for_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/c_for_each.md -------------------------------------------------------------------------------- /doc/procedures/c_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/c_map.md -------------------------------------------------------------------------------- /doc/procedures/cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/cancel.md -------------------------------------------------------------------------------- /doc/procedures/case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/case.md -------------------------------------------------------------------------------- /doc/procedures/collect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/collect.md -------------------------------------------------------------------------------- /doc/procedures/concurrence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/concurrence.md -------------------------------------------------------------------------------- /doc/procedures/cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/cond.md -------------------------------------------------------------------------------- /doc/procedures/cron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/cron.md -------------------------------------------------------------------------------- /doc/procedures/cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/cursor.md -------------------------------------------------------------------------------- /doc/procedures/define.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/define.md -------------------------------------------------------------------------------- /doc/procedures/del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/del.md -------------------------------------------------------------------------------- /doc/procedures/detect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/detect.md -------------------------------------------------------------------------------- /doc/procedures/do_return.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/do_return.md -------------------------------------------------------------------------------- /doc/procedures/do_trap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/do_trap.md -------------------------------------------------------------------------------- /doc/procedures/each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/each.md -------------------------------------------------------------------------------- /doc/procedures/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/empty.md -------------------------------------------------------------------------------- /doc/procedures/every.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/every.md -------------------------------------------------------------------------------- /doc/procedures/fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/fail.md -------------------------------------------------------------------------------- /doc/procedures/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/filter.md -------------------------------------------------------------------------------- /doc/procedures/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/find.md -------------------------------------------------------------------------------- /doc/procedures/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/flatten.md -------------------------------------------------------------------------------- /doc/procedures/for_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/for_each.md -------------------------------------------------------------------------------- /doc/procedures/graft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/graft.md -------------------------------------------------------------------------------- /doc/procedures/if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/if.md -------------------------------------------------------------------------------- /doc/procedures/inject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/inject.md -------------------------------------------------------------------------------- /doc/procedures/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/keys.md -------------------------------------------------------------------------------- /doc/procedures/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/length.md -------------------------------------------------------------------------------- /doc/procedures/loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/loop.md -------------------------------------------------------------------------------- /doc/procedures/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/map.md -------------------------------------------------------------------------------- /doc/procedures/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/match.md -------------------------------------------------------------------------------- /doc/procedures/matchr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/matchr.md -------------------------------------------------------------------------------- /doc/procedures/merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/merge.md -------------------------------------------------------------------------------- /doc/procedures/move.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/move.md -------------------------------------------------------------------------------- /doc/procedures/noeval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/noeval.md -------------------------------------------------------------------------------- /doc/procedures/noret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/noret.md -------------------------------------------------------------------------------- /doc/procedures/not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/not.md -------------------------------------------------------------------------------- /doc/procedures/on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/on.md -------------------------------------------------------------------------------- /doc/procedures/on_cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/on_cancel.md -------------------------------------------------------------------------------- /doc/procedures/on_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/on_error.md -------------------------------------------------------------------------------- /doc/procedures/on_receive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/on_receive.md -------------------------------------------------------------------------------- /doc/procedures/on_timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/on_timeout.md -------------------------------------------------------------------------------- /doc/procedures/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/push.md -------------------------------------------------------------------------------- /doc/procedures/rand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/rand.md -------------------------------------------------------------------------------- /doc/procedures/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/range.md -------------------------------------------------------------------------------- /doc/procedures/reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/reduce.md -------------------------------------------------------------------------------- /doc/procedures/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/reverse.md -------------------------------------------------------------------------------- /doc/procedures/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/schedule.md -------------------------------------------------------------------------------- /doc/procedures/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/select.md -------------------------------------------------------------------------------- /doc/procedures/sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/sequence.md -------------------------------------------------------------------------------- /doc/procedures/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/set.md -------------------------------------------------------------------------------- /doc/procedures/shuffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/shuffle.md -------------------------------------------------------------------------------- /doc/procedures/signal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/signal.md -------------------------------------------------------------------------------- /doc/procedures/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/sleep.md -------------------------------------------------------------------------------- /doc/procedures/slice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/slice.md -------------------------------------------------------------------------------- /doc/procedures/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/sort.md -------------------------------------------------------------------------------- /doc/procedures/sort_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/sort_by.md -------------------------------------------------------------------------------- /doc/procedures/stall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/stall.md -------------------------------------------------------------------------------- /doc/procedures/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/strings.md -------------------------------------------------------------------------------- /doc/procedures/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/task.md -------------------------------------------------------------------------------- /doc/procedures/timestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/timestamp.md -------------------------------------------------------------------------------- /doc/procedures/to_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/to_array.md -------------------------------------------------------------------------------- /doc/procedures/trap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/trap.md -------------------------------------------------------------------------------- /doc/procedures/type_of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/type_of.md -------------------------------------------------------------------------------- /doc/procedures/until.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/procedures/until.md -------------------------------------------------------------------------------- /doc/quickstart0/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart0/Gemfile -------------------------------------------------------------------------------- /doc/quickstart0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart0/README.md -------------------------------------------------------------------------------- /doc/quickstart0/quickstart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart0/quickstart.rb -------------------------------------------------------------------------------- /doc/quickstart1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/.gitignore -------------------------------------------------------------------------------- /doc/quickstart1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/Gemfile -------------------------------------------------------------------------------- /doc/quickstart1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/README.md -------------------------------------------------------------------------------- /doc/quickstart1/flor/etc/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/flor/etc/conf.json -------------------------------------------------------------------------------- /doc/quickstart1/flor/lib/flows/org.example/flow0.flor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/flor/lib/flows/org.example/flow0.flor -------------------------------------------------------------------------------- /doc/quickstart1/flor/lib/taskers/org.example/alice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/flor/lib/taskers/org.example/alice.rb -------------------------------------------------------------------------------- /doc/quickstart1/flor/lib/taskers/org.example/bob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/flor/lib/taskers/org.example/bob.rb -------------------------------------------------------------------------------- /doc/quickstart1/flor/var/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/quickstart1/quickstart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/quickstart1/quickstart.rb -------------------------------------------------------------------------------- /doc/re_applying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/re_applying.md -------------------------------------------------------------------------------- /doc/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/recipes.md -------------------------------------------------------------------------------- /doc/services/ganger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/services/ganger.md -------------------------------------------------------------------------------- /doc/services/hooker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/services/hooker.md -------------------------------------------------------------------------------- /doc/services/loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/services/loader.md -------------------------------------------------------------------------------- /doc/services/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/services/readme.md -------------------------------------------------------------------------------- /doc/services/spooler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/services/spooler.md -------------------------------------------------------------------------------- /doc/signalling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/signalling.md -------------------------------------------------------------------------------- /doc/storage_callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/storage_callbacks.md -------------------------------------------------------------------------------- /doc/strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/strings.md -------------------------------------------------------------------------------- /doc/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/tags.md -------------------------------------------------------------------------------- /doc/taskers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/taskers.md -------------------------------------------------------------------------------- /doc/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/tasks.md -------------------------------------------------------------------------------- /doc/traps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/traps.md -------------------------------------------------------------------------------- /doc/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/doc/variables.md -------------------------------------------------------------------------------- /envs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/README.md -------------------------------------------------------------------------------- /envs/dev/etc/conf.json: -------------------------------------------------------------------------------- 1 | 2 | env: dev 3 | sto_uri: "sqlite://tmp/dev.db" 4 | 5 | -------------------------------------------------------------------------------- /envs/dev/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/dev/usr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/shell/etc/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/etc/conf.json -------------------------------------------------------------------------------- /envs/shell/floshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/floshrc -------------------------------------------------------------------------------- /envs/shell/home/.floshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/home/.floshrc -------------------------------------------------------------------------------- /envs/shell/home/payload.json.template: -------------------------------------------------------------------------------- 1 | # payload.json 2 | { 3 | field0: "hello world" 4 | } 5 | -------------------------------------------------------------------------------- /envs/shell/home/ra_scratch.flo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/home/ra_scratch.flo -------------------------------------------------------------------------------- /envs/shell/home/scratch.flo.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/home/scratch.flo.template -------------------------------------------------------------------------------- /envs/shell/home/variables.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/home/variables.json.template -------------------------------------------------------------------------------- /envs/shell/lib/taskers/nato/dot.json: -------------------------------------------------------------------------------- 1 | 2 | require: 'nato.rb' 3 | class: NatoTasker 4 | 5 | -------------------------------------------------------------------------------- /envs/shell/lib/taskers/nato/nato.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/lib/taskers/nato/nato.rb -------------------------------------------------------------------------------- /envs/shell/lib/taskers/puts/dot.json: -------------------------------------------------------------------------------- 1 | 2 | require: 'puts.rb' 3 | class: PutsTasker 4 | 5 | -------------------------------------------------------------------------------- /envs/shell/lib/taskers/puts/puts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/lib/taskers/puts/puts.rb -------------------------------------------------------------------------------- /envs/shell/lib/taskers/tasker/dot.json: -------------------------------------------------------------------------------- 1 | 2 | require: 'shell.rb' 3 | class: ShellTasker 4 | 5 | -------------------------------------------------------------------------------- /envs/shell/lib/taskers/tasker/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/shell/lib/taskers/tasker/shell.rb -------------------------------------------------------------------------------- /envs/shell/var/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/test/etc/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/etc/conf.json -------------------------------------------------------------------------------- /envs/test/etc/conf2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/etc/conf2.json -------------------------------------------------------------------------------- /envs/test/etc/variables/bleakrock.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | company: "BleakRock" 3 | activity: "Purchasing" 4 | -------------------------------------------------------------------------------- /envs/test/etc/variables/com.acme/dot.json: -------------------------------------------------------------------------------- 1 | 2 | # variables for the domain com.acme 3 | 4 | company: 'ACME' 5 | 6 | -------------------------------------------------------------------------------- /envs/test/lib/flows/com.acme/flow0.flor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/flows/com.acme/flow0.flor -------------------------------------------------------------------------------- /envs/test/lib/flows/com.acme/flow1.flor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/flows/com.acme/flow1.flor -------------------------------------------------------------------------------- /envs/test/lib/flows/com.acme/flow99.flor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/flows/com.acme/flow99.flor -------------------------------------------------------------------------------- /envs/test/lib/hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/test/lib/subflows/com.acme.alpha/sub0.flo: -------------------------------------------------------------------------------- 1 | 2 | # sub0.flo 3 | 4 | push a 1 5 | 6 | -------------------------------------------------------------------------------- /envs/test/lib/subflows/sub1_funs.flo: -------------------------------------------------------------------------------- 1 | 2 | # sub1_funs 3 | 4 | define stack x 5 | push a x 6 | 7 | -------------------------------------------------------------------------------- /envs/test/lib/taskers/alpha/alpha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/alpha/alpha.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/alpha/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/alpha/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/bravo/bravo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/bravo/bravo.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/bravo/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/bravo/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/charly/charly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/charly/charly.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/charly/flor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/charly/flor.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/delta/delta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/delta/delta.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/delta/flor.json: -------------------------------------------------------------------------------- 1 | 2 | 3 | require: 'delta.rb' 4 | class: DeltaTasker 5 | 6 | -------------------------------------------------------------------------------- /envs/test/lib/taskers/emil/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/emil/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/emil/emil.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/emil/emil.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/failfox/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/failfox/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/failfox/tasker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/failfox/tasker.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/failfox2/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/failfox2/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/failfox2/tasker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/failfox2/tasker.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/hole/flor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/hole/flor.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/hole/hole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/hole/hole.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/india/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/india/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/india/india.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/india/india.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/juliett/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/juliett/dot.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/juliett/lib/juliett.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/juliett/lib/juliett.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/kilo/ganger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/kilo/ganger.json -------------------------------------------------------------------------------- /envs/test/lib/taskers/kilo/lib/kilo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/kilo/lib/kilo.rb -------------------------------------------------------------------------------- /envs/test/lib/taskers/pile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/lib/taskers/pile.rb -------------------------------------------------------------------------------- /envs/test/usr/net.acme/lib/taskers/tasker/flor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/usr/net.acme/lib/taskers/tasker/flor.json -------------------------------------------------------------------------------- /envs/test/usr/net.acme/lib/taskers/tasker/tasker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/test/usr/net.acme/lib/taskers/tasker/tasker.rb -------------------------------------------------------------------------------- /envs/uspec_loader/etc/variables/dot.json: -------------------------------------------------------------------------------- 1 | 2 | # etc/variables/dot.json 3 | 4 | flower: 'lilly' 5 | 6 | -------------------------------------------------------------------------------- /envs/uspec_loader/etc/variables/net.example.json: -------------------------------------------------------------------------------- 1 | 2 | # etc/variables/net.example.json 3 | 4 | car: 'alfa romeo' 5 | 6 | -------------------------------------------------------------------------------- /envs/uspec_loader/etc/variables/net.json: -------------------------------------------------------------------------------- 1 | 2 | # etc/variables/net.json 3 | 4 | car: fiat 5 | 6 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/flows/net.example/flow0.flor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/flows/org.example/flow0.flor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/hooks/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/lib/hooks/dot.json -------------------------------------------------------------------------------- /envs/uspec_loader/lib/hooks/org.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/lib/hooks/org.example.json -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/alice/dot.json: -------------------------------------------------------------------------------- 1 | 2 | description: 'basic alice' 3 | a: 'A' 4 | 5 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/com.example/charly/tasker.json: -------------------------------------------------------------------------------- 1 | 2 | description: '/cect.json' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/com.example/tasker/dot.json: -------------------------------------------------------------------------------- 1 | 2 | description: '/cet/dot.json' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/edu.example/echo/dot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/lib/taskers/edu.example/echo/dot.json -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/mil.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/lib/taskers/mil.example.json -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/mil.example/ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/lib/taskers/mil.example/ground.json -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/net.example/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/org.example/alice/dot.json: -------------------------------------------------------------------------------- 1 | 2 | description: 'org.example alice' 3 | ao: 'AO' 4 | 5 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/org.example/bob/dot.json: -------------------------------------------------------------------------------- 1 | 2 | description: 'org.example bob' 3 | bo: 'BO' 4 | 5 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/org.example/charly.json: -------------------------------------------------------------------------------- 1 | 2 | description: 'org.example charly' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/lib/taskers/zebulon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/lib/taskers/zebulon.rb -------------------------------------------------------------------------------- /envs/uspec_loader/usr/com.example.alpha/lib/taskers/tasker/dot.json: -------------------------------------------------------------------------------- 1 | 2 | description: '/usr/ceat/dot.json' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/com.example.bravo/lib/taskers/tasker/flor.json: -------------------------------------------------------------------------------- 1 | 2 | description: '/usr/cebt/flor.json' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/mil.example/lib/hooks/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/usr/mil.example/lib/hooks/hooks.json -------------------------------------------------------------------------------- /envs/uspec_loader/usr/mil.example/lib/taskers/air.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/envs/uspec_loader/usr/mil.example/lib/taskers/air.json -------------------------------------------------------------------------------- /envs/uspec_loader/usr/net.example/etc/variables/alpha.json: -------------------------------------------------------------------------------- 1 | 2 | car: lancia 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/net.example/etc/variables/alpha/dot.json: -------------------------------------------------------------------------------- 1 | 2 | flower: 'forget-me-not' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/net.example/etc/variables/flor.json: -------------------------------------------------------------------------------- 1 | 2 | # net.example 3 | 4 | flower: 'rose' 5 | 6 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/net.example/lib/flows/flow1.flo: -------------------------------------------------------------------------------- 1 | 2 | task 'alice' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/net.example/lib/taskers/bob/dot.json: -------------------------------------------------------------------------------- 1 | 2 | description: 'usr net.example bob' 3 | ubn: 'UBN' 4 | 5 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/org.example/etc/variables/dot.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/org.example/lib/flows/flow1.flor: -------------------------------------------------------------------------------- 1 | 2 | task 'oskar' 3 | 4 | -------------------------------------------------------------------------------- /envs/uspec_loader/usr/org.example/lib/taskers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/flor.gemspec -------------------------------------------------------------------------------- /lib/flor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor.rb -------------------------------------------------------------------------------- /lib/flor/colours.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/colours.rb -------------------------------------------------------------------------------- /lib/flor/conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/conf.rb -------------------------------------------------------------------------------- /lib/flor/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/core.rb -------------------------------------------------------------------------------- /lib/flor/core/executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/core/executor.rb -------------------------------------------------------------------------------- /lib/flor/core/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/core/node.rb -------------------------------------------------------------------------------- /lib/flor/core/procedure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/core/procedure.rb -------------------------------------------------------------------------------- /lib/flor/core/texecutor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/core/texecutor.rb -------------------------------------------------------------------------------- /lib/flor/djan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/djan.rb -------------------------------------------------------------------------------- /lib/flor/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/errors.rb -------------------------------------------------------------------------------- /lib/flor/flor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/flor.rb -------------------------------------------------------------------------------- /lib/flor/id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/id.rb -------------------------------------------------------------------------------- /lib/flor/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/log.rb -------------------------------------------------------------------------------- /lib/flor/migrations/0001_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/migrations/0001_tables.rb -------------------------------------------------------------------------------- /lib/flor/migrations/0002_cunit_and_munit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/migrations/0002_cunit_and_munit.rb -------------------------------------------------------------------------------- /lib/flor/migrations/0003_timer_onid_bnid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/migrations/0003_timer_onid_bnid.rb -------------------------------------------------------------------------------- /lib/flor/migrations/0004_trap_bnid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/migrations/0004_trap_bnid.rb -------------------------------------------------------------------------------- /lib/flor/migrations/0005_pointer_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/migrations/0005_pointer_content.rb -------------------------------------------------------------------------------- /lib/flor/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/parser.rb -------------------------------------------------------------------------------- /lib/flor/pcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/README.md -------------------------------------------------------------------------------- /lib/flor/pcore/_apply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_apply.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_arr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_arr.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_atom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_atom.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_att.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_att.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_coll.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_coll.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_dmute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_dmute.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_dol.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_dol.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_dqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_dqs.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_dump.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_err.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_err.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_head.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_head.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_obj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_obj.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_pat_.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_pat_.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_pat_arr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_pat_arr.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_pat_guard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_pat_guard.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_pat_obj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_pat_obj.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_pat_or.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_pat_or.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_pat_regex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_pat_regex.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_ref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_ref.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_rxs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_rxs.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_skip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_skip.rb -------------------------------------------------------------------------------- /lib/flor/pcore/_val.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/_val.rb -------------------------------------------------------------------------------- /lib/flor/pcore/all.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/all.rb -------------------------------------------------------------------------------- /lib/flor/pcore/andor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/andor.rb -------------------------------------------------------------------------------- /lib/flor/pcore/any.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/any.rb -------------------------------------------------------------------------------- /lib/flor/pcore/apply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/apply.rb -------------------------------------------------------------------------------- /lib/flor/pcore/arith.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/arith.rb -------------------------------------------------------------------------------- /lib/flor/pcore/array_qmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/array_qmark.rb -------------------------------------------------------------------------------- /lib/flor/pcore/break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/break.rb -------------------------------------------------------------------------------- /lib/flor/pcore/case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/case.rb -------------------------------------------------------------------------------- /lib/flor/pcore/cmp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/cmp.rb -------------------------------------------------------------------------------- /lib/flor/pcore/collect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/collect.rb -------------------------------------------------------------------------------- /lib/flor/pcore/cond.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/cond.rb -------------------------------------------------------------------------------- /lib/flor/pcore/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/cursor.rb -------------------------------------------------------------------------------- /lib/flor/pcore/define.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/define.rb -------------------------------------------------------------------------------- /lib/flor/pcore/del.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/del.rb -------------------------------------------------------------------------------- /lib/flor/pcore/detect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/detect.rb -------------------------------------------------------------------------------- /lib/flor/pcore/do_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/do_return.rb -------------------------------------------------------------------------------- /lib/flor/pcore/each.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/each.rb -------------------------------------------------------------------------------- /lib/flor/pcore/echo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/echo.rb -------------------------------------------------------------------------------- /lib/flor/pcore/empty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/empty.rb -------------------------------------------------------------------------------- /lib/flor/pcore/fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/fail.rb -------------------------------------------------------------------------------- /lib/flor/pcore/filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/filter.rb -------------------------------------------------------------------------------- /lib/flor/pcore/find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/find.rb -------------------------------------------------------------------------------- /lib/flor/pcore/flatten.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/flatten.rb -------------------------------------------------------------------------------- /lib/flor/pcore/for_each.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/for_each.rb -------------------------------------------------------------------------------- /lib/flor/pcore/if.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/if.rb -------------------------------------------------------------------------------- /lib/flor/pcore/includes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/includes.rb -------------------------------------------------------------------------------- /lib/flor/pcore/inject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/inject.rb -------------------------------------------------------------------------------- /lib/flor/pcore/iterator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/iterator.rb -------------------------------------------------------------------------------- /lib/flor/pcore/keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/keys.rb -------------------------------------------------------------------------------- /lib/flor/pcore/length.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/length.rb -------------------------------------------------------------------------------- /lib/flor/pcore/loop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/loop.rb -------------------------------------------------------------------------------- /lib/flor/pcore/map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/map.rb -------------------------------------------------------------------------------- /lib/flor/pcore/match.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/match.rb -------------------------------------------------------------------------------- /lib/flor/pcore/matchr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/matchr.rb -------------------------------------------------------------------------------- /lib/flor/pcore/max.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/max.rb -------------------------------------------------------------------------------- /lib/flor/pcore/merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/merge.rb -------------------------------------------------------------------------------- /lib/flor/pcore/move.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/move.rb -------------------------------------------------------------------------------- /lib/flor/pcore/noeval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/noeval.rb -------------------------------------------------------------------------------- /lib/flor/pcore/noret.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/noret.rb -------------------------------------------------------------------------------- /lib/flor/pcore/not.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/not.rb -------------------------------------------------------------------------------- /lib/flor/pcore/on.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/on.rb -------------------------------------------------------------------------------- /lib/flor/pcore/on_cancel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/on_cancel.rb -------------------------------------------------------------------------------- /lib/flor/pcore/on_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/on_error.rb -------------------------------------------------------------------------------- /lib/flor/pcore/on_receive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/on_receive.rb -------------------------------------------------------------------------------- /lib/flor/pcore/push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/push.rb -------------------------------------------------------------------------------- /lib/flor/pcore/rand.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/rand.rb -------------------------------------------------------------------------------- /lib/flor/pcore/range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/range.rb -------------------------------------------------------------------------------- /lib/flor/pcore/reduce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/reduce.rb -------------------------------------------------------------------------------- /lib/flor/pcore/return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/return.rb -------------------------------------------------------------------------------- /lib/flor/pcore/reverse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/reverse.rb -------------------------------------------------------------------------------- /lib/flor/pcore/select.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/select.rb -------------------------------------------------------------------------------- /lib/flor/pcore/sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/sequence.rb -------------------------------------------------------------------------------- /lib/flor/pcore/set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/set.rb -------------------------------------------------------------------------------- /lib/flor/pcore/shuffle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/shuffle.rb -------------------------------------------------------------------------------- /lib/flor/pcore/slice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/slice.rb -------------------------------------------------------------------------------- /lib/flor/pcore/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/sort.rb -------------------------------------------------------------------------------- /lib/flor/pcore/sort_by.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/sort_by.rb -------------------------------------------------------------------------------- /lib/flor/pcore/split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/split.rb -------------------------------------------------------------------------------- /lib/flor/pcore/stall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/stall.rb -------------------------------------------------------------------------------- /lib/flor/pcore/strings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/strings.rb -------------------------------------------------------------------------------- /lib/flor/pcore/timestamp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/timestamp.rb -------------------------------------------------------------------------------- /lib/flor/pcore/to_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/to_array.rb -------------------------------------------------------------------------------- /lib/flor/pcore/twig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/twig.rb -------------------------------------------------------------------------------- /lib/flor/pcore/type_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/type_of.rb -------------------------------------------------------------------------------- /lib/flor/pcore/until.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/pcore/until.rb -------------------------------------------------------------------------------- /lib/flor/punit/abort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/abort.rb -------------------------------------------------------------------------------- /lib/flor/punit/c_collect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/c_collect.rb -------------------------------------------------------------------------------- /lib/flor/punit/c_each.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/c_each.rb -------------------------------------------------------------------------------- /lib/flor/punit/c_for_each.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/c_for_each.rb -------------------------------------------------------------------------------- /lib/flor/punit/c_iterator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/c_iterator.rb -------------------------------------------------------------------------------- /lib/flor/punit/c_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/c_map.rb -------------------------------------------------------------------------------- /lib/flor/punit/cancel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/cancel.rb -------------------------------------------------------------------------------- /lib/flor/punit/concurrence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/concurrence.rb -------------------------------------------------------------------------------- /lib/flor/punit/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/cron.rb -------------------------------------------------------------------------------- /lib/flor/punit/do_trap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/do_trap.rb -------------------------------------------------------------------------------- /lib/flor/punit/every.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/every.rb -------------------------------------------------------------------------------- /lib/flor/punit/graft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/graft.rb -------------------------------------------------------------------------------- /lib/flor/punit/m_receive_and_merge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/m_receive_and_merge.rb -------------------------------------------------------------------------------- /lib/flor/punit/on_timeout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/on_timeout.rb -------------------------------------------------------------------------------- /lib/flor/punit/part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/part.rb -------------------------------------------------------------------------------- /lib/flor/punit/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/schedule.rb -------------------------------------------------------------------------------- /lib/flor/punit/signal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/signal.rb -------------------------------------------------------------------------------- /lib/flor/punit/sleep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/sleep.rb -------------------------------------------------------------------------------- /lib/flor/punit/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/task.rb -------------------------------------------------------------------------------- /lib/flor/punit/trace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/trace.rb -------------------------------------------------------------------------------- /lib/flor/punit/trap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/punit/trap.rb -------------------------------------------------------------------------------- /lib/flor/to_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/to_string.rb -------------------------------------------------------------------------------- /lib/flor/tools/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/tools/env.rb -------------------------------------------------------------------------------- /lib/flor/tools/firb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/tools/firb.rb -------------------------------------------------------------------------------- /lib/flor/tools/flotojson.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/tools/flotojson.rb -------------------------------------------------------------------------------- /lib/flor/tools/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/tools/shell.rb -------------------------------------------------------------------------------- /lib/flor/tools/shell_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/tools/shell_out.rb -------------------------------------------------------------------------------- /lib/flor/tt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/tt.rb -------------------------------------------------------------------------------- /lib/flor/unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit.rb -------------------------------------------------------------------------------- /lib/flor/unit/caller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/caller.rb -------------------------------------------------------------------------------- /lib/flor/unit/caller_jruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/caller_jruby.rb -------------------------------------------------------------------------------- /lib/flor/unit/dump.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/dump.rb -------------------------------------------------------------------------------- /lib/flor/unit/executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/executor.rb -------------------------------------------------------------------------------- /lib/flor/unit/ganger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/ganger.rb -------------------------------------------------------------------------------- /lib/flor/unit/gangers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/gangers.rb -------------------------------------------------------------------------------- /lib/flor/unit/hloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/hloader.rb -------------------------------------------------------------------------------- /lib/flor/unit/hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/hook.rb -------------------------------------------------------------------------------- /lib/flor/unit/hooker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/hooker.rb -------------------------------------------------------------------------------- /lib/flor/unit/journal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/journal.rb -------------------------------------------------------------------------------- /lib/flor/unit/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/loader.rb -------------------------------------------------------------------------------- /lib/flor/unit/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/logger.rb -------------------------------------------------------------------------------- /lib/flor/unit/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models.rb -------------------------------------------------------------------------------- /lib/flor/unit/models/execution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models/execution.rb -------------------------------------------------------------------------------- /lib/flor/unit/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models/message.rb -------------------------------------------------------------------------------- /lib/flor/unit/models/pointer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models/pointer.rb -------------------------------------------------------------------------------- /lib/flor/unit/models/timer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models/timer.rb -------------------------------------------------------------------------------- /lib/flor/unit/models/trace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models/trace.rb -------------------------------------------------------------------------------- /lib/flor/unit/models/trap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/models/trap.rb -------------------------------------------------------------------------------- /lib/flor/unit/scheduler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/scheduler.rb -------------------------------------------------------------------------------- /lib/flor/unit/spooler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/spooler.rb -------------------------------------------------------------------------------- /lib/flor/unit/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/storage.rb -------------------------------------------------------------------------------- /lib/flor/unit/taskers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/taskers.rb -------------------------------------------------------------------------------- /lib/flor/unit/waiter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/waiter.rb -------------------------------------------------------------------------------- /lib/flor/unit/wlist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/lib/flor/unit/wlist.rb -------------------------------------------------------------------------------- /mak/doc_procedures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/mak/doc_procedures.rb -------------------------------------------------------------------------------- /mak/ptree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/mak/ptree.rb -------------------------------------------------------------------------------- /misc/flor.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/misc/flor.vim -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/README.md -------------------------------------------------------------------------------- /spec/conf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/conf_spec.rb -------------------------------------------------------------------------------- /spec/core/applications_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/applications_spec.rb -------------------------------------------------------------------------------- /spec/core/attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/attributes_spec.rb -------------------------------------------------------------------------------- /spec/core/cancel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/cancel_spec.rb -------------------------------------------------------------------------------- /spec/core/common_attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/common_attributes_spec.rb -------------------------------------------------------------------------------- /spec/core/core_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/core_spec.rb -------------------------------------------------------------------------------- /spec/core/dollar_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/dollar_spec.rb -------------------------------------------------------------------------------- /spec/core/fields_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/fields_spec.rb -------------------------------------------------------------------------------- /spec/core/if_unless_suffix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/if_unless_suffix_spec.rb -------------------------------------------------------------------------------- /spec/core/journal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/journal_spec.rb -------------------------------------------------------------------------------- /spec/core/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/node_spec.rb -------------------------------------------------------------------------------- /spec/core/on_cancel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/on_cancel_spec.rb -------------------------------------------------------------------------------- /spec/core/on_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/on_error_spec.rb -------------------------------------------------------------------------------- /spec/core/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/tags_spec.rb -------------------------------------------------------------------------------- /spec/core/variables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/core/variables_spec.rb -------------------------------------------------------------------------------- /spec/djan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/djan_spec.rb -------------------------------------------------------------------------------- /spec/flor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/flor_spec.rb -------------------------------------------------------------------------------- /spec/id_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/id_spec.rb -------------------------------------------------------------------------------- /spec/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/node_spec.rb -------------------------------------------------------------------------------- /spec/parser_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/parser_spec.md -------------------------------------------------------------------------------- /spec/parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/parser_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_arr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_arr_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_atom_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_atom_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_dqs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_dqs_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_obj_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_obj_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_pat_arr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_pat_arr_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_pat_guard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_pat_guard_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_pat_obj_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_pat_obj_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_pat_or_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_pat_or_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_pat_regex_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_pat_regex_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_ref_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_ref_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_rxs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_rxs_spec.rb -------------------------------------------------------------------------------- /spec/pcore/_skip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/_skip_spec.rb -------------------------------------------------------------------------------- /spec/pcore/all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/all_spec.rb -------------------------------------------------------------------------------- /spec/pcore/andor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/andor_spec.rb -------------------------------------------------------------------------------- /spec/pcore/any_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/any_spec.rb -------------------------------------------------------------------------------- /spec/pcore/apply_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/apply_spec.rb -------------------------------------------------------------------------------- /spec/pcore/arith_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/arith_spec.rb -------------------------------------------------------------------------------- /spec/pcore/array_qmark_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/array_qmark_spec.rb -------------------------------------------------------------------------------- /spec/pcore/break_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/break_spec.rb -------------------------------------------------------------------------------- /spec/pcore/case_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/case_spec.rb -------------------------------------------------------------------------------- /spec/pcore/cmp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/cmp_spec.rb -------------------------------------------------------------------------------- /spec/pcore/collect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/collect_spec.rb -------------------------------------------------------------------------------- /spec/pcore/cond_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/cond_spec.rb -------------------------------------------------------------------------------- /spec/pcore/cursor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/cursor_spec.rb -------------------------------------------------------------------------------- /spec/pcore/define_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/define_spec.rb -------------------------------------------------------------------------------- /spec/pcore/del_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/del_spec.rb -------------------------------------------------------------------------------- /spec/pcore/detect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/detect_spec.rb -------------------------------------------------------------------------------- /spec/pcore/do_return_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/do_return_spec.rb -------------------------------------------------------------------------------- /spec/pcore/each_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/each_spec.rb -------------------------------------------------------------------------------- /spec/pcore/empty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/empty_spec.rb -------------------------------------------------------------------------------- /spec/pcore/fail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/fail_spec.rb -------------------------------------------------------------------------------- /spec/pcore/filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/filter_spec.rb -------------------------------------------------------------------------------- /spec/pcore/find_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/find_spec.rb -------------------------------------------------------------------------------- /spec/pcore/flatten_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/flatten_spec.rb -------------------------------------------------------------------------------- /spec/pcore/for_each_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/for_each_spec.rb -------------------------------------------------------------------------------- /spec/pcore/if_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/if_spec.rb -------------------------------------------------------------------------------- /spec/pcore/includes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/includes_spec.rb -------------------------------------------------------------------------------- /spec/pcore/inject_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/inject_spec.rb -------------------------------------------------------------------------------- /spec/pcore/keys_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/keys_spec.rb -------------------------------------------------------------------------------- /spec/pcore/length_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/length_spec.rb -------------------------------------------------------------------------------- /spec/pcore/loop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/loop_spec.rb -------------------------------------------------------------------------------- /spec/pcore/map_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/map_spec.rb -------------------------------------------------------------------------------- /spec/pcore/match_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/match_spec.rb -------------------------------------------------------------------------------- /spec/pcore/matchr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/matchr_spec.rb -------------------------------------------------------------------------------- /spec/pcore/max_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/max_spec.rb -------------------------------------------------------------------------------- /spec/pcore/merge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/merge_spec.rb -------------------------------------------------------------------------------- /spec/pcore/move_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/move_spec.rb -------------------------------------------------------------------------------- /spec/pcore/noeval_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/noeval_spec.rb -------------------------------------------------------------------------------- /spec/pcore/noret_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/noret_spec.rb -------------------------------------------------------------------------------- /spec/pcore/not_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/not_spec.rb -------------------------------------------------------------------------------- /spec/pcore/on_cancel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/on_cancel_spec.rb -------------------------------------------------------------------------------- /spec/pcore/on_error_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/on_error_spec.rb -------------------------------------------------------------------------------- /spec/pcore/on_receive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/on_receive_spec.rb -------------------------------------------------------------------------------- /spec/pcore/on_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/on_spec.rb -------------------------------------------------------------------------------- /spec/pcore/procedure_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/procedure_spec.rb -------------------------------------------------------------------------------- /spec/pcore/push_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/push_spec.rb -------------------------------------------------------------------------------- /spec/pcore/rand_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/rand_spec.rb -------------------------------------------------------------------------------- /spec/pcore/range_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/range_spec.rb -------------------------------------------------------------------------------- /spec/pcore/reduce_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/reduce_spec.rb -------------------------------------------------------------------------------- /spec/pcore/return_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/return_spec.rb -------------------------------------------------------------------------------- /spec/pcore/reverse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/reverse_spec.rb -------------------------------------------------------------------------------- /spec/pcore/select_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/select_spec.rb -------------------------------------------------------------------------------- /spec/pcore/sequence_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/sequence_spec.rb -------------------------------------------------------------------------------- /spec/pcore/set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/set_spec.rb -------------------------------------------------------------------------------- /spec/pcore/shuffle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/shuffle_spec.rb -------------------------------------------------------------------------------- /spec/pcore/slice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/slice_spec.rb -------------------------------------------------------------------------------- /spec/pcore/sort_by_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/sort_by_spec.rb -------------------------------------------------------------------------------- /spec/pcore/sort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/sort_spec.rb -------------------------------------------------------------------------------- /spec/pcore/split_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/split_spec.rb -------------------------------------------------------------------------------- /spec/pcore/stall_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/stall_spec.rb -------------------------------------------------------------------------------- /spec/pcore/strings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/strings_spec.rb -------------------------------------------------------------------------------- /spec/pcore/timestamp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/timestamp_spec.rb -------------------------------------------------------------------------------- /spec/pcore/to_array_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/to_array_spec.rb -------------------------------------------------------------------------------- /spec/pcore/twig_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/twig_spec.rb -------------------------------------------------------------------------------- /spec/pcore/type_of_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/type_of_spec.rb -------------------------------------------------------------------------------- /spec/pcore/until_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/pcore/until_spec.rb -------------------------------------------------------------------------------- /spec/punit/_arr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/_arr_spec.rb -------------------------------------------------------------------------------- /spec/punit/abort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/abort_spec.rb -------------------------------------------------------------------------------- /spec/punit/c_collect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/c_collect_spec.rb -------------------------------------------------------------------------------- /spec/punit/c_each_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/c_each_spec.rb -------------------------------------------------------------------------------- /spec/punit/c_for_each_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/c_for_each_spec.rb -------------------------------------------------------------------------------- /spec/punit/c_map_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/c_map_spec.rb -------------------------------------------------------------------------------- /spec/punit/cancel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/cancel_spec.rb -------------------------------------------------------------------------------- /spec/punit/concurrence_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/concurrence_spec.rb -------------------------------------------------------------------------------- /spec/punit/cron_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/cron_spec.rb -------------------------------------------------------------------------------- /spec/punit/do_trap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/do_trap_spec.rb -------------------------------------------------------------------------------- /spec/punit/every_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/every_spec.rb -------------------------------------------------------------------------------- /spec/punit/graft_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/graft_spec.rb -------------------------------------------------------------------------------- /spec/punit/on_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/on_spec.rb -------------------------------------------------------------------------------- /spec/punit/on_timeout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/on_timeout_spec.rb -------------------------------------------------------------------------------- /spec/punit/part_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/part_spec.rb -------------------------------------------------------------------------------- /spec/punit/schedule_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/schedule_spec.rb -------------------------------------------------------------------------------- /spec/punit/signal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/signal_spec.rb -------------------------------------------------------------------------------- /spec/punit/sleep_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/sleep_spec.rb -------------------------------------------------------------------------------- /spec/punit/task_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/task_spec.rb -------------------------------------------------------------------------------- /spec/punit/trace_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/trace_spec.rb -------------------------------------------------------------------------------- /spec/punit/trap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/punit/trap_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/add_branch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/add_branch_spec.rb -------------------------------------------------------------------------------- /spec/unit/add_iteration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/add_iteration_spec.rb -------------------------------------------------------------------------------- /spec/unit/attributes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/attributes_spec.rb -------------------------------------------------------------------------------- /spec/unit/caller_jruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/caller_jruby_spec.rb -------------------------------------------------------------------------------- /spec/unit/caller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/caller_spec.rb -------------------------------------------------------------------------------- /spec/unit/cancel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/cancel_spec.rb -------------------------------------------------------------------------------- /spec/unit/concurrency_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/concurrency_spec.rb -------------------------------------------------------------------------------- /spec/unit/conf_hooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/conf_hooks_spec.rb -------------------------------------------------------------------------------- /spec/unit/dump_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/dump_spec.rb -------------------------------------------------------------------------------- /spec/unit/errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/errors_spec.rb -------------------------------------------------------------------------------- /spec/unit/execution_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/execution_spec.rb -------------------------------------------------------------------------------- /spec/unit/flanking_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/flanking_spec.rb -------------------------------------------------------------------------------- /spec/unit/ganger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/ganger_spec.rb -------------------------------------------------------------------------------- /spec/unit/hloader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/hloader_spec.rb -------------------------------------------------------------------------------- /spec/unit/hooks/alpha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/hooks/alpha.rb -------------------------------------------------------------------------------- /spec/unit/hooks/bravo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/hooks/bravo.rb -------------------------------------------------------------------------------- /spec/unit/hooks/for_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/hooks/for_caller.py -------------------------------------------------------------------------------- /spec/unit/hooks/for_caller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/hooks/for_caller.rb -------------------------------------------------------------------------------- /spec/unit/loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/loader_spec.rb -------------------------------------------------------------------------------- /spec/unit/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/logger_spec.rb -------------------------------------------------------------------------------- /spec/unit/misc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/misc_spec.rb -------------------------------------------------------------------------------- /spec/unit/model_execution_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/model_execution_spec.rb -------------------------------------------------------------------------------- /spec/unit/model_pointer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/model_pointer_spec.rb -------------------------------------------------------------------------------- /spec/unit/module_ganger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/module_ganger_spec.rb -------------------------------------------------------------------------------- /spec/unit/on_receive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/on_receive_spec.rb -------------------------------------------------------------------------------- /spec/unit/on_timeout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/on_timeout_spec.rb -------------------------------------------------------------------------------- /spec/unit/pointers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/pointers_spec.rb -------------------------------------------------------------------------------- /spec/unit/push_and_runs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/push_and_runs_spec.rb -------------------------------------------------------------------------------- /spec/unit/re_apply_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/re_apply_spec.rb -------------------------------------------------------------------------------- /spec/unit/scheduler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/scheduler_spec.rb -------------------------------------------------------------------------------- /spec/unit/spooler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/spooler_spec.rb -------------------------------------------------------------------------------- /spec/unit/staged_basic_tasker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/staged_basic_tasker_spec.rb -------------------------------------------------------------------------------- /spec/unit/sto_uri_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/sto_uri_spec.rb -------------------------------------------------------------------------------- /spec/unit/storage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/storage_spec.rb -------------------------------------------------------------------------------- /spec/unit/sub_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/sub_spec.rb -------------------------------------------------------------------------------- /spec/unit/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/tags_spec.rb -------------------------------------------------------------------------------- /spec/unit/task_applications_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/task_applications_spec.rb -------------------------------------------------------------------------------- /spec/unit/tasker_name_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/tasker_name_spec.rb -------------------------------------------------------------------------------- /spec/unit/taskers_2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/taskers_2_spec.rb -------------------------------------------------------------------------------- /spec/unit/taskers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/taskers_spec.rb -------------------------------------------------------------------------------- /spec/unit/timeout_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/timeout_spec.rb -------------------------------------------------------------------------------- /spec/unit/unit_hloader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/unit_hloader_spec.rb -------------------------------------------------------------------------------- /spec/unit/unit_hooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/unit_hooks_spec.rb -------------------------------------------------------------------------------- /spec/unit/unit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/unit_spec.rb -------------------------------------------------------------------------------- /spec/unit/variables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/variables_spec.rb -------------------------------------------------------------------------------- /spec/unit/waiter_launch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/waiter_launch_spec.rb -------------------------------------------------------------------------------- /spec/unit/waiter_multi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/waiter_multi_spec.rb -------------------------------------------------------------------------------- /spec/unit/waiter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/waiter_spec.rb -------------------------------------------------------------------------------- /spec/unit/waiter_wait_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floraison/flor/HEAD/spec/unit/waiter_wait_spec.rb -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------