cuboid 0.0.0 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +0 -0
- data/Gemfile +22 -5
- data/LICENSE.md +22 -0
- data/README.md +158 -19
- data/Rakefile +56 -3
- data/config/paths.yml +15 -0
- data/cuboid.gemspec +61 -23
- data/lib/cuboid/application/parts/data.rb +18 -0
- data/lib/cuboid/application/parts/report.rb +29 -0
- data/lib/cuboid/application/parts/state.rb +274 -0
- data/lib/cuboid/application/runtime.rb +25 -0
- data/lib/cuboid/application.rb +326 -0
- data/lib/cuboid/banner.rb +13 -0
- data/lib/cuboid/data/application.rb +52 -0
- data/lib/cuboid/data.rb +86 -0
- data/lib/cuboid/error.rb +9 -0
- data/lib/cuboid/option_group.rb +129 -0
- data/lib/cuboid/option_groups/datastore.rb +23 -0
- data/lib/cuboid/option_groups/dispatcher.rb +38 -0
- data/lib/cuboid/option_groups/output.rb +14 -0
- data/lib/cuboid/option_groups/paths.rb +184 -0
- data/lib/cuboid/option_groups/report.rb +39 -0
- data/lib/cuboid/option_groups/rpc.rb +105 -0
- data/lib/cuboid/option_groups/scheduler.rb +27 -0
- data/lib/cuboid/option_groups/snapshot.rb +13 -0
- data/lib/cuboid/option_groups/system.rb +10 -0
- data/lib/cuboid/option_groups.rb +8 -0
- data/lib/cuboid/options.rb +254 -0
- data/lib/cuboid/processes/dispatchers.rb +140 -0
- data/lib/cuboid/processes/executables/base.rb +54 -0
- data/lib/cuboid/processes/executables/dispatcher.rb +5 -0
- data/lib/cuboid/processes/executables/instance.rb +12 -0
- data/lib/cuboid/processes/executables/rest_service.rb +13 -0
- data/lib/cuboid/processes/executables/scheduler.rb +5 -0
- data/lib/cuboid/processes/helpers/dispatchers.rb +23 -0
- data/lib/cuboid/processes/helpers/instances.rb +39 -0
- data/lib/cuboid/processes/helpers/processes.rb +23 -0
- data/lib/cuboid/processes/helpers/schedulers.rb +23 -0
- data/lib/cuboid/processes/helpers.rb +4 -0
- data/lib/cuboid/processes/instances.rb +203 -0
- data/lib/cuboid/processes/manager.rb +262 -0
- data/lib/cuboid/processes/schedulers.rb +128 -0
- data/lib/cuboid/processes.rb +13 -0
- data/lib/cuboid/report.rb +220 -0
- data/lib/cuboid/rest/server/instance_helpers.rb +99 -0
- data/lib/cuboid/rest/server/routes/dispatcher.rb +41 -0
- data/lib/cuboid/rest/server/routes/grid.rb +41 -0
- data/lib/cuboid/rest/server/routes/instances.rb +131 -0
- data/lib/cuboid/rest/server/routes/scheduler.rb +140 -0
- data/lib/cuboid/rest/server.rb +165 -0
- data/lib/cuboid/rpc/client/base.rb +58 -0
- data/lib/cuboid/rpc/client/dispatcher.rb +58 -0
- data/lib/cuboid/rpc/client/instance/service.rb +37 -0
- data/lib/cuboid/rpc/client/instance.rb +100 -0
- data/lib/cuboid/rpc/client/scheduler.rb +46 -0
- data/lib/cuboid/rpc/client.rb +3 -0
- data/lib/cuboid/rpc/serializer.rb +92 -0
- data/lib/cuboid/rpc/server/active_options.rb +38 -0
- data/lib/cuboid/rpc/server/application_wrapper.rb +138 -0
- data/lib/cuboid/rpc/server/base.rb +63 -0
- data/lib/cuboid/rpc/server/dispatcher/node.rb +247 -0
- data/lib/cuboid/rpc/server/dispatcher/service.rb +145 -0
- data/lib/cuboid/rpc/server/dispatcher.rb +317 -0
- data/lib/cuboid/rpc/server/instance.rb +338 -0
- data/lib/cuboid/rpc/server/output.rb +92 -0
- data/lib/cuboid/rpc/server/scheduler.rb +482 -0
- data/lib/cuboid/ruby/array.rb +17 -0
- data/lib/cuboid/ruby/hash.rb +41 -0
- data/lib/cuboid/ruby/object.rb +32 -0
- data/lib/cuboid/ruby.rb +4 -0
- data/lib/cuboid/snapshot.rb +186 -0
- data/lib/cuboid/state/application.rb +309 -0
- data/lib/cuboid/state/options.rb +27 -0
- data/lib/cuboid/state.rb +94 -0
- data/lib/cuboid/support/buffer/autoflush.rb +61 -0
- data/lib/cuboid/support/buffer/base.rb +91 -0
- data/lib/cuboid/support/buffer.rb +3 -0
- data/lib/cuboid/support/cache/base.rb +226 -0
- data/lib/cuboid/support/cache/least_cost_replacement.rb +77 -0
- data/lib/cuboid/support/cache/least_recently_pushed.rb +21 -0
- data/lib/cuboid/support/cache/least_recently_used.rb +31 -0
- data/lib/cuboid/support/cache/preference.rb +31 -0
- data/lib/cuboid/support/cache/random_replacement.rb +20 -0
- data/lib/cuboid/support/cache.rb +7 -0
- data/lib/cuboid/support/crypto/rsa_aes_cbc.rb +86 -0
- data/lib/cuboid/support/crypto.rb +2 -0
- data/lib/cuboid/support/database/base.rb +177 -0
- data/lib/cuboid/support/database/categorized_queue.rb +195 -0
- data/lib/cuboid/support/database/hash.rb +300 -0
- data/lib/cuboid/support/database/queue.rb +149 -0
- data/lib/cuboid/support/database.rb +5 -0
- data/lib/cuboid/support/filter/base.rb +110 -0
- data/lib/cuboid/support/filter/set.rb +29 -0
- data/lib/cuboid/support/filter.rb +3 -0
- data/lib/cuboid/support/glob.rb +27 -0
- data/lib/cuboid/support/mixins/observable.rb +99 -0
- data/lib/cuboid/support/mixins/parts.rb +20 -0
- data/lib/cuboid/support/mixins/profiler.rb +93 -0
- data/lib/cuboid/support/mixins/spec_instances.rb +65 -0
- data/lib/cuboid/support/mixins/terminal.rb +57 -0
- data/lib/cuboid/support/mixins.rb +8 -0
- data/lib/cuboid/support.rb +11 -0
- data/lib/cuboid/system/platforms/linux.rb +26 -0
- data/lib/cuboid/system/platforms/mixins/unix.rb +46 -0
- data/lib/cuboid/system/platforms/osx.rb +25 -0
- data/lib/cuboid/system/platforms/windows.rb +81 -0
- data/lib/cuboid/system/platforms.rb +84 -0
- data/lib/cuboid/system/slots.rb +143 -0
- data/lib/cuboid/system.rb +119 -0
- data/lib/cuboid/ui/output.rb +52 -0
- data/lib/cuboid/ui/output_interface/abstract.rb +68 -0
- data/lib/cuboid/ui/output_interface/controls.rb +84 -0
- data/lib/cuboid/ui/output_interface/error_logging.rb +119 -0
- data/lib/cuboid/ui/output_interface/implemented.rb +58 -0
- data/lib/cuboid/ui/output_interface/personalization.rb +62 -0
- data/lib/cuboid/ui/output_interface.rb +43 -0
- data/lib/cuboid/utilities.rb +155 -0
- data/lib/cuboid/version.rb +4 -3
- data/lib/cuboid.rb +96 -4
- data/lib/version +1 -0
- data/logs/error-3207383.log +106 -0
- data/logs/error-3207482.log +106 -0
- data/logs/error-3208344.log +109 -0
- data/logs/error-3208460.log +106 -0
- data/logs/error-903730.log +105 -0
- data/logs/error-903846.log +105 -0
- data/logs/error-904783.log +108 -0
- data/logs/error-905101.log +105 -0
- data/logs/placeholder +0 -0
- data/spec/cuboid/application/parts/data_spec.rb +12 -0
- data/spec/cuboid/application/parts/report_spec.rb +6 -0
- data/spec/cuboid/application/parts/state_spec.rb +192 -0
- data/spec/cuboid/application/runtime_spec.rb +21 -0
- data/spec/cuboid/application_spec.rb +37 -0
- data/spec/cuboid/data/application_spec.rb +22 -0
- data/spec/cuboid/data_spec.rb +47 -0
- data/spec/cuboid/error_spec.rb +23 -0
- data/spec/cuboid/option_groups/datastore_spec.rb +54 -0
- data/spec/cuboid/option_groups/dispatcher_spec.rb +12 -0
- data/spec/cuboid/option_groups/output_spec.rb +11 -0
- data/spec/cuboid/option_groups/paths_spec.rb +184 -0
- data/spec/cuboid/option_groups/report_spec.rb +26 -0
- data/spec/cuboid/option_groups/rpc_spec.rb +53 -0
- data/spec/cuboid/option_groups/snapshot_spec.rb +26 -0
- data/spec/cuboid/option_groups/system.rb +12 -0
- data/spec/cuboid/options_spec.rb +218 -0
- data/spec/cuboid/report_spec.rb +221 -0
- data/spec/cuboid/rest/server_spec.rb +1205 -0
- data/spec/cuboid/rpc/client/base_spec.rb +151 -0
- data/spec/cuboid/rpc/client/dispatcher_spec.rb +13 -0
- data/spec/cuboid/rpc/client/instance_spec.rb +38 -0
- data/spec/cuboid/rpc/server/active_options_spec.rb +21 -0
- data/spec/cuboid/rpc/server/base_spec.rb +60 -0
- data/spec/cuboid/rpc/server/dispatcher/node_spec.rb +222 -0
- data/spec/cuboid/rpc/server/dispatcher/service_spec.rb +112 -0
- data/spec/cuboid/rpc/server/dispatcher_spec.rb +317 -0
- data/spec/cuboid/rpc/server/instance_spec.rb +307 -0
- data/spec/cuboid/rpc/server/output_spec.rb +32 -0
- data/spec/cuboid/rpc/server/scheduler_spec.rb +400 -0
- data/spec/cuboid/ruby/array_spec.rb +77 -0
- data/spec/cuboid/ruby/hash_spec.rb +63 -0
- data/spec/cuboid/ruby/object_spec.rb +22 -0
- data/spec/cuboid/snapshot_spec.rb +123 -0
- data/spec/cuboid/state/application_spec.rb +538 -0
- data/spec/cuboid/state/options_spec.rb +37 -0
- data/spec/cuboid/state_spec.rb +53 -0
- data/spec/cuboid/support/buffer/autoflush_spec.rb +78 -0
- data/spec/cuboid/support/buffer/base_spec.rb +193 -0
- data/spec/cuboid/support/cache/least_cost_replacement_spec.rb +61 -0
- data/spec/cuboid/support/cache/least_recently_pushed_spec.rb +90 -0
- data/spec/cuboid/support/cache/least_recently_used_spec.rb +80 -0
- data/spec/cuboid/support/cache/preference_spec.rb +37 -0
- data/spec/cuboid/support/cache/random_replacement_spec.rb +42 -0
- data/spec/cuboid/support/crypto/rsa_aes_cbc_spec.rb +28 -0
- data/spec/cuboid/support/database/categorized_queue_spec.rb +327 -0
- data/spec/cuboid/support/database/hash_spec.rb +204 -0
- data/spec/cuboid/support/database/scheduler_spec.rb +325 -0
- data/spec/cuboid/support/filter/set_spec.rb +19 -0
- data/spec/cuboid/support/glob_spec.rb +75 -0
- data/spec/cuboid/support/mixins/observable_spec.rb +95 -0
- data/spec/cuboid/system/platforms/linux_spec.rb +31 -0
- data/spec/cuboid/system/platforms/osx_spec.rb +32 -0
- data/spec/cuboid/system/platforms/windows_spec.rb +41 -0
- data/spec/cuboid/system/slots_spec.rb +202 -0
- data/spec/cuboid/system_spec.rb +105 -0
- data/spec/cuboid/utilities_spec.rb +131 -0
- data/spec/spec_helper.rb +46 -0
- data/spec/support/factories/placeholder +0 -0
- data/spec/support/factories/scan_report.rb +18 -0
- data/spec/support/fixtures/empty/placeholder +0 -0
- data/spec/support/fixtures/executables/node.rb +50 -0
- data/spec/support/fixtures/mock_app/test_service.rb +64 -0
- data/spec/support/fixtures/mock_app.rb +61 -0
- data/spec/support/fixtures/services/echo.rb +64 -0
- data/spec/support/helpers/framework.rb +3 -0
- data/spec/support/helpers/matchers.rb +5 -0
- data/spec/support/helpers/misc.rb +3 -0
- data/spec/support/helpers/paths.rb +15 -0
- data/spec/support/helpers/request_helpers.rb +38 -0
- data/spec/support/helpers/requires.rb +8 -0
- data/spec/support/helpers/resets.rb +52 -0
- data/spec/support/helpers/web_server.rb +15 -0
- data/spec/support/lib/factory.rb +107 -0
- data/spec/support/lib/web_server_client.rb +41 -0
- data/spec/support/lib/web_server_dispatcher.rb +25 -0
- data/spec/support/lib/web_server_manager.rb +118 -0
- data/spec/support/logs/Dispatcher - 3204062-27546.log +6 -0
- data/spec/support/logs/Dispatcher - 3207166-30195.log +6 -0
- data/spec/support/logs/Dispatcher - 3207418-16491.log +6 -0
- data/spec/support/logs/Dispatcher - 3207420-23797.log +6 -0
- data/spec/support/logs/Dispatcher - 3207424-64333.log +6 -0
- data/spec/support/logs/Dispatcher - 3207427-50621.log +10 -0
- data/spec/support/logs/Dispatcher - 3207429-15351.log +10 -0
- data/spec/support/logs/Dispatcher - 3207432-3685.log +10 -0
- data/spec/support/logs/Dispatcher - 3207436-43126.log +10 -0
- data/spec/support/logs/Dispatcher - 3207438-58131.log +10 -0
- data/spec/support/logs/Dispatcher - 3207440-32187.log +10 -0
- data/spec/support/logs/Dispatcher - 3207654-42085.log +6 -0
- data/spec/support/logs/Dispatcher - 3207769-16303.log +6 -0
- data/spec/support/logs/Dispatcher - 3207771-31196.log +6 -0
- data/spec/support/logs/Dispatcher - 3207773-53419.log +6 -0
- data/spec/support/logs/Dispatcher - 3207775-17015.log +6 -0
- data/spec/support/logs/Dispatcher - 3207787-56572.log +6 -0
- data/spec/support/logs/Dispatcher - 3207799-41227.log +6 -0
- data/spec/support/logs/Dispatcher - 3207815-49397.log +6 -0
- data/spec/support/logs/Dispatcher - 3207817-13826.log +6 -0
- data/spec/support/logs/Dispatcher - 3207819-46821.log +6 -0
- data/spec/support/logs/Dispatcher - 3207821-37991.log +6 -0
- data/spec/support/logs/Dispatcher - 3207825-52955.log +6 -0
- data/spec/support/logs/Dispatcher - 3207829-12122.log +6 -0
- data/spec/support/logs/Dispatcher - 3207831-58485.log +16 -0
- data/spec/support/logs/Dispatcher - 3207833-47083.log +14 -0
- data/spec/support/logs/Dispatcher - 3207837-53679.log +10 -0
- data/spec/support/logs/Dispatcher - 3207847-12037.log +16 -0
- data/spec/support/logs/Dispatcher - 3207852-64296.log +14 -0
- data/spec/support/logs/Dispatcher - 3207858-56473.log +10 -0
- data/spec/support/logs/Dispatcher - 3207864-26736.log +6 -0
- data/spec/support/logs/Dispatcher - 3207866-24113.log +6 -0
- data/spec/support/logs/Dispatcher - 3207870-6896.log +6 -0
- data/spec/support/logs/Dispatcher - 3207873-16434.log +6 -0
- data/spec/support/logs/Dispatcher - 3207885-31058.log +6 -0
- data/spec/support/logs/Dispatcher - 3207891-19927.log +6 -0
- data/spec/support/logs/Dispatcher - 3207897-41533.log +6 -0
- data/spec/support/logs/Dispatcher - 3207903-26815.log +6 -0
- data/spec/support/logs/Dispatcher - 3207909-25294.log +6 -0
- data/spec/support/logs/Dispatcher - 3207929-51610.log +6 -0
- data/spec/support/logs/Dispatcher - 3207990-8943.log +16 -0
- data/spec/support/logs/Dispatcher - 3208000-30657.log +14 -0
- data/spec/support/logs/Dispatcher - 3208010-54017.log +10 -0
- data/spec/support/logs/Dispatcher - 3208041-58792.log +16 -0
- data/spec/support/logs/Dispatcher - 3208047-50811.log +14 -0
- data/spec/support/logs/Dispatcher - 3208051-52018.log +10 -0
- data/spec/support/logs/Dispatcher - 3208067-46852.log +6 -0
- data/spec/support/logs/Dispatcher - 3208075-56209.log +6 -0
- data/spec/support/logs/Dispatcher - 3208088-4783.log +6 -0
- data/spec/support/logs/Dispatcher - 3208100-47518.log +6 -0
- data/spec/support/logs/Dispatcher - 3208115-25109.log +6 -0
- data/spec/support/logs/Dispatcher - 3208127-46551.log +6 -0
- data/spec/support/logs/Dispatcher - 3208133-2576.log +6 -0
- data/spec/support/logs/Dispatcher - 3208138-25988.log +6 -0
- data/spec/support/logs/Dispatcher - 3208299-19611.log +6 -0
- data/spec/support/logs/Dispatcher - 3208330-35076.log +6 -0
- data/spec/support/logs/Dispatcher - 3208340-32759.log +6 -0
- data/spec/support/logs/Dispatcher - 903393-34771.log +6 -0
- data/spec/support/logs/Dispatcher - 903765-19862.log +6 -0
- data/spec/support/logs/Dispatcher - 903767-43611.log +6 -0
- data/spec/support/logs/Dispatcher - 903770-34337.log +6 -0
- data/spec/support/logs/Dispatcher - 903774-7484.log +10 -0
- data/spec/support/logs/Dispatcher - 903777-5256.log +10 -0
- data/spec/support/logs/Dispatcher - 903780-12391.log +10 -0
- data/spec/support/logs/Dispatcher - 903782-54621.log +10 -0
- data/spec/support/logs/Dispatcher - 903786-46071.log +10 -0
- data/spec/support/logs/Dispatcher - 903794-48819.log +10 -0
- data/spec/support/logs/Dispatcher - 903906-54562.log +6 -0
- data/spec/support/logs/Dispatcher - 904068-37293.log +6 -0
- data/spec/support/logs/Dispatcher - 904070-53492.log +6 -0
- data/spec/support/logs/Dispatcher - 904073-27607.log +6 -0
- data/spec/support/logs/Dispatcher - 904075-41641.log +6 -0
- data/spec/support/logs/Dispatcher - 904099-53541.log +6 -0
- data/spec/support/logs/Dispatcher - 904112-10508.log +6 -0
- data/spec/support/logs/Dispatcher - 904132-5791.log +6 -0
- data/spec/support/logs/Dispatcher - 904141-56406.log +6 -0
- data/spec/support/logs/Dispatcher - 904147-21550.log +6 -0
- data/spec/support/logs/Dispatcher - 904149-20120.log +6 -0
- data/spec/support/logs/Dispatcher - 904155-33639.log +6 -0
- data/spec/support/logs/Dispatcher - 904161-53730.log +6 -0
- data/spec/support/logs/Dispatcher - 904169-49991.log +16 -0
- data/spec/support/logs/Dispatcher - 904172-39635.log +14 -0
- data/spec/support/logs/Dispatcher - 904192-9525.log +10 -0
- data/spec/support/logs/Dispatcher - 904206-3529.log +16 -0
- data/spec/support/logs/Dispatcher - 904211-16856.log +14 -0
- data/spec/support/logs/Dispatcher - 904216-49974.log +10 -0
- data/spec/support/logs/Dispatcher - 904228-16891.log +6 -0
- data/spec/support/logs/Dispatcher - 904231-34999.log +6 -0
- data/spec/support/logs/Dispatcher - 904236-50872.log +6 -0
- data/spec/support/logs/Dispatcher - 904238-25464.log +6 -0
- data/spec/support/logs/Dispatcher - 904251-43339.log +6 -0
- data/spec/support/logs/Dispatcher - 904256-18461.log +6 -0
- data/spec/support/logs/Dispatcher - 904266-59699.log +6 -0
- data/spec/support/logs/Dispatcher - 904279-17401.log +6 -0
- data/spec/support/logs/Dispatcher - 904289-48953.log +6 -0
- data/spec/support/logs/Dispatcher - 904309-22599.log +6 -0
- data/spec/support/logs/Dispatcher - 904386-44447.log +16 -0
- data/spec/support/logs/Dispatcher - 904409-51015.log +14 -0
- data/spec/support/logs/Dispatcher - 904420-34336.log +10 -0
- data/spec/support/logs/Dispatcher - 904455-24852.log +16 -0
- data/spec/support/logs/Dispatcher - 904459-54769.log +14 -0
- data/spec/support/logs/Dispatcher - 904464-49280.log +10 -0
- data/spec/support/logs/Dispatcher - 904490-41571.log +6 -0
- data/spec/support/logs/Dispatcher - 904495-62362.log +6 -0
- data/spec/support/logs/Dispatcher - 904517-14314.log +6 -0
- data/spec/support/logs/Dispatcher - 904529-30060.log +6 -0
- data/spec/support/logs/Dispatcher - 904538-61870.log +6 -0
- data/spec/support/logs/Dispatcher - 904553-59343.log +6 -0
- data/spec/support/logs/Dispatcher - 904563-59027.log +6 -0
- data/spec/support/logs/Dispatcher - 904576-62144.log +6 -0
- data/spec/support/logs/Dispatcher - 904742-2935.log +6 -0
- data/spec/support/logs/Dispatcher - 904771-62183.log +6 -0
- data/spec/support/logs/Dispatcher - 904780-13353.log +6 -0
- data/spec/support/logs/Instance - 3208178-11741.error.log +106 -0
- data/spec/support/logs/Instance - 3208181-15143.error.log +106 -0
- data/spec/support/logs/Instance - 3208183-7742.error.log +106 -0
- data/spec/support/logs/Instance - 904628-41184.error.log +105 -0
- data/spec/support/logs/Instance - 904631-38626.error.log +105 -0
- data/spec/support/logs/Instance - 904634-37879.error.log +105 -0
- data/spec/support/logs/Scheduler - 3203309-65225.log +3 -0
- data/spec/support/logs/Scheduler - 3203315-52999.log +6 -0
- data/spec/support/logs/Scheduler - 3204127-50400.log +3 -0
- data/spec/support/logs/Scheduler - 3204138-29313.log +6 -0
- data/spec/support/logs/Scheduler - 3204154-9476.log +4 -0
- data/spec/support/logs/Scheduler - 3204163-52855.log +1 -0
- data/spec/support/logs/Scheduler - 3204175-31574.log +3 -0
- data/spec/support/logs/Scheduler - 3204194-7097.log +6 -0
- data/spec/support/logs/Scheduler - 3204251-11724.log +3 -0
- data/spec/support/logs/Scheduler - 3204262-10820.log +4 -0
- data/spec/support/logs/Scheduler - 3207131-48958.log +3 -0
- data/spec/support/logs/Scheduler - 3207138-8974.log +6 -0
- data/spec/support/logs/Scheduler - 3207187-62652.log +3 -0
- data/spec/support/logs/Scheduler - 3207197-19207.log +6 -0
- data/spec/support/logs/Scheduler - 3207218-27080.log +4 -0
- data/spec/support/logs/Scheduler - 3207228-4393.log +1 -0
- data/spec/support/logs/Scheduler - 3207240-7381.log +3 -0
- data/spec/support/logs/Scheduler - 3207252-53772.log +6 -0
- data/spec/support/logs/Scheduler - 3207306-56622.log +3 -0
- data/spec/support/logs/Scheduler - 3207318-9939.log +6 -0
- data/spec/support/logs/Scheduler - 3207342-36988.log +3 -0
- data/spec/support/logs/Scheduler - 3207352-31746.log +6 -0
- data/spec/support/logs/Scheduler - 3207383-56973.log +4 -0
- data/spec/support/logs/Scheduler - 3207400-19390.log +6 -0
- data/spec/support/logs/Scheduler - 3207442-63021.log +1 -0
- data/spec/support/logs/Scheduler - 3207445-42476.log +1 -0
- data/spec/support/logs/Scheduler - 3207450-45489.log +1 -0
- data/spec/support/logs/Scheduler - 3207453-18262.log +1 -0
- data/spec/support/logs/Scheduler - 3207458-47234.log +1 -0
- data/spec/support/logs/Scheduler - 3207462-5628.log +1 -0
- data/spec/support/logs/Scheduler - 3207464-14620.log +3 -0
- data/spec/support/logs/Scheduler - 3207468-4793.log +6 -0
- data/spec/support/logs/Scheduler - 3207482-45268.log +4 -0
- data/spec/support/logs/Scheduler - 3207494-44991.log +1 -0
- data/spec/support/logs/Scheduler - 3207498-21429.log +1 -0
- data/spec/support/logs/Scheduler - 3207503-54136.log +1 -0
- data/spec/support/logs/Scheduler - 3207507-43714.log +1 -0
- data/spec/support/logs/Scheduler - 3207512-38735.log +3 -0
- data/spec/support/logs/Scheduler - 3207516-64075.log +1 -0
- data/spec/support/logs/Scheduler - 3207523-26974.log +1 -0
- data/spec/support/logs/Scheduler - 3207527-30807.log +1 -0
- data/spec/support/logs/Scheduler - 3208261-26059.log +16 -0
- data/spec/support/logs/Scheduler - 3208278-13735.log +6 -0
- data/spec/support/logs/Scheduler - 3208287-55638.log +6 -0
- data/spec/support/logs/Scheduler - 3208303-38465.log +6 -0
- data/spec/support/logs/Scheduler - 3208334-43532.log +3 -0
- data/spec/support/logs/Scheduler - 3208344-20376.log +5 -0
- data/spec/support/logs/Scheduler - 3208351-38224.log +1 -0
- data/spec/support/logs/Scheduler - 3208355-9843.log +1 -0
- data/spec/support/logs/Scheduler - 3208357-43942.log +1 -0
- data/spec/support/logs/Scheduler - 3208360-58330.log +1 -0
- data/spec/support/logs/Scheduler - 3208363-23807.log +1 -0
- data/spec/support/logs/Scheduler - 3208366-29256.log +1 -0
- data/spec/support/logs/Scheduler - 3208369-25684.log +1 -0
- data/spec/support/logs/Scheduler - 3208372-28479.log +3 -0
- data/spec/support/logs/Scheduler - 3208382-34006.log +3 -0
- data/spec/support/logs/Scheduler - 3208396-57942.log +3 -0
- data/spec/support/logs/Scheduler - 3208402-34617.log +3 -0
- data/spec/support/logs/Scheduler - 3208406-31477.log +4 -0
- data/spec/support/logs/Scheduler - 3208418-25154.log +1 -0
- data/spec/support/logs/Scheduler - 3208423-3948.log +4 -0
- data/spec/support/logs/Scheduler - 3208428-21648.log +1 -0
- data/spec/support/logs/Scheduler - 3208434-64685.log +1 -0
- data/spec/support/logs/Scheduler - 3208440-58157.log +16 -0
- data/spec/support/logs/Scheduler - 3208460-6293.log +4 -0
- data/spec/support/logs/Scheduler - 3208467-29409.log +1 -0
- data/spec/support/logs/Scheduler - 3208470-12825.log +1 -0
- data/spec/support/logs/Scheduler - 3208473-52401.log +1 -0
- data/spec/support/logs/Scheduler - 3208476-6567.log +1 -0
- data/spec/support/logs/Scheduler - 3208480-28476.log +3 -0
- data/spec/support/logs/Scheduler - 3208488-36893.log +1 -0
- data/spec/support/logs/Scheduler - 3208490-11932.log +1 -0
- data/spec/support/logs/Scheduler - 3208493-56676.log +1 -0
- data/spec/support/logs/Scheduler - 3208509-46176.log +1 -0
- data/spec/support/logs/Scheduler - 3208513-14321.log +1 -0
- data/spec/support/logs/Scheduler - 3208517-10539.log +1 -0
- data/spec/support/logs/Scheduler - 3208521-30079.log +2 -0
- data/spec/support/logs/Scheduler - 903345-9616.log +3 -0
- data/spec/support/logs/Scheduler - 903353-58507.log +6 -0
- data/spec/support/logs/Scheduler - 903417-55835.log +3 -0
- data/spec/support/logs/Scheduler - 903427-18261.log +6 -0
- data/spec/support/logs/Scheduler - 903439-36633.log +4 -0
- data/spec/support/logs/Scheduler - 903455-41936.log +1 -0
- data/spec/support/logs/Scheduler - 903506-60484.log +3 -0
- data/spec/support/logs/Scheduler - 903519-10519.log +6 -0
- data/spec/support/logs/Scheduler - 903593-8109.log +3 -0
- data/spec/support/logs/Scheduler - 903614-61308.log +6 -0
- data/spec/support/logs/Scheduler - 903667-39623.log +3 -0
- data/spec/support/logs/Scheduler - 903683-35117.log +6 -0
- data/spec/support/logs/Scheduler - 903730-34262.log +4 -0
- data/spec/support/logs/Scheduler - 903747-57287.log +6 -0
- data/spec/support/logs/Scheduler - 903798-40499.log +1 -0
- data/spec/support/logs/Scheduler - 903801-5479.log +1 -0
- data/spec/support/logs/Scheduler - 903806-11293.log +1 -0
- data/spec/support/logs/Scheduler - 903811-52201.log +1 -0
- data/spec/support/logs/Scheduler - 903813-54636.log +1 -0
- data/spec/support/logs/Scheduler - 903827-5581.log +1 -0
- data/spec/support/logs/Scheduler - 903830-48439.log +3 -0
- data/spec/support/logs/Scheduler - 903835-17198.log +6 -0
- data/spec/support/logs/Scheduler - 903846-28718.log +4 -0
- data/spec/support/logs/Scheduler - 903855-45172.log +1 -0
- data/spec/support/logs/Scheduler - 903864-11909.log +1 -0
- data/spec/support/logs/Scheduler - 903869-1794.log +1 -0
- data/spec/support/logs/Scheduler - 903873-59405.log +1 -0
- data/spec/support/logs/Scheduler - 903880-3155.log +3 -0
- data/spec/support/logs/Scheduler - 903887-52240.log +1 -0
- data/spec/support/logs/Scheduler - 903889-27541.log +1 -0
- data/spec/support/logs/Scheduler - 903895-16003.log +1 -0
- data/spec/support/logs/Scheduler - 904706-61946.log +16 -0
- data/spec/support/logs/Scheduler - 904725-2441.log +6 -0
- data/spec/support/logs/Scheduler - 904736-12992.log +6 -0
- data/spec/support/logs/Scheduler - 904744-61626.log +6 -0
- data/spec/support/logs/Scheduler - 904774-45665.log +3 -0
- data/spec/support/logs/Scheduler - 904783-51443.log +5 -0
- data/spec/support/logs/Scheduler - 904791-45170.log +1 -0
- data/spec/support/logs/Scheduler - 904793-58901.log +1 -0
- data/spec/support/logs/Scheduler - 904801-2336.log +1 -0
- data/spec/support/logs/Scheduler - 904803-10954.log +1 -0
- data/spec/support/logs/Scheduler - 904806-25343.log +1 -0
- data/spec/support/logs/Scheduler - 904810-23633.log +1 -0
- data/spec/support/logs/Scheduler - 904814-27547.log +1 -0
- data/spec/support/logs/Scheduler - 904819-53508.log +3 -0
- data/spec/support/logs/Scheduler - 904826-41103.log +3 -0
- data/spec/support/logs/Scheduler - 904835-20113.log +3 -0
- data/spec/support/logs/Scheduler - 904866-61722.log +3 -0
- data/spec/support/logs/Scheduler - 904878-18373.log +4 -0
- data/spec/support/logs/Scheduler - 904999-46113.log +1 -0
- data/spec/support/logs/Scheduler - 905011-23507.log +4 -0
- data/spec/support/logs/Scheduler - 905017-8299.log +1 -0
- data/spec/support/logs/Scheduler - 905028-51728.log +1 -0
- data/spec/support/logs/Scheduler - 905031-16092.log +16 -0
- data/spec/support/logs/Scheduler - 905101-65244.log +4 -0
- data/spec/support/logs/Scheduler - 905224-20698.log +1 -0
- data/spec/support/logs/Scheduler - 905234-53973.log +1 -0
- data/spec/support/logs/Scheduler - 905241-48042.log +1 -0
- data/spec/support/logs/Scheduler - 905334-30796.log +1 -0
- data/spec/support/logs/Scheduler - 905337-14399.log +3 -0
- data/spec/support/logs/Scheduler - 905350-31560.log +1 -0
- data/spec/support/logs/Scheduler - 905353-63541.log +1 -0
- data/spec/support/logs/Scheduler - 905359-22685.log +1 -0
- data/spec/support/logs/Scheduler - 905362-31483.log +1 -0
- data/spec/support/logs/Scheduler - 905365-28301.log +1 -0
- data/spec/support/logs/Scheduler - 905369-51335.log +1 -0
- data/spec/support/logs/Scheduler - 905373-43552.log +2 -0
- data/spec/support/logs/error-3206970.log +801 -0
- data/spec/support/logs/error-903103.log +797 -0
- data/spec/support/logs/output_spec_3206970.log +390 -0
- data/spec/support/logs/output_spec_903103.log +390 -0
- data/spec/support/logs/placeholder +0 -0
- data/spec/support/pems/cacert.pem +37 -0
- data/spec/support/pems/client/cert.pem +37 -0
- data/spec/support/pems/client/foo-cert.pem +39 -0
- data/spec/support/pems/client/foo-key.pem +51 -0
- data/spec/support/pems/client/key.pem +51 -0
- data/spec/support/pems/server/cert.pem +37 -0
- data/spec/support/pems/server/key.pem +51 -0
- data/spec/support/reports/010223f6102d7d7ef50d7061f5a7c120.crf +0 -0
- data/spec/support/reports/0efcc0441bc58e27299737fc0e8bdb4a.crf +0 -0
- data/spec/support/reports/1444c78cae8a70d9a8f64a5b84579248.crf +0 -0
- data/spec/support/reports/16d1cdae64bbcf0b2083bc1870940fe8.crf +0 -0
- data/spec/support/reports/22cd328dd5adf2e5830db3eaf3e6d2fa.crf +0 -0
- data/spec/support/reports/26f5f97b84015ea1b3ebfaa04e6863f2.crf +0 -0
- data/spec/support/reports/40d544db82e9be4328c8bb16f2abbe96.crf +0 -0
- data/spec/support/reports/432466f64ec7b3a9e3a51e6c0c0f2b68.crf +0 -0
- data/spec/support/reports/493d52465fdd74388e1c1769e738fe0a.crf +0 -0
- data/spec/support/reports/49593f3c7dcff9466cebd4a3f71df16e.crf +0 -0
- data/spec/support/reports/4a875ccf578b82ea8af0661d09a0c9a2.crf +0 -0
- data/spec/support/reports/4fe265d0f318a758fff8f9c117d85c70.crf +0 -0
- data/spec/support/reports/5405af2d7e6bdba82761b3deb0316abb.crf +0 -0
- data/spec/support/reports/5801342bc5e7553ca065d9fc76b80a31.crf +0 -0
- data/spec/support/reports/5ca817d21692604d643a1ec4b9d698f8.crf +0 -0
- data/spec/support/reports/60a48dd87c16aaba48705cfa1102e6f0.crf +0 -0
- data/spec/support/reports/61b93d5be434e58e8286bc24375df5a6.crf +0 -0
- data/spec/support/reports/62ae63c7a653ccc450a042c83be6272e.crf +0 -0
- data/spec/support/reports/6dfba35f84478f2f8740989650e5c9b2.crf +0 -0
- data/spec/support/reports/72d8ff7e33ea0a4fa3208de46060ecb4.crf +0 -0
- data/spec/support/reports/7e73587e8be563c70f2864bb9982d4ac.crf +0 -0
- data/spec/support/reports/8a20cd9e7ea1f083c463f85990e48b9d.crf +0 -0
- data/spec/support/reports/8e22c8f69d18bfdc387ac2e2c73fd994.crf +0 -0
- data/spec/support/reports/99de7d4c926e154d9df18bbb66044360.crf +0 -0
- data/spec/support/reports/a8cda3f125d6de78da7e601e17ae02e0.crf +0 -0
- data/spec/support/reports/aa6b3e0cabbfa8f622cc3faa5e70d82d.crf +0 -0
- data/spec/support/reports/ad7582cad690ca1f6ec5529766dacecd.crf +0 -0
- data/spec/support/reports/af253c3c9e54c7efc1eb19a1ba0bc45b.crf +0 -0
- data/spec/support/reports/b57af832ae733e1a4182138f8373029d.crf +0 -0
- data/spec/support/reports/c266644ae90cff19058101b06c2410bd.crf +0 -0
- data/spec/support/reports/c684686518f8bb5af1fc05632b2ee3a1.crf +0 -0
- data/spec/support/reports/d0de163911157b30b56076653a01bd04.crf +0 -0
- data/spec/support/reports/d11cb8c19f0ef398e393e461d48fab49.crf +0 -0
- data/spec/support/reports/d29486b6155119827e12d512f38cf1a5.crf +0 -0
- data/spec/support/reports/d6348fa0f269cef7861d8a55ccb817b8.crf +0 -0
- data/spec/support/reports/d68cddd22874664f66ea296768de93cb.crf +0 -0
- data/spec/support/reports/d73172a30f03f6e4f73e77a379876368.crf +0 -0
- data/spec/support/reports/e0113960b4015876416519d1e36c6174.crf +0 -0
- data/spec/support/reports/e684ad3b2061330bf8016b0cda4c8aeb.crf +0 -0
- data/spec/support/reports/e6bec3c23e6367f309a43b6faec6c1af.crf +0 -0
- data/spec/support/reports/eadbebf5e6e8a2b325cdc82a4a667d1a.crf +0 -0
- data/spec/support/reports/fe4ca4a133464c018e8405dd73064f04.crf +0 -0
- data/spec/support/reports/placeholder +0 -0
- data/spec/support/shared/application.rb +10 -0
- data/spec/support/shared/component/options/base.rb +187 -0
- data/spec/support/shared/component.rb +31 -0
- data/spec/support/shared/option_group.rb +98 -0
- data/spec/support/shared/support/cache.rb +419 -0
- data/spec/support/shared/support/filter.rb +143 -0
- data/spec/support/shared/system/platforms/base.rb +25 -0
- data/spec/support/shared/system/platforms/mixins/unix.rb +37 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_34_27 +0200 7757c257352bfa7abdfc764fa978115c.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_34_41 +0200 30367c49c18c17b84f6cdbfad6fe8209.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_35_24 +0200 0faa83c7ec023eca9e68e959b2b6a991.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_35_38 +0200 e61c3dae449133e330c24f9d1d34bc17.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_45_36 +0200 ef5b013868ce241f47ebef4f0ee96d23.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_45_42 +0200 ae63b2e851a211039d4dfa999bfc1f79.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-11-28 11_45_45 +0200 59a5d8a5ef5de0937e0d8a697d3a06cb.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_10_45 +0200 7534324302d1127f33460417057c0d99.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_10_59 +0200 2e45425f623e46a876531b65ff3319d4.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_14_43 +0200 d570989be752d5e9f930379a7f861028.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_14_57 +0200 37fe4c6328f04448257e962065d49d05.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_25_10 +0200 728fc33e7947c9dc606d69d7b9202dbc.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_25_15 +0200 cde4edd9a05a4183ff301d157654cb30.csf +0 -0
- data/spec/support/snapshots/Cuboid 2021-12-26 08_25_17 +0200 e47c2b6d6354bca5f07fd2903aefd262.csf +0 -0
- data/spec/support/snapshots/placeholder +0 -0
- metadata +1222 -23
- data/.gitignore +0 -8
- data/bin/console +0 -15
- data/bin/setup +0 -8
metadata
CHANGED
@@ -1,52 +1,1251 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cuboid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tasos Laskos
|
8
|
-
autorequire:
|
9
|
-
bindir:
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
15
|
-
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: awesome_print
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.6.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.6.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: concurrent-ruby
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.1.8
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.1.8
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: concurrent-ruby-ext
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.1.8
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.1.8
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubyzip
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 2.3.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.3.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: childprocess
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.8.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.8.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: msgpack
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.1.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.1.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: oj
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 3.11.5
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 3.11.5
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: oj_mimic_json
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 1.0.1
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 1.0.1
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: puma
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 5.5.2
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 5.5.2
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rack
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - '='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 2.2.3
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 2.2.3
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: rack-test
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: sinatra
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - '='
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: 2.1.0
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - '='
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: 2.1.0
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: sinatra-contrib
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - '='
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: 2.1.0
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - '='
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: 2.1.0
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: arachni-rpc
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - "~>"
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: 0.2.1.4
|
216
|
+
type: :runtime
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - "~>"
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: 0.2.1.4
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: vmstat
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - '='
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: 2.3.0
|
230
|
+
type: :runtime
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - '='
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: 2.3.0
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: sys-proctable
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - '='
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: 1.1.5
|
244
|
+
type: :runtime
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - '='
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: 1.1.5
|
251
|
+
description: 'An application-centric, decentralised and distributed computing solution.
|
252
|
+
|
253
|
+
'
|
254
|
+
email: tasos.laskos@gmail.com
|
16
255
|
executables: []
|
17
256
|
extensions: []
|
18
|
-
extra_rdoc_files:
|
257
|
+
extra_rdoc_files:
|
258
|
+
- README.md
|
259
|
+
- LICENSE.md
|
260
|
+
- CHANGELOG.md
|
19
261
|
files:
|
20
|
-
-
|
262
|
+
- CHANGELOG.md
|
21
263
|
- Gemfile
|
264
|
+
- LICENSE.md
|
22
265
|
- README.md
|
23
266
|
- Rakefile
|
24
|
-
-
|
25
|
-
- bin/setup
|
267
|
+
- config/paths.yml
|
26
268
|
- cuboid.gemspec
|
27
269
|
- lib/cuboid.rb
|
270
|
+
- lib/cuboid/application.rb
|
271
|
+
- lib/cuboid/application/parts/data.rb
|
272
|
+
- lib/cuboid/application/parts/report.rb
|
273
|
+
- lib/cuboid/application/parts/state.rb
|
274
|
+
- lib/cuboid/application/runtime.rb
|
275
|
+
- lib/cuboid/banner.rb
|
276
|
+
- lib/cuboid/data.rb
|
277
|
+
- lib/cuboid/data/application.rb
|
278
|
+
- lib/cuboid/error.rb
|
279
|
+
- lib/cuboid/option_group.rb
|
280
|
+
- lib/cuboid/option_groups.rb
|
281
|
+
- lib/cuboid/option_groups/datastore.rb
|
282
|
+
- lib/cuboid/option_groups/dispatcher.rb
|
283
|
+
- lib/cuboid/option_groups/output.rb
|
284
|
+
- lib/cuboid/option_groups/paths.rb
|
285
|
+
- lib/cuboid/option_groups/report.rb
|
286
|
+
- lib/cuboid/option_groups/rpc.rb
|
287
|
+
- lib/cuboid/option_groups/scheduler.rb
|
288
|
+
- lib/cuboid/option_groups/snapshot.rb
|
289
|
+
- lib/cuboid/option_groups/system.rb
|
290
|
+
- lib/cuboid/options.rb
|
291
|
+
- lib/cuboid/processes.rb
|
292
|
+
- lib/cuboid/processes/dispatchers.rb
|
293
|
+
- lib/cuboid/processes/executables/base.rb
|
294
|
+
- lib/cuboid/processes/executables/dispatcher.rb
|
295
|
+
- lib/cuboid/processes/executables/instance.rb
|
296
|
+
- lib/cuboid/processes/executables/rest_service.rb
|
297
|
+
- lib/cuboid/processes/executables/scheduler.rb
|
298
|
+
- lib/cuboid/processes/helpers.rb
|
299
|
+
- lib/cuboid/processes/helpers/dispatchers.rb
|
300
|
+
- lib/cuboid/processes/helpers/instances.rb
|
301
|
+
- lib/cuboid/processes/helpers/processes.rb
|
302
|
+
- lib/cuboid/processes/helpers/schedulers.rb
|
303
|
+
- lib/cuboid/processes/instances.rb
|
304
|
+
- lib/cuboid/processes/manager.rb
|
305
|
+
- lib/cuboid/processes/schedulers.rb
|
306
|
+
- lib/cuboid/report.rb
|
307
|
+
- lib/cuboid/rest/server.rb
|
308
|
+
- lib/cuboid/rest/server/instance_helpers.rb
|
309
|
+
- lib/cuboid/rest/server/routes/dispatcher.rb
|
310
|
+
- lib/cuboid/rest/server/routes/grid.rb
|
311
|
+
- lib/cuboid/rest/server/routes/instances.rb
|
312
|
+
- lib/cuboid/rest/server/routes/scheduler.rb
|
313
|
+
- lib/cuboid/rpc/client.rb
|
314
|
+
- lib/cuboid/rpc/client/base.rb
|
315
|
+
- lib/cuboid/rpc/client/dispatcher.rb
|
316
|
+
- lib/cuboid/rpc/client/instance.rb
|
317
|
+
- lib/cuboid/rpc/client/instance/service.rb
|
318
|
+
- lib/cuboid/rpc/client/scheduler.rb
|
319
|
+
- lib/cuboid/rpc/serializer.rb
|
320
|
+
- lib/cuboid/rpc/server/active_options.rb
|
321
|
+
- lib/cuboid/rpc/server/application_wrapper.rb
|
322
|
+
- lib/cuboid/rpc/server/base.rb
|
323
|
+
- lib/cuboid/rpc/server/dispatcher.rb
|
324
|
+
- lib/cuboid/rpc/server/dispatcher/node.rb
|
325
|
+
- lib/cuboid/rpc/server/dispatcher/service.rb
|
326
|
+
- lib/cuboid/rpc/server/instance.rb
|
327
|
+
- lib/cuboid/rpc/server/output.rb
|
328
|
+
- lib/cuboid/rpc/server/scheduler.rb
|
329
|
+
- lib/cuboid/ruby.rb
|
330
|
+
- lib/cuboid/ruby/array.rb
|
331
|
+
- lib/cuboid/ruby/hash.rb
|
332
|
+
- lib/cuboid/ruby/object.rb
|
333
|
+
- lib/cuboid/snapshot.rb
|
334
|
+
- lib/cuboid/state.rb
|
335
|
+
- lib/cuboid/state/application.rb
|
336
|
+
- lib/cuboid/state/options.rb
|
337
|
+
- lib/cuboid/support.rb
|
338
|
+
- lib/cuboid/support/buffer.rb
|
339
|
+
- lib/cuboid/support/buffer/autoflush.rb
|
340
|
+
- lib/cuboid/support/buffer/base.rb
|
341
|
+
- lib/cuboid/support/cache.rb
|
342
|
+
- lib/cuboid/support/cache/base.rb
|
343
|
+
- lib/cuboid/support/cache/least_cost_replacement.rb
|
344
|
+
- lib/cuboid/support/cache/least_recently_pushed.rb
|
345
|
+
- lib/cuboid/support/cache/least_recently_used.rb
|
346
|
+
- lib/cuboid/support/cache/preference.rb
|
347
|
+
- lib/cuboid/support/cache/random_replacement.rb
|
348
|
+
- lib/cuboid/support/crypto.rb
|
349
|
+
- lib/cuboid/support/crypto/rsa_aes_cbc.rb
|
350
|
+
- lib/cuboid/support/database.rb
|
351
|
+
- lib/cuboid/support/database/base.rb
|
352
|
+
- lib/cuboid/support/database/categorized_queue.rb
|
353
|
+
- lib/cuboid/support/database/hash.rb
|
354
|
+
- lib/cuboid/support/database/queue.rb
|
355
|
+
- lib/cuboid/support/filter.rb
|
356
|
+
- lib/cuboid/support/filter/base.rb
|
357
|
+
- lib/cuboid/support/filter/set.rb
|
358
|
+
- lib/cuboid/support/glob.rb
|
359
|
+
- lib/cuboid/support/mixins.rb
|
360
|
+
- lib/cuboid/support/mixins/observable.rb
|
361
|
+
- lib/cuboid/support/mixins/parts.rb
|
362
|
+
- lib/cuboid/support/mixins/profiler.rb
|
363
|
+
- lib/cuboid/support/mixins/spec_instances.rb
|
364
|
+
- lib/cuboid/support/mixins/terminal.rb
|
365
|
+
- lib/cuboid/system.rb
|
366
|
+
- lib/cuboid/system/platforms.rb
|
367
|
+
- lib/cuboid/system/platforms/linux.rb
|
368
|
+
- lib/cuboid/system/platforms/mixins/unix.rb
|
369
|
+
- lib/cuboid/system/platforms/osx.rb
|
370
|
+
- lib/cuboid/system/platforms/windows.rb
|
371
|
+
- lib/cuboid/system/slots.rb
|
372
|
+
- lib/cuboid/ui/output.rb
|
373
|
+
- lib/cuboid/ui/output_interface.rb
|
374
|
+
- lib/cuboid/ui/output_interface/abstract.rb
|
375
|
+
- lib/cuboid/ui/output_interface/controls.rb
|
376
|
+
- lib/cuboid/ui/output_interface/error_logging.rb
|
377
|
+
- lib/cuboid/ui/output_interface/implemented.rb
|
378
|
+
- lib/cuboid/ui/output_interface/personalization.rb
|
379
|
+
- lib/cuboid/utilities.rb
|
28
380
|
- lib/cuboid/version.rb
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
381
|
+
- lib/version
|
382
|
+
- logs/error-3207383.log
|
383
|
+
- logs/error-3207482.log
|
384
|
+
- logs/error-3208344.log
|
385
|
+
- logs/error-3208460.log
|
386
|
+
- logs/error-903730.log
|
387
|
+
- logs/error-903846.log
|
388
|
+
- logs/error-904783.log
|
389
|
+
- logs/error-905101.log
|
390
|
+
- logs/placeholder
|
391
|
+
- spec/cuboid/application/parts/data_spec.rb
|
392
|
+
- spec/cuboid/application/parts/report_spec.rb
|
393
|
+
- spec/cuboid/application/parts/state_spec.rb
|
394
|
+
- spec/cuboid/application/runtime_spec.rb
|
395
|
+
- spec/cuboid/application_spec.rb
|
396
|
+
- spec/cuboid/data/application_spec.rb
|
397
|
+
- spec/cuboid/data_spec.rb
|
398
|
+
- spec/cuboid/error_spec.rb
|
399
|
+
- spec/cuboid/option_groups/datastore_spec.rb
|
400
|
+
- spec/cuboid/option_groups/dispatcher_spec.rb
|
401
|
+
- spec/cuboid/option_groups/output_spec.rb
|
402
|
+
- spec/cuboid/option_groups/paths_spec.rb
|
403
|
+
- spec/cuboid/option_groups/report_spec.rb
|
404
|
+
- spec/cuboid/option_groups/rpc_spec.rb
|
405
|
+
- spec/cuboid/option_groups/snapshot_spec.rb
|
406
|
+
- spec/cuboid/option_groups/system.rb
|
407
|
+
- spec/cuboid/options_spec.rb
|
408
|
+
- spec/cuboid/report_spec.rb
|
409
|
+
- spec/cuboid/rest/server_spec.rb
|
410
|
+
- spec/cuboid/rpc/client/base_spec.rb
|
411
|
+
- spec/cuboid/rpc/client/dispatcher_spec.rb
|
412
|
+
- spec/cuboid/rpc/client/instance_spec.rb
|
413
|
+
- spec/cuboid/rpc/server/active_options_spec.rb
|
414
|
+
- spec/cuboid/rpc/server/base_spec.rb
|
415
|
+
- spec/cuboid/rpc/server/dispatcher/node_spec.rb
|
416
|
+
- spec/cuboid/rpc/server/dispatcher/service_spec.rb
|
417
|
+
- spec/cuboid/rpc/server/dispatcher_spec.rb
|
418
|
+
- spec/cuboid/rpc/server/instance_spec.rb
|
419
|
+
- spec/cuboid/rpc/server/output_spec.rb
|
420
|
+
- spec/cuboid/rpc/server/scheduler_spec.rb
|
421
|
+
- spec/cuboid/ruby/array_spec.rb
|
422
|
+
- spec/cuboid/ruby/hash_spec.rb
|
423
|
+
- spec/cuboid/ruby/object_spec.rb
|
424
|
+
- spec/cuboid/snapshot_spec.rb
|
425
|
+
- spec/cuboid/state/application_spec.rb
|
426
|
+
- spec/cuboid/state/options_spec.rb
|
427
|
+
- spec/cuboid/state_spec.rb
|
428
|
+
- spec/cuboid/support/buffer/autoflush_spec.rb
|
429
|
+
- spec/cuboid/support/buffer/base_spec.rb
|
430
|
+
- spec/cuboid/support/cache/least_cost_replacement_spec.rb
|
431
|
+
- spec/cuboid/support/cache/least_recently_pushed_spec.rb
|
432
|
+
- spec/cuboid/support/cache/least_recently_used_spec.rb
|
433
|
+
- spec/cuboid/support/cache/preference_spec.rb
|
434
|
+
- spec/cuboid/support/cache/random_replacement_spec.rb
|
435
|
+
- spec/cuboid/support/crypto/rsa_aes_cbc_spec.rb
|
436
|
+
- spec/cuboid/support/database/categorized_queue_spec.rb
|
437
|
+
- spec/cuboid/support/database/hash_spec.rb
|
438
|
+
- spec/cuboid/support/database/scheduler_spec.rb
|
439
|
+
- spec/cuboid/support/filter/set_spec.rb
|
440
|
+
- spec/cuboid/support/glob_spec.rb
|
441
|
+
- spec/cuboid/support/mixins/observable_spec.rb
|
442
|
+
- spec/cuboid/system/platforms/linux_spec.rb
|
443
|
+
- spec/cuboid/system/platforms/osx_spec.rb
|
444
|
+
- spec/cuboid/system/platforms/windows_spec.rb
|
445
|
+
- spec/cuboid/system/slots_spec.rb
|
446
|
+
- spec/cuboid/system_spec.rb
|
447
|
+
- spec/cuboid/utilities_spec.rb
|
448
|
+
- spec/spec_helper.rb
|
449
|
+
- spec/support/factories/placeholder
|
450
|
+
- spec/support/factories/scan_report.rb
|
451
|
+
- spec/support/fixtures/empty/placeholder
|
452
|
+
- spec/support/fixtures/executables/node.rb
|
453
|
+
- spec/support/fixtures/mock_app.rb
|
454
|
+
- spec/support/fixtures/mock_app/test_service.rb
|
455
|
+
- spec/support/fixtures/services/echo.rb
|
456
|
+
- spec/support/helpers/framework.rb
|
457
|
+
- spec/support/helpers/matchers.rb
|
458
|
+
- spec/support/helpers/misc.rb
|
459
|
+
- spec/support/helpers/paths.rb
|
460
|
+
- spec/support/helpers/request_helpers.rb
|
461
|
+
- spec/support/helpers/requires.rb
|
462
|
+
- spec/support/helpers/resets.rb
|
463
|
+
- spec/support/helpers/web_server.rb
|
464
|
+
- spec/support/lib/factory.rb
|
465
|
+
- spec/support/lib/web_server_client.rb
|
466
|
+
- spec/support/lib/web_server_dispatcher.rb
|
467
|
+
- spec/support/lib/web_server_manager.rb
|
468
|
+
- spec/support/logs/Dispatcher - 3204062-27546.log
|
469
|
+
- spec/support/logs/Dispatcher - 3207166-30195.log
|
470
|
+
- spec/support/logs/Dispatcher - 3207418-16491.log
|
471
|
+
- spec/support/logs/Dispatcher - 3207420-23797.log
|
472
|
+
- spec/support/logs/Dispatcher - 3207424-64333.log
|
473
|
+
- spec/support/logs/Dispatcher - 3207427-50621.log
|
474
|
+
- spec/support/logs/Dispatcher - 3207429-15351.log
|
475
|
+
- spec/support/logs/Dispatcher - 3207432-3685.log
|
476
|
+
- spec/support/logs/Dispatcher - 3207436-43126.log
|
477
|
+
- spec/support/logs/Dispatcher - 3207438-58131.log
|
478
|
+
- spec/support/logs/Dispatcher - 3207440-32187.log
|
479
|
+
- spec/support/logs/Dispatcher - 3207654-42085.log
|
480
|
+
- spec/support/logs/Dispatcher - 3207769-16303.log
|
481
|
+
- spec/support/logs/Dispatcher - 3207771-31196.log
|
482
|
+
- spec/support/logs/Dispatcher - 3207773-53419.log
|
483
|
+
- spec/support/logs/Dispatcher - 3207775-17015.log
|
484
|
+
- spec/support/logs/Dispatcher - 3207787-56572.log
|
485
|
+
- spec/support/logs/Dispatcher - 3207799-41227.log
|
486
|
+
- spec/support/logs/Dispatcher - 3207815-49397.log
|
487
|
+
- spec/support/logs/Dispatcher - 3207817-13826.log
|
488
|
+
- spec/support/logs/Dispatcher - 3207819-46821.log
|
489
|
+
- spec/support/logs/Dispatcher - 3207821-37991.log
|
490
|
+
- spec/support/logs/Dispatcher - 3207825-52955.log
|
491
|
+
- spec/support/logs/Dispatcher - 3207829-12122.log
|
492
|
+
- spec/support/logs/Dispatcher - 3207831-58485.log
|
493
|
+
- spec/support/logs/Dispatcher - 3207833-47083.log
|
494
|
+
- spec/support/logs/Dispatcher - 3207837-53679.log
|
495
|
+
- spec/support/logs/Dispatcher - 3207847-12037.log
|
496
|
+
- spec/support/logs/Dispatcher - 3207852-64296.log
|
497
|
+
- spec/support/logs/Dispatcher - 3207858-56473.log
|
498
|
+
- spec/support/logs/Dispatcher - 3207864-26736.log
|
499
|
+
- spec/support/logs/Dispatcher - 3207866-24113.log
|
500
|
+
- spec/support/logs/Dispatcher - 3207870-6896.log
|
501
|
+
- spec/support/logs/Dispatcher - 3207873-16434.log
|
502
|
+
- spec/support/logs/Dispatcher - 3207885-31058.log
|
503
|
+
- spec/support/logs/Dispatcher - 3207891-19927.log
|
504
|
+
- spec/support/logs/Dispatcher - 3207897-41533.log
|
505
|
+
- spec/support/logs/Dispatcher - 3207903-26815.log
|
506
|
+
- spec/support/logs/Dispatcher - 3207909-25294.log
|
507
|
+
- spec/support/logs/Dispatcher - 3207929-51610.log
|
508
|
+
- spec/support/logs/Dispatcher - 3207990-8943.log
|
509
|
+
- spec/support/logs/Dispatcher - 3208000-30657.log
|
510
|
+
- spec/support/logs/Dispatcher - 3208010-54017.log
|
511
|
+
- spec/support/logs/Dispatcher - 3208041-58792.log
|
512
|
+
- spec/support/logs/Dispatcher - 3208047-50811.log
|
513
|
+
- spec/support/logs/Dispatcher - 3208051-52018.log
|
514
|
+
- spec/support/logs/Dispatcher - 3208067-46852.log
|
515
|
+
- spec/support/logs/Dispatcher - 3208075-56209.log
|
516
|
+
- spec/support/logs/Dispatcher - 3208088-4783.log
|
517
|
+
- spec/support/logs/Dispatcher - 3208100-47518.log
|
518
|
+
- spec/support/logs/Dispatcher - 3208115-25109.log
|
519
|
+
- spec/support/logs/Dispatcher - 3208127-46551.log
|
520
|
+
- spec/support/logs/Dispatcher - 3208133-2576.log
|
521
|
+
- spec/support/logs/Dispatcher - 3208138-25988.log
|
522
|
+
- spec/support/logs/Dispatcher - 3208299-19611.log
|
523
|
+
- spec/support/logs/Dispatcher - 3208330-35076.log
|
524
|
+
- spec/support/logs/Dispatcher - 3208340-32759.log
|
525
|
+
- spec/support/logs/Dispatcher - 903393-34771.log
|
526
|
+
- spec/support/logs/Dispatcher - 903765-19862.log
|
527
|
+
- spec/support/logs/Dispatcher - 903767-43611.log
|
528
|
+
- spec/support/logs/Dispatcher - 903770-34337.log
|
529
|
+
- spec/support/logs/Dispatcher - 903774-7484.log
|
530
|
+
- spec/support/logs/Dispatcher - 903777-5256.log
|
531
|
+
- spec/support/logs/Dispatcher - 903780-12391.log
|
532
|
+
- spec/support/logs/Dispatcher - 903782-54621.log
|
533
|
+
- spec/support/logs/Dispatcher - 903786-46071.log
|
534
|
+
- spec/support/logs/Dispatcher - 903794-48819.log
|
535
|
+
- spec/support/logs/Dispatcher - 903906-54562.log
|
536
|
+
- spec/support/logs/Dispatcher - 904068-37293.log
|
537
|
+
- spec/support/logs/Dispatcher - 904070-53492.log
|
538
|
+
- spec/support/logs/Dispatcher - 904073-27607.log
|
539
|
+
- spec/support/logs/Dispatcher - 904075-41641.log
|
540
|
+
- spec/support/logs/Dispatcher - 904099-53541.log
|
541
|
+
- spec/support/logs/Dispatcher - 904112-10508.log
|
542
|
+
- spec/support/logs/Dispatcher - 904132-5791.log
|
543
|
+
- spec/support/logs/Dispatcher - 904141-56406.log
|
544
|
+
- spec/support/logs/Dispatcher - 904147-21550.log
|
545
|
+
- spec/support/logs/Dispatcher - 904149-20120.log
|
546
|
+
- spec/support/logs/Dispatcher - 904155-33639.log
|
547
|
+
- spec/support/logs/Dispatcher - 904161-53730.log
|
548
|
+
- spec/support/logs/Dispatcher - 904169-49991.log
|
549
|
+
- spec/support/logs/Dispatcher - 904172-39635.log
|
550
|
+
- spec/support/logs/Dispatcher - 904192-9525.log
|
551
|
+
- spec/support/logs/Dispatcher - 904206-3529.log
|
552
|
+
- spec/support/logs/Dispatcher - 904211-16856.log
|
553
|
+
- spec/support/logs/Dispatcher - 904216-49974.log
|
554
|
+
- spec/support/logs/Dispatcher - 904228-16891.log
|
555
|
+
- spec/support/logs/Dispatcher - 904231-34999.log
|
556
|
+
- spec/support/logs/Dispatcher - 904236-50872.log
|
557
|
+
- spec/support/logs/Dispatcher - 904238-25464.log
|
558
|
+
- spec/support/logs/Dispatcher - 904251-43339.log
|
559
|
+
- spec/support/logs/Dispatcher - 904256-18461.log
|
560
|
+
- spec/support/logs/Dispatcher - 904266-59699.log
|
561
|
+
- spec/support/logs/Dispatcher - 904279-17401.log
|
562
|
+
- spec/support/logs/Dispatcher - 904289-48953.log
|
563
|
+
- spec/support/logs/Dispatcher - 904309-22599.log
|
564
|
+
- spec/support/logs/Dispatcher - 904386-44447.log
|
565
|
+
- spec/support/logs/Dispatcher - 904409-51015.log
|
566
|
+
- spec/support/logs/Dispatcher - 904420-34336.log
|
567
|
+
- spec/support/logs/Dispatcher - 904455-24852.log
|
568
|
+
- spec/support/logs/Dispatcher - 904459-54769.log
|
569
|
+
- spec/support/logs/Dispatcher - 904464-49280.log
|
570
|
+
- spec/support/logs/Dispatcher - 904490-41571.log
|
571
|
+
- spec/support/logs/Dispatcher - 904495-62362.log
|
572
|
+
- spec/support/logs/Dispatcher - 904517-14314.log
|
573
|
+
- spec/support/logs/Dispatcher - 904529-30060.log
|
574
|
+
- spec/support/logs/Dispatcher - 904538-61870.log
|
575
|
+
- spec/support/logs/Dispatcher - 904553-59343.log
|
576
|
+
- spec/support/logs/Dispatcher - 904563-59027.log
|
577
|
+
- spec/support/logs/Dispatcher - 904576-62144.log
|
578
|
+
- spec/support/logs/Dispatcher - 904742-2935.log
|
579
|
+
- spec/support/logs/Dispatcher - 904771-62183.log
|
580
|
+
- spec/support/logs/Dispatcher - 904780-13353.log
|
581
|
+
- spec/support/logs/Instance - 3208178-11741.error.log
|
582
|
+
- spec/support/logs/Instance - 3208181-15143.error.log
|
583
|
+
- spec/support/logs/Instance - 3208183-7742.error.log
|
584
|
+
- spec/support/logs/Instance - 904628-41184.error.log
|
585
|
+
- spec/support/logs/Instance - 904631-38626.error.log
|
586
|
+
- spec/support/logs/Instance - 904634-37879.error.log
|
587
|
+
- spec/support/logs/Scheduler - 3203309-65225.log
|
588
|
+
- spec/support/logs/Scheduler - 3203315-52999.log
|
589
|
+
- spec/support/logs/Scheduler - 3204127-50400.log
|
590
|
+
- spec/support/logs/Scheduler - 3204138-29313.log
|
591
|
+
- spec/support/logs/Scheduler - 3204154-9476.log
|
592
|
+
- spec/support/logs/Scheduler - 3204163-52855.log
|
593
|
+
- spec/support/logs/Scheduler - 3204175-31574.log
|
594
|
+
- spec/support/logs/Scheduler - 3204194-7097.log
|
595
|
+
- spec/support/logs/Scheduler - 3204251-11724.log
|
596
|
+
- spec/support/logs/Scheduler - 3204262-10820.log
|
597
|
+
- spec/support/logs/Scheduler - 3207131-48958.log
|
598
|
+
- spec/support/logs/Scheduler - 3207138-8974.log
|
599
|
+
- spec/support/logs/Scheduler - 3207187-62652.log
|
600
|
+
- spec/support/logs/Scheduler - 3207197-19207.log
|
601
|
+
- spec/support/logs/Scheduler - 3207218-27080.log
|
602
|
+
- spec/support/logs/Scheduler - 3207228-4393.log
|
603
|
+
- spec/support/logs/Scheduler - 3207240-7381.log
|
604
|
+
- spec/support/logs/Scheduler - 3207252-53772.log
|
605
|
+
- spec/support/logs/Scheduler - 3207306-56622.log
|
606
|
+
- spec/support/logs/Scheduler - 3207318-9939.log
|
607
|
+
- spec/support/logs/Scheduler - 3207342-36988.log
|
608
|
+
- spec/support/logs/Scheduler - 3207352-31746.log
|
609
|
+
- spec/support/logs/Scheduler - 3207383-56973.log
|
610
|
+
- spec/support/logs/Scheduler - 3207400-19390.log
|
611
|
+
- spec/support/logs/Scheduler - 3207442-63021.log
|
612
|
+
- spec/support/logs/Scheduler - 3207445-42476.log
|
613
|
+
- spec/support/logs/Scheduler - 3207450-45489.log
|
614
|
+
- spec/support/logs/Scheduler - 3207453-18262.log
|
615
|
+
- spec/support/logs/Scheduler - 3207458-47234.log
|
616
|
+
- spec/support/logs/Scheduler - 3207462-5628.log
|
617
|
+
- spec/support/logs/Scheduler - 3207464-14620.log
|
618
|
+
- spec/support/logs/Scheduler - 3207468-4793.log
|
619
|
+
- spec/support/logs/Scheduler - 3207482-45268.log
|
620
|
+
- spec/support/logs/Scheduler - 3207494-44991.log
|
621
|
+
- spec/support/logs/Scheduler - 3207498-21429.log
|
622
|
+
- spec/support/logs/Scheduler - 3207503-54136.log
|
623
|
+
- spec/support/logs/Scheduler - 3207507-43714.log
|
624
|
+
- spec/support/logs/Scheduler - 3207512-38735.log
|
625
|
+
- spec/support/logs/Scheduler - 3207516-64075.log
|
626
|
+
- spec/support/logs/Scheduler - 3207523-26974.log
|
627
|
+
- spec/support/logs/Scheduler - 3207527-30807.log
|
628
|
+
- spec/support/logs/Scheduler - 3208261-26059.log
|
629
|
+
- spec/support/logs/Scheduler - 3208278-13735.log
|
630
|
+
- spec/support/logs/Scheduler - 3208287-55638.log
|
631
|
+
- spec/support/logs/Scheduler - 3208303-38465.log
|
632
|
+
- spec/support/logs/Scheduler - 3208334-43532.log
|
633
|
+
- spec/support/logs/Scheduler - 3208344-20376.log
|
634
|
+
- spec/support/logs/Scheduler - 3208351-38224.log
|
635
|
+
- spec/support/logs/Scheduler - 3208355-9843.log
|
636
|
+
- spec/support/logs/Scheduler - 3208357-43942.log
|
637
|
+
- spec/support/logs/Scheduler - 3208360-58330.log
|
638
|
+
- spec/support/logs/Scheduler - 3208363-23807.log
|
639
|
+
- spec/support/logs/Scheduler - 3208366-29256.log
|
640
|
+
- spec/support/logs/Scheduler - 3208369-25684.log
|
641
|
+
- spec/support/logs/Scheduler - 3208372-28479.log
|
642
|
+
- spec/support/logs/Scheduler - 3208382-34006.log
|
643
|
+
- spec/support/logs/Scheduler - 3208396-57942.log
|
644
|
+
- spec/support/logs/Scheduler - 3208402-34617.log
|
645
|
+
- spec/support/logs/Scheduler - 3208406-31477.log
|
646
|
+
- spec/support/logs/Scheduler - 3208418-25154.log
|
647
|
+
- spec/support/logs/Scheduler - 3208423-3948.log
|
648
|
+
- spec/support/logs/Scheduler - 3208428-21648.log
|
649
|
+
- spec/support/logs/Scheduler - 3208434-64685.log
|
650
|
+
- spec/support/logs/Scheduler - 3208440-58157.log
|
651
|
+
- spec/support/logs/Scheduler - 3208460-6293.log
|
652
|
+
- spec/support/logs/Scheduler - 3208467-29409.log
|
653
|
+
- spec/support/logs/Scheduler - 3208470-12825.log
|
654
|
+
- spec/support/logs/Scheduler - 3208473-52401.log
|
655
|
+
- spec/support/logs/Scheduler - 3208476-6567.log
|
656
|
+
- spec/support/logs/Scheduler - 3208480-28476.log
|
657
|
+
- spec/support/logs/Scheduler - 3208488-36893.log
|
658
|
+
- spec/support/logs/Scheduler - 3208490-11932.log
|
659
|
+
- spec/support/logs/Scheduler - 3208493-56676.log
|
660
|
+
- spec/support/logs/Scheduler - 3208509-46176.log
|
661
|
+
- spec/support/logs/Scheduler - 3208513-14321.log
|
662
|
+
- spec/support/logs/Scheduler - 3208517-10539.log
|
663
|
+
- spec/support/logs/Scheduler - 3208521-30079.log
|
664
|
+
- spec/support/logs/Scheduler - 903345-9616.log
|
665
|
+
- spec/support/logs/Scheduler - 903353-58507.log
|
666
|
+
- spec/support/logs/Scheduler - 903417-55835.log
|
667
|
+
- spec/support/logs/Scheduler - 903427-18261.log
|
668
|
+
- spec/support/logs/Scheduler - 903439-36633.log
|
669
|
+
- spec/support/logs/Scheduler - 903455-41936.log
|
670
|
+
- spec/support/logs/Scheduler - 903506-60484.log
|
671
|
+
- spec/support/logs/Scheduler - 903519-10519.log
|
672
|
+
- spec/support/logs/Scheduler - 903593-8109.log
|
673
|
+
- spec/support/logs/Scheduler - 903614-61308.log
|
674
|
+
- spec/support/logs/Scheduler - 903667-39623.log
|
675
|
+
- spec/support/logs/Scheduler - 903683-35117.log
|
676
|
+
- spec/support/logs/Scheduler - 903730-34262.log
|
677
|
+
- spec/support/logs/Scheduler - 903747-57287.log
|
678
|
+
- spec/support/logs/Scheduler - 903798-40499.log
|
679
|
+
- spec/support/logs/Scheduler - 903801-5479.log
|
680
|
+
- spec/support/logs/Scheduler - 903806-11293.log
|
681
|
+
- spec/support/logs/Scheduler - 903811-52201.log
|
682
|
+
- spec/support/logs/Scheduler - 903813-54636.log
|
683
|
+
- spec/support/logs/Scheduler - 903827-5581.log
|
684
|
+
- spec/support/logs/Scheduler - 903830-48439.log
|
685
|
+
- spec/support/logs/Scheduler - 903835-17198.log
|
686
|
+
- spec/support/logs/Scheduler - 903846-28718.log
|
687
|
+
- spec/support/logs/Scheduler - 903855-45172.log
|
688
|
+
- spec/support/logs/Scheduler - 903864-11909.log
|
689
|
+
- spec/support/logs/Scheduler - 903869-1794.log
|
690
|
+
- spec/support/logs/Scheduler - 903873-59405.log
|
691
|
+
- spec/support/logs/Scheduler - 903880-3155.log
|
692
|
+
- spec/support/logs/Scheduler - 903887-52240.log
|
693
|
+
- spec/support/logs/Scheduler - 903889-27541.log
|
694
|
+
- spec/support/logs/Scheduler - 903895-16003.log
|
695
|
+
- spec/support/logs/Scheduler - 904706-61946.log
|
696
|
+
- spec/support/logs/Scheduler - 904725-2441.log
|
697
|
+
- spec/support/logs/Scheduler - 904736-12992.log
|
698
|
+
- spec/support/logs/Scheduler - 904744-61626.log
|
699
|
+
- spec/support/logs/Scheduler - 904774-45665.log
|
700
|
+
- spec/support/logs/Scheduler - 904783-51443.log
|
701
|
+
- spec/support/logs/Scheduler - 904791-45170.log
|
702
|
+
- spec/support/logs/Scheduler - 904793-58901.log
|
703
|
+
- spec/support/logs/Scheduler - 904801-2336.log
|
704
|
+
- spec/support/logs/Scheduler - 904803-10954.log
|
705
|
+
- spec/support/logs/Scheduler - 904806-25343.log
|
706
|
+
- spec/support/logs/Scheduler - 904810-23633.log
|
707
|
+
- spec/support/logs/Scheduler - 904814-27547.log
|
708
|
+
- spec/support/logs/Scheduler - 904819-53508.log
|
709
|
+
- spec/support/logs/Scheduler - 904826-41103.log
|
710
|
+
- spec/support/logs/Scheduler - 904835-20113.log
|
711
|
+
- spec/support/logs/Scheduler - 904866-61722.log
|
712
|
+
- spec/support/logs/Scheduler - 904878-18373.log
|
713
|
+
- spec/support/logs/Scheduler - 904999-46113.log
|
714
|
+
- spec/support/logs/Scheduler - 905011-23507.log
|
715
|
+
- spec/support/logs/Scheduler - 905017-8299.log
|
716
|
+
- spec/support/logs/Scheduler - 905028-51728.log
|
717
|
+
- spec/support/logs/Scheduler - 905031-16092.log
|
718
|
+
- spec/support/logs/Scheduler - 905101-65244.log
|
719
|
+
- spec/support/logs/Scheduler - 905224-20698.log
|
720
|
+
- spec/support/logs/Scheduler - 905234-53973.log
|
721
|
+
- spec/support/logs/Scheduler - 905241-48042.log
|
722
|
+
- spec/support/logs/Scheduler - 905334-30796.log
|
723
|
+
- spec/support/logs/Scheduler - 905337-14399.log
|
724
|
+
- spec/support/logs/Scheduler - 905350-31560.log
|
725
|
+
- spec/support/logs/Scheduler - 905353-63541.log
|
726
|
+
- spec/support/logs/Scheduler - 905359-22685.log
|
727
|
+
- spec/support/logs/Scheduler - 905362-31483.log
|
728
|
+
- spec/support/logs/Scheduler - 905365-28301.log
|
729
|
+
- spec/support/logs/Scheduler - 905369-51335.log
|
730
|
+
- spec/support/logs/Scheduler - 905373-43552.log
|
731
|
+
- spec/support/logs/error-3206970.log
|
732
|
+
- spec/support/logs/error-903103.log
|
733
|
+
- spec/support/logs/output_spec_3206970.log
|
734
|
+
- spec/support/logs/output_spec_903103.log
|
735
|
+
- spec/support/logs/placeholder
|
736
|
+
- spec/support/pems/cacert.pem
|
737
|
+
- spec/support/pems/client/cert.pem
|
738
|
+
- spec/support/pems/client/foo-cert.pem
|
739
|
+
- spec/support/pems/client/foo-key.pem
|
740
|
+
- spec/support/pems/client/key.pem
|
741
|
+
- spec/support/pems/server/cert.pem
|
742
|
+
- spec/support/pems/server/key.pem
|
743
|
+
- spec/support/reports/010223f6102d7d7ef50d7061f5a7c120.crf
|
744
|
+
- spec/support/reports/0efcc0441bc58e27299737fc0e8bdb4a.crf
|
745
|
+
- spec/support/reports/1444c78cae8a70d9a8f64a5b84579248.crf
|
746
|
+
- spec/support/reports/16d1cdae64bbcf0b2083bc1870940fe8.crf
|
747
|
+
- spec/support/reports/22cd328dd5adf2e5830db3eaf3e6d2fa.crf
|
748
|
+
- spec/support/reports/26f5f97b84015ea1b3ebfaa04e6863f2.crf
|
749
|
+
- spec/support/reports/40d544db82e9be4328c8bb16f2abbe96.crf
|
750
|
+
- spec/support/reports/432466f64ec7b3a9e3a51e6c0c0f2b68.crf
|
751
|
+
- spec/support/reports/493d52465fdd74388e1c1769e738fe0a.crf
|
752
|
+
- spec/support/reports/49593f3c7dcff9466cebd4a3f71df16e.crf
|
753
|
+
- spec/support/reports/4a875ccf578b82ea8af0661d09a0c9a2.crf
|
754
|
+
- spec/support/reports/4fe265d0f318a758fff8f9c117d85c70.crf
|
755
|
+
- spec/support/reports/5405af2d7e6bdba82761b3deb0316abb.crf
|
756
|
+
- spec/support/reports/5801342bc5e7553ca065d9fc76b80a31.crf
|
757
|
+
- spec/support/reports/5ca817d21692604d643a1ec4b9d698f8.crf
|
758
|
+
- spec/support/reports/60a48dd87c16aaba48705cfa1102e6f0.crf
|
759
|
+
- spec/support/reports/61b93d5be434e58e8286bc24375df5a6.crf
|
760
|
+
- spec/support/reports/62ae63c7a653ccc450a042c83be6272e.crf
|
761
|
+
- spec/support/reports/6dfba35f84478f2f8740989650e5c9b2.crf
|
762
|
+
- spec/support/reports/72d8ff7e33ea0a4fa3208de46060ecb4.crf
|
763
|
+
- spec/support/reports/7e73587e8be563c70f2864bb9982d4ac.crf
|
764
|
+
- spec/support/reports/8a20cd9e7ea1f083c463f85990e48b9d.crf
|
765
|
+
- spec/support/reports/8e22c8f69d18bfdc387ac2e2c73fd994.crf
|
766
|
+
- spec/support/reports/99de7d4c926e154d9df18bbb66044360.crf
|
767
|
+
- spec/support/reports/a8cda3f125d6de78da7e601e17ae02e0.crf
|
768
|
+
- spec/support/reports/aa6b3e0cabbfa8f622cc3faa5e70d82d.crf
|
769
|
+
- spec/support/reports/ad7582cad690ca1f6ec5529766dacecd.crf
|
770
|
+
- spec/support/reports/af253c3c9e54c7efc1eb19a1ba0bc45b.crf
|
771
|
+
- spec/support/reports/b57af832ae733e1a4182138f8373029d.crf
|
772
|
+
- spec/support/reports/c266644ae90cff19058101b06c2410bd.crf
|
773
|
+
- spec/support/reports/c684686518f8bb5af1fc05632b2ee3a1.crf
|
774
|
+
- spec/support/reports/d0de163911157b30b56076653a01bd04.crf
|
775
|
+
- spec/support/reports/d11cb8c19f0ef398e393e461d48fab49.crf
|
776
|
+
- spec/support/reports/d29486b6155119827e12d512f38cf1a5.crf
|
777
|
+
- spec/support/reports/d6348fa0f269cef7861d8a55ccb817b8.crf
|
778
|
+
- spec/support/reports/d68cddd22874664f66ea296768de93cb.crf
|
779
|
+
- spec/support/reports/d73172a30f03f6e4f73e77a379876368.crf
|
780
|
+
- spec/support/reports/e0113960b4015876416519d1e36c6174.crf
|
781
|
+
- spec/support/reports/e684ad3b2061330bf8016b0cda4c8aeb.crf
|
782
|
+
- spec/support/reports/e6bec3c23e6367f309a43b6faec6c1af.crf
|
783
|
+
- spec/support/reports/eadbebf5e6e8a2b325cdc82a4a667d1a.crf
|
784
|
+
- spec/support/reports/fe4ca4a133464c018e8405dd73064f04.crf
|
785
|
+
- spec/support/reports/placeholder
|
786
|
+
- spec/support/shared/application.rb
|
787
|
+
- spec/support/shared/component.rb
|
788
|
+
- spec/support/shared/component/options/base.rb
|
789
|
+
- spec/support/shared/option_group.rb
|
790
|
+
- spec/support/shared/support/cache.rb
|
791
|
+
- spec/support/shared/support/filter.rb
|
792
|
+
- spec/support/shared/system/platforms/base.rb
|
793
|
+
- spec/support/shared/system/platforms/mixins/unix.rb
|
794
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_34_27 +0200 7757c257352bfa7abdfc764fa978115c.csf
|
795
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_34_41 +0200 30367c49c18c17b84f6cdbfad6fe8209.csf
|
796
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_35_24 +0200 0faa83c7ec023eca9e68e959b2b6a991.csf
|
797
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_35_38 +0200 e61c3dae449133e330c24f9d1d34bc17.csf
|
798
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_45_36 +0200 ef5b013868ce241f47ebef4f0ee96d23.csf
|
799
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_45_42 +0200 ae63b2e851a211039d4dfa999bfc1f79.csf
|
800
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_45_45 +0200 59a5d8a5ef5de0937e0d8a697d3a06cb.csf
|
801
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_10_45 +0200 7534324302d1127f33460417057c0d99.csf
|
802
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_10_59 +0200 2e45425f623e46a876531b65ff3319d4.csf
|
803
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_14_43 +0200 d570989be752d5e9f930379a7f861028.csf
|
804
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_14_57 +0200 37fe4c6328f04448257e962065d49d05.csf
|
805
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_25_10 +0200 728fc33e7947c9dc606d69d7b9202dbc.csf
|
806
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_25_15 +0200 cde4edd9a05a4183ff301d157654cb30.csf
|
807
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_25_17 +0200 e47c2b6d6354bca5f07fd2903aefd262.csf
|
808
|
+
- spec/support/snapshots/placeholder
|
809
|
+
homepage: https://github.com/qadron/cuboid
|
810
|
+
licenses:
|
811
|
+
- MIT
|
812
|
+
metadata: {}
|
813
|
+
post_install_message:
|
814
|
+
rdoc_options:
|
815
|
+
- "--charset=UTF-8"
|
35
816
|
require_paths:
|
36
817
|
- lib
|
37
818
|
required_ruby_version: !ruby/object:Gem::Requirement
|
38
819
|
requirements:
|
39
820
|
- - ">="
|
40
821
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
822
|
+
version: '0'
|
42
823
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
824
|
requirements:
|
44
825
|
- - ">="
|
45
826
|
- !ruby/object:Gem::Version
|
46
827
|
version: '0'
|
47
828
|
requirements: []
|
48
|
-
rubygems_version: 3.
|
49
|
-
signing_key:
|
829
|
+
rubygems_version: 3.3.0.dev
|
830
|
+
signing_key:
|
50
831
|
specification_version: 4
|
51
|
-
summary:
|
52
|
-
test_files:
|
832
|
+
summary: An application-centric, decentralised and distributed computing solution.
|
833
|
+
test_files:
|
834
|
+
- spec/cuboid/application/parts/data_spec.rb
|
835
|
+
- spec/cuboid/application/parts/report_spec.rb
|
836
|
+
- spec/cuboid/application/parts/state_spec.rb
|
837
|
+
- spec/cuboid/application/runtime_spec.rb
|
838
|
+
- spec/cuboid/application_spec.rb
|
839
|
+
- spec/cuboid/data/application_spec.rb
|
840
|
+
- spec/cuboid/data_spec.rb
|
841
|
+
- spec/cuboid/error_spec.rb
|
842
|
+
- spec/cuboid/option_groups/datastore_spec.rb
|
843
|
+
- spec/cuboid/option_groups/dispatcher_spec.rb
|
844
|
+
- spec/cuboid/option_groups/output_spec.rb
|
845
|
+
- spec/cuboid/option_groups/paths_spec.rb
|
846
|
+
- spec/cuboid/option_groups/report_spec.rb
|
847
|
+
- spec/cuboid/option_groups/rpc_spec.rb
|
848
|
+
- spec/cuboid/option_groups/snapshot_spec.rb
|
849
|
+
- spec/cuboid/option_groups/system.rb
|
850
|
+
- spec/cuboid/options_spec.rb
|
851
|
+
- spec/cuboid/report_spec.rb
|
852
|
+
- spec/cuboid/rest/server_spec.rb
|
853
|
+
- spec/cuboid/rpc/client/base_spec.rb
|
854
|
+
- spec/cuboid/rpc/client/dispatcher_spec.rb
|
855
|
+
- spec/cuboid/rpc/client/instance_spec.rb
|
856
|
+
- spec/cuboid/rpc/server/active_options_spec.rb
|
857
|
+
- spec/cuboid/rpc/server/base_spec.rb
|
858
|
+
- spec/cuboid/rpc/server/dispatcher/node_spec.rb
|
859
|
+
- spec/cuboid/rpc/server/dispatcher/service_spec.rb
|
860
|
+
- spec/cuboid/rpc/server/dispatcher_spec.rb
|
861
|
+
- spec/cuboid/rpc/server/instance_spec.rb
|
862
|
+
- spec/cuboid/rpc/server/output_spec.rb
|
863
|
+
- spec/cuboid/rpc/server/scheduler_spec.rb
|
864
|
+
- spec/cuboid/ruby/array_spec.rb
|
865
|
+
- spec/cuboid/ruby/hash_spec.rb
|
866
|
+
- spec/cuboid/ruby/object_spec.rb
|
867
|
+
- spec/cuboid/snapshot_spec.rb
|
868
|
+
- spec/cuboid/state/application_spec.rb
|
869
|
+
- spec/cuboid/state/options_spec.rb
|
870
|
+
- spec/cuboid/state_spec.rb
|
871
|
+
- spec/cuboid/support/buffer/autoflush_spec.rb
|
872
|
+
- spec/cuboid/support/buffer/base_spec.rb
|
873
|
+
- spec/cuboid/support/cache/least_cost_replacement_spec.rb
|
874
|
+
- spec/cuboid/support/cache/least_recently_pushed_spec.rb
|
875
|
+
- spec/cuboid/support/cache/least_recently_used_spec.rb
|
876
|
+
- spec/cuboid/support/cache/preference_spec.rb
|
877
|
+
- spec/cuboid/support/cache/random_replacement_spec.rb
|
878
|
+
- spec/cuboid/support/crypto/rsa_aes_cbc_spec.rb
|
879
|
+
- spec/cuboid/support/database/categorized_queue_spec.rb
|
880
|
+
- spec/cuboid/support/database/hash_spec.rb
|
881
|
+
- spec/cuboid/support/database/scheduler_spec.rb
|
882
|
+
- spec/cuboid/support/filter/set_spec.rb
|
883
|
+
- spec/cuboid/support/glob_spec.rb
|
884
|
+
- spec/cuboid/support/mixins/observable_spec.rb
|
885
|
+
- spec/cuboid/system/platforms/linux_spec.rb
|
886
|
+
- spec/cuboid/system/platforms/osx_spec.rb
|
887
|
+
- spec/cuboid/system/platforms/windows_spec.rb
|
888
|
+
- spec/cuboid/system/slots_spec.rb
|
889
|
+
- spec/cuboid/system_spec.rb
|
890
|
+
- spec/cuboid/utilities_spec.rb
|
891
|
+
- spec/spec_helper.rb
|
892
|
+
- spec/support/factories/placeholder
|
893
|
+
- spec/support/factories/scan_report.rb
|
894
|
+
- spec/support/fixtures/empty/placeholder
|
895
|
+
- spec/support/fixtures/executables/node.rb
|
896
|
+
- spec/support/fixtures/mock_app/test_service.rb
|
897
|
+
- spec/support/fixtures/mock_app.rb
|
898
|
+
- spec/support/fixtures/services/echo.rb
|
899
|
+
- spec/support/helpers/framework.rb
|
900
|
+
- spec/support/helpers/matchers.rb
|
901
|
+
- spec/support/helpers/misc.rb
|
902
|
+
- spec/support/helpers/paths.rb
|
903
|
+
- spec/support/helpers/request_helpers.rb
|
904
|
+
- spec/support/helpers/requires.rb
|
905
|
+
- spec/support/helpers/resets.rb
|
906
|
+
- spec/support/helpers/web_server.rb
|
907
|
+
- spec/support/lib/factory.rb
|
908
|
+
- spec/support/lib/web_server_client.rb
|
909
|
+
- spec/support/lib/web_server_dispatcher.rb
|
910
|
+
- spec/support/lib/web_server_manager.rb
|
911
|
+
- spec/support/logs/Dispatcher - 3204062-27546.log
|
912
|
+
- spec/support/logs/Dispatcher - 3207166-30195.log
|
913
|
+
- spec/support/logs/Dispatcher - 3207418-16491.log
|
914
|
+
- spec/support/logs/Dispatcher - 3207420-23797.log
|
915
|
+
- spec/support/logs/Dispatcher - 3207424-64333.log
|
916
|
+
- spec/support/logs/Dispatcher - 3207427-50621.log
|
917
|
+
- spec/support/logs/Dispatcher - 3207429-15351.log
|
918
|
+
- spec/support/logs/Dispatcher - 3207432-3685.log
|
919
|
+
- spec/support/logs/Dispatcher - 3207436-43126.log
|
920
|
+
- spec/support/logs/Dispatcher - 3207438-58131.log
|
921
|
+
- spec/support/logs/Dispatcher - 3207440-32187.log
|
922
|
+
- spec/support/logs/Dispatcher - 3207654-42085.log
|
923
|
+
- spec/support/logs/Dispatcher - 3207769-16303.log
|
924
|
+
- spec/support/logs/Dispatcher - 3207771-31196.log
|
925
|
+
- spec/support/logs/Dispatcher - 3207773-53419.log
|
926
|
+
- spec/support/logs/Dispatcher - 3207775-17015.log
|
927
|
+
- spec/support/logs/Dispatcher - 3207787-56572.log
|
928
|
+
- spec/support/logs/Dispatcher - 3207799-41227.log
|
929
|
+
- spec/support/logs/Dispatcher - 3207815-49397.log
|
930
|
+
- spec/support/logs/Dispatcher - 3207817-13826.log
|
931
|
+
- spec/support/logs/Dispatcher - 3207819-46821.log
|
932
|
+
- spec/support/logs/Dispatcher - 3207821-37991.log
|
933
|
+
- spec/support/logs/Dispatcher - 3207825-52955.log
|
934
|
+
- spec/support/logs/Dispatcher - 3207829-12122.log
|
935
|
+
- spec/support/logs/Dispatcher - 3207831-58485.log
|
936
|
+
- spec/support/logs/Dispatcher - 3207833-47083.log
|
937
|
+
- spec/support/logs/Dispatcher - 3207837-53679.log
|
938
|
+
- spec/support/logs/Dispatcher - 3207847-12037.log
|
939
|
+
- spec/support/logs/Dispatcher - 3207852-64296.log
|
940
|
+
- spec/support/logs/Dispatcher - 3207858-56473.log
|
941
|
+
- spec/support/logs/Dispatcher - 3207864-26736.log
|
942
|
+
- spec/support/logs/Dispatcher - 3207866-24113.log
|
943
|
+
- spec/support/logs/Dispatcher - 3207870-6896.log
|
944
|
+
- spec/support/logs/Dispatcher - 3207873-16434.log
|
945
|
+
- spec/support/logs/Dispatcher - 3207885-31058.log
|
946
|
+
- spec/support/logs/Dispatcher - 3207891-19927.log
|
947
|
+
- spec/support/logs/Dispatcher - 3207897-41533.log
|
948
|
+
- spec/support/logs/Dispatcher - 3207903-26815.log
|
949
|
+
- spec/support/logs/Dispatcher - 3207909-25294.log
|
950
|
+
- spec/support/logs/Dispatcher - 3207929-51610.log
|
951
|
+
- spec/support/logs/Dispatcher - 3207990-8943.log
|
952
|
+
- spec/support/logs/Dispatcher - 3208000-30657.log
|
953
|
+
- spec/support/logs/Dispatcher - 3208010-54017.log
|
954
|
+
- spec/support/logs/Dispatcher - 3208041-58792.log
|
955
|
+
- spec/support/logs/Dispatcher - 3208047-50811.log
|
956
|
+
- spec/support/logs/Dispatcher - 3208051-52018.log
|
957
|
+
- spec/support/logs/Dispatcher - 3208067-46852.log
|
958
|
+
- spec/support/logs/Dispatcher - 3208075-56209.log
|
959
|
+
- spec/support/logs/Dispatcher - 3208088-4783.log
|
960
|
+
- spec/support/logs/Dispatcher - 3208100-47518.log
|
961
|
+
- spec/support/logs/Dispatcher - 3208115-25109.log
|
962
|
+
- spec/support/logs/Dispatcher - 3208127-46551.log
|
963
|
+
- spec/support/logs/Dispatcher - 3208133-2576.log
|
964
|
+
- spec/support/logs/Dispatcher - 3208138-25988.log
|
965
|
+
- spec/support/logs/Dispatcher - 3208299-19611.log
|
966
|
+
- spec/support/logs/Dispatcher - 3208330-35076.log
|
967
|
+
- spec/support/logs/Dispatcher - 3208340-32759.log
|
968
|
+
- spec/support/logs/Dispatcher - 903393-34771.log
|
969
|
+
- spec/support/logs/Dispatcher - 903765-19862.log
|
970
|
+
- spec/support/logs/Dispatcher - 903767-43611.log
|
971
|
+
- spec/support/logs/Dispatcher - 903770-34337.log
|
972
|
+
- spec/support/logs/Dispatcher - 903774-7484.log
|
973
|
+
- spec/support/logs/Dispatcher - 903777-5256.log
|
974
|
+
- spec/support/logs/Dispatcher - 903780-12391.log
|
975
|
+
- spec/support/logs/Dispatcher - 903782-54621.log
|
976
|
+
- spec/support/logs/Dispatcher - 903786-46071.log
|
977
|
+
- spec/support/logs/Dispatcher - 903794-48819.log
|
978
|
+
- spec/support/logs/Dispatcher - 903906-54562.log
|
979
|
+
- spec/support/logs/Dispatcher - 904068-37293.log
|
980
|
+
- spec/support/logs/Dispatcher - 904070-53492.log
|
981
|
+
- spec/support/logs/Dispatcher - 904073-27607.log
|
982
|
+
- spec/support/logs/Dispatcher - 904075-41641.log
|
983
|
+
- spec/support/logs/Dispatcher - 904099-53541.log
|
984
|
+
- spec/support/logs/Dispatcher - 904112-10508.log
|
985
|
+
- spec/support/logs/Dispatcher - 904132-5791.log
|
986
|
+
- spec/support/logs/Dispatcher - 904141-56406.log
|
987
|
+
- spec/support/logs/Dispatcher - 904147-21550.log
|
988
|
+
- spec/support/logs/Dispatcher - 904149-20120.log
|
989
|
+
- spec/support/logs/Dispatcher - 904155-33639.log
|
990
|
+
- spec/support/logs/Dispatcher - 904161-53730.log
|
991
|
+
- spec/support/logs/Dispatcher - 904169-49991.log
|
992
|
+
- spec/support/logs/Dispatcher - 904172-39635.log
|
993
|
+
- spec/support/logs/Dispatcher - 904192-9525.log
|
994
|
+
- spec/support/logs/Dispatcher - 904206-3529.log
|
995
|
+
- spec/support/logs/Dispatcher - 904211-16856.log
|
996
|
+
- spec/support/logs/Dispatcher - 904216-49974.log
|
997
|
+
- spec/support/logs/Dispatcher - 904228-16891.log
|
998
|
+
- spec/support/logs/Dispatcher - 904231-34999.log
|
999
|
+
- spec/support/logs/Dispatcher - 904236-50872.log
|
1000
|
+
- spec/support/logs/Dispatcher - 904238-25464.log
|
1001
|
+
- spec/support/logs/Dispatcher - 904251-43339.log
|
1002
|
+
- spec/support/logs/Dispatcher - 904256-18461.log
|
1003
|
+
- spec/support/logs/Dispatcher - 904266-59699.log
|
1004
|
+
- spec/support/logs/Dispatcher - 904279-17401.log
|
1005
|
+
- spec/support/logs/Dispatcher - 904289-48953.log
|
1006
|
+
- spec/support/logs/Dispatcher - 904309-22599.log
|
1007
|
+
- spec/support/logs/Dispatcher - 904386-44447.log
|
1008
|
+
- spec/support/logs/Dispatcher - 904409-51015.log
|
1009
|
+
- spec/support/logs/Dispatcher - 904420-34336.log
|
1010
|
+
- spec/support/logs/Dispatcher - 904455-24852.log
|
1011
|
+
- spec/support/logs/Dispatcher - 904459-54769.log
|
1012
|
+
- spec/support/logs/Dispatcher - 904464-49280.log
|
1013
|
+
- spec/support/logs/Dispatcher - 904490-41571.log
|
1014
|
+
- spec/support/logs/Dispatcher - 904495-62362.log
|
1015
|
+
- spec/support/logs/Dispatcher - 904517-14314.log
|
1016
|
+
- spec/support/logs/Dispatcher - 904529-30060.log
|
1017
|
+
- spec/support/logs/Dispatcher - 904538-61870.log
|
1018
|
+
- spec/support/logs/Dispatcher - 904553-59343.log
|
1019
|
+
- spec/support/logs/Dispatcher - 904563-59027.log
|
1020
|
+
- spec/support/logs/Dispatcher - 904576-62144.log
|
1021
|
+
- spec/support/logs/Dispatcher - 904742-2935.log
|
1022
|
+
- spec/support/logs/Dispatcher - 904771-62183.log
|
1023
|
+
- spec/support/logs/Dispatcher - 904780-13353.log
|
1024
|
+
- spec/support/logs/Instance - 3208178-11741.error.log
|
1025
|
+
- spec/support/logs/Instance - 3208181-15143.error.log
|
1026
|
+
- spec/support/logs/Instance - 3208183-7742.error.log
|
1027
|
+
- spec/support/logs/Instance - 904628-41184.error.log
|
1028
|
+
- spec/support/logs/Instance - 904631-38626.error.log
|
1029
|
+
- spec/support/logs/Instance - 904634-37879.error.log
|
1030
|
+
- spec/support/logs/Scheduler - 3203309-65225.log
|
1031
|
+
- spec/support/logs/Scheduler - 3203315-52999.log
|
1032
|
+
- spec/support/logs/Scheduler - 3204127-50400.log
|
1033
|
+
- spec/support/logs/Scheduler - 3204138-29313.log
|
1034
|
+
- spec/support/logs/Scheduler - 3204154-9476.log
|
1035
|
+
- spec/support/logs/Scheduler - 3204163-52855.log
|
1036
|
+
- spec/support/logs/Scheduler - 3204175-31574.log
|
1037
|
+
- spec/support/logs/Scheduler - 3204194-7097.log
|
1038
|
+
- spec/support/logs/Scheduler - 3204251-11724.log
|
1039
|
+
- spec/support/logs/Scheduler - 3204262-10820.log
|
1040
|
+
- spec/support/logs/Scheduler - 3207131-48958.log
|
1041
|
+
- spec/support/logs/Scheduler - 3207138-8974.log
|
1042
|
+
- spec/support/logs/Scheduler - 3207187-62652.log
|
1043
|
+
- spec/support/logs/Scheduler - 3207197-19207.log
|
1044
|
+
- spec/support/logs/Scheduler - 3207218-27080.log
|
1045
|
+
- spec/support/logs/Scheduler - 3207228-4393.log
|
1046
|
+
- spec/support/logs/Scheduler - 3207240-7381.log
|
1047
|
+
- spec/support/logs/Scheduler - 3207252-53772.log
|
1048
|
+
- spec/support/logs/Scheduler - 3207306-56622.log
|
1049
|
+
- spec/support/logs/Scheduler - 3207318-9939.log
|
1050
|
+
- spec/support/logs/Scheduler - 3207342-36988.log
|
1051
|
+
- spec/support/logs/Scheduler - 3207352-31746.log
|
1052
|
+
- spec/support/logs/Scheduler - 3207383-56973.log
|
1053
|
+
- spec/support/logs/Scheduler - 3207400-19390.log
|
1054
|
+
- spec/support/logs/Scheduler - 3207442-63021.log
|
1055
|
+
- spec/support/logs/Scheduler - 3207445-42476.log
|
1056
|
+
- spec/support/logs/Scheduler - 3207450-45489.log
|
1057
|
+
- spec/support/logs/Scheduler - 3207453-18262.log
|
1058
|
+
- spec/support/logs/Scheduler - 3207458-47234.log
|
1059
|
+
- spec/support/logs/Scheduler - 3207462-5628.log
|
1060
|
+
- spec/support/logs/Scheduler - 3207464-14620.log
|
1061
|
+
- spec/support/logs/Scheduler - 3207468-4793.log
|
1062
|
+
- spec/support/logs/Scheduler - 3207482-45268.log
|
1063
|
+
- spec/support/logs/Scheduler - 3207494-44991.log
|
1064
|
+
- spec/support/logs/Scheduler - 3207498-21429.log
|
1065
|
+
- spec/support/logs/Scheduler - 3207503-54136.log
|
1066
|
+
- spec/support/logs/Scheduler - 3207507-43714.log
|
1067
|
+
- spec/support/logs/Scheduler - 3207512-38735.log
|
1068
|
+
- spec/support/logs/Scheduler - 3207516-64075.log
|
1069
|
+
- spec/support/logs/Scheduler - 3207523-26974.log
|
1070
|
+
- spec/support/logs/Scheduler - 3207527-30807.log
|
1071
|
+
- spec/support/logs/Scheduler - 3208261-26059.log
|
1072
|
+
- spec/support/logs/Scheduler - 3208278-13735.log
|
1073
|
+
- spec/support/logs/Scheduler - 3208287-55638.log
|
1074
|
+
- spec/support/logs/Scheduler - 3208303-38465.log
|
1075
|
+
- spec/support/logs/Scheduler - 3208334-43532.log
|
1076
|
+
- spec/support/logs/Scheduler - 3208344-20376.log
|
1077
|
+
- spec/support/logs/Scheduler - 3208351-38224.log
|
1078
|
+
- spec/support/logs/Scheduler - 3208355-9843.log
|
1079
|
+
- spec/support/logs/Scheduler - 3208357-43942.log
|
1080
|
+
- spec/support/logs/Scheduler - 3208360-58330.log
|
1081
|
+
- spec/support/logs/Scheduler - 3208363-23807.log
|
1082
|
+
- spec/support/logs/Scheduler - 3208366-29256.log
|
1083
|
+
- spec/support/logs/Scheduler - 3208369-25684.log
|
1084
|
+
- spec/support/logs/Scheduler - 3208372-28479.log
|
1085
|
+
- spec/support/logs/Scheduler - 3208382-34006.log
|
1086
|
+
- spec/support/logs/Scheduler - 3208396-57942.log
|
1087
|
+
- spec/support/logs/Scheduler - 3208402-34617.log
|
1088
|
+
- spec/support/logs/Scheduler - 3208406-31477.log
|
1089
|
+
- spec/support/logs/Scheduler - 3208418-25154.log
|
1090
|
+
- spec/support/logs/Scheduler - 3208423-3948.log
|
1091
|
+
- spec/support/logs/Scheduler - 3208428-21648.log
|
1092
|
+
- spec/support/logs/Scheduler - 3208434-64685.log
|
1093
|
+
- spec/support/logs/Scheduler - 3208440-58157.log
|
1094
|
+
- spec/support/logs/Scheduler - 3208460-6293.log
|
1095
|
+
- spec/support/logs/Scheduler - 3208467-29409.log
|
1096
|
+
- spec/support/logs/Scheduler - 3208470-12825.log
|
1097
|
+
- spec/support/logs/Scheduler - 3208473-52401.log
|
1098
|
+
- spec/support/logs/Scheduler - 3208476-6567.log
|
1099
|
+
- spec/support/logs/Scheduler - 3208480-28476.log
|
1100
|
+
- spec/support/logs/Scheduler - 3208488-36893.log
|
1101
|
+
- spec/support/logs/Scheduler - 3208490-11932.log
|
1102
|
+
- spec/support/logs/Scheduler - 3208493-56676.log
|
1103
|
+
- spec/support/logs/Scheduler - 3208509-46176.log
|
1104
|
+
- spec/support/logs/Scheduler - 3208513-14321.log
|
1105
|
+
- spec/support/logs/Scheduler - 3208517-10539.log
|
1106
|
+
- spec/support/logs/Scheduler - 3208521-30079.log
|
1107
|
+
- spec/support/logs/Scheduler - 903345-9616.log
|
1108
|
+
- spec/support/logs/Scheduler - 903353-58507.log
|
1109
|
+
- spec/support/logs/Scheduler - 903417-55835.log
|
1110
|
+
- spec/support/logs/Scheduler - 903427-18261.log
|
1111
|
+
- spec/support/logs/Scheduler - 903439-36633.log
|
1112
|
+
- spec/support/logs/Scheduler - 903455-41936.log
|
1113
|
+
- spec/support/logs/Scheduler - 903506-60484.log
|
1114
|
+
- spec/support/logs/Scheduler - 903519-10519.log
|
1115
|
+
- spec/support/logs/Scheduler - 903593-8109.log
|
1116
|
+
- spec/support/logs/Scheduler - 903614-61308.log
|
1117
|
+
- spec/support/logs/Scheduler - 903667-39623.log
|
1118
|
+
- spec/support/logs/Scheduler - 903683-35117.log
|
1119
|
+
- spec/support/logs/Scheduler - 903730-34262.log
|
1120
|
+
- spec/support/logs/Scheduler - 903747-57287.log
|
1121
|
+
- spec/support/logs/Scheduler - 903798-40499.log
|
1122
|
+
- spec/support/logs/Scheduler - 903801-5479.log
|
1123
|
+
- spec/support/logs/Scheduler - 903806-11293.log
|
1124
|
+
- spec/support/logs/Scheduler - 903811-52201.log
|
1125
|
+
- spec/support/logs/Scheduler - 903813-54636.log
|
1126
|
+
- spec/support/logs/Scheduler - 903827-5581.log
|
1127
|
+
- spec/support/logs/Scheduler - 903830-48439.log
|
1128
|
+
- spec/support/logs/Scheduler - 903835-17198.log
|
1129
|
+
- spec/support/logs/Scheduler - 903846-28718.log
|
1130
|
+
- spec/support/logs/Scheduler - 903855-45172.log
|
1131
|
+
- spec/support/logs/Scheduler - 903864-11909.log
|
1132
|
+
- spec/support/logs/Scheduler - 903869-1794.log
|
1133
|
+
- spec/support/logs/Scheduler - 903873-59405.log
|
1134
|
+
- spec/support/logs/Scheduler - 903880-3155.log
|
1135
|
+
- spec/support/logs/Scheduler - 903887-52240.log
|
1136
|
+
- spec/support/logs/Scheduler - 903889-27541.log
|
1137
|
+
- spec/support/logs/Scheduler - 903895-16003.log
|
1138
|
+
- spec/support/logs/Scheduler - 904706-61946.log
|
1139
|
+
- spec/support/logs/Scheduler - 904725-2441.log
|
1140
|
+
- spec/support/logs/Scheduler - 904736-12992.log
|
1141
|
+
- spec/support/logs/Scheduler - 904744-61626.log
|
1142
|
+
- spec/support/logs/Scheduler - 904774-45665.log
|
1143
|
+
- spec/support/logs/Scheduler - 904783-51443.log
|
1144
|
+
- spec/support/logs/Scheduler - 904791-45170.log
|
1145
|
+
- spec/support/logs/Scheduler - 904793-58901.log
|
1146
|
+
- spec/support/logs/Scheduler - 904801-2336.log
|
1147
|
+
- spec/support/logs/Scheduler - 904803-10954.log
|
1148
|
+
- spec/support/logs/Scheduler - 904806-25343.log
|
1149
|
+
- spec/support/logs/Scheduler - 904810-23633.log
|
1150
|
+
- spec/support/logs/Scheduler - 904814-27547.log
|
1151
|
+
- spec/support/logs/Scheduler - 904819-53508.log
|
1152
|
+
- spec/support/logs/Scheduler - 904826-41103.log
|
1153
|
+
- spec/support/logs/Scheduler - 904835-20113.log
|
1154
|
+
- spec/support/logs/Scheduler - 904866-61722.log
|
1155
|
+
- spec/support/logs/Scheduler - 904878-18373.log
|
1156
|
+
- spec/support/logs/Scheduler - 904999-46113.log
|
1157
|
+
- spec/support/logs/Scheduler - 905011-23507.log
|
1158
|
+
- spec/support/logs/Scheduler - 905017-8299.log
|
1159
|
+
- spec/support/logs/Scheduler - 905028-51728.log
|
1160
|
+
- spec/support/logs/Scheduler - 905031-16092.log
|
1161
|
+
- spec/support/logs/Scheduler - 905101-65244.log
|
1162
|
+
- spec/support/logs/Scheduler - 905224-20698.log
|
1163
|
+
- spec/support/logs/Scheduler - 905234-53973.log
|
1164
|
+
- spec/support/logs/Scheduler - 905241-48042.log
|
1165
|
+
- spec/support/logs/Scheduler - 905334-30796.log
|
1166
|
+
- spec/support/logs/Scheduler - 905337-14399.log
|
1167
|
+
- spec/support/logs/Scheduler - 905350-31560.log
|
1168
|
+
- spec/support/logs/Scheduler - 905353-63541.log
|
1169
|
+
- spec/support/logs/Scheduler - 905359-22685.log
|
1170
|
+
- spec/support/logs/Scheduler - 905362-31483.log
|
1171
|
+
- spec/support/logs/Scheduler - 905365-28301.log
|
1172
|
+
- spec/support/logs/Scheduler - 905369-51335.log
|
1173
|
+
- spec/support/logs/Scheduler - 905373-43552.log
|
1174
|
+
- spec/support/logs/error-3206970.log
|
1175
|
+
- spec/support/logs/error-903103.log
|
1176
|
+
- spec/support/logs/output_spec_3206970.log
|
1177
|
+
- spec/support/logs/output_spec_903103.log
|
1178
|
+
- spec/support/logs/placeholder
|
1179
|
+
- spec/support/pems/cacert.pem
|
1180
|
+
- spec/support/pems/client/cert.pem
|
1181
|
+
- spec/support/pems/client/foo-cert.pem
|
1182
|
+
- spec/support/pems/client/foo-key.pem
|
1183
|
+
- spec/support/pems/client/key.pem
|
1184
|
+
- spec/support/pems/server/cert.pem
|
1185
|
+
- spec/support/pems/server/key.pem
|
1186
|
+
- spec/support/reports/010223f6102d7d7ef50d7061f5a7c120.crf
|
1187
|
+
- spec/support/reports/0efcc0441bc58e27299737fc0e8bdb4a.crf
|
1188
|
+
- spec/support/reports/1444c78cae8a70d9a8f64a5b84579248.crf
|
1189
|
+
- spec/support/reports/16d1cdae64bbcf0b2083bc1870940fe8.crf
|
1190
|
+
- spec/support/reports/22cd328dd5adf2e5830db3eaf3e6d2fa.crf
|
1191
|
+
- spec/support/reports/26f5f97b84015ea1b3ebfaa04e6863f2.crf
|
1192
|
+
- spec/support/reports/40d544db82e9be4328c8bb16f2abbe96.crf
|
1193
|
+
- spec/support/reports/432466f64ec7b3a9e3a51e6c0c0f2b68.crf
|
1194
|
+
- spec/support/reports/493d52465fdd74388e1c1769e738fe0a.crf
|
1195
|
+
- spec/support/reports/49593f3c7dcff9466cebd4a3f71df16e.crf
|
1196
|
+
- spec/support/reports/4a875ccf578b82ea8af0661d09a0c9a2.crf
|
1197
|
+
- spec/support/reports/4fe265d0f318a758fff8f9c117d85c70.crf
|
1198
|
+
- spec/support/reports/5405af2d7e6bdba82761b3deb0316abb.crf
|
1199
|
+
- spec/support/reports/5801342bc5e7553ca065d9fc76b80a31.crf
|
1200
|
+
- spec/support/reports/5ca817d21692604d643a1ec4b9d698f8.crf
|
1201
|
+
- spec/support/reports/60a48dd87c16aaba48705cfa1102e6f0.crf
|
1202
|
+
- spec/support/reports/61b93d5be434e58e8286bc24375df5a6.crf
|
1203
|
+
- spec/support/reports/62ae63c7a653ccc450a042c83be6272e.crf
|
1204
|
+
- spec/support/reports/6dfba35f84478f2f8740989650e5c9b2.crf
|
1205
|
+
- spec/support/reports/72d8ff7e33ea0a4fa3208de46060ecb4.crf
|
1206
|
+
- spec/support/reports/7e73587e8be563c70f2864bb9982d4ac.crf
|
1207
|
+
- spec/support/reports/8a20cd9e7ea1f083c463f85990e48b9d.crf
|
1208
|
+
- spec/support/reports/8e22c8f69d18bfdc387ac2e2c73fd994.crf
|
1209
|
+
- spec/support/reports/99de7d4c926e154d9df18bbb66044360.crf
|
1210
|
+
- spec/support/reports/a8cda3f125d6de78da7e601e17ae02e0.crf
|
1211
|
+
- spec/support/reports/aa6b3e0cabbfa8f622cc3faa5e70d82d.crf
|
1212
|
+
- spec/support/reports/ad7582cad690ca1f6ec5529766dacecd.crf
|
1213
|
+
- spec/support/reports/af253c3c9e54c7efc1eb19a1ba0bc45b.crf
|
1214
|
+
- spec/support/reports/b57af832ae733e1a4182138f8373029d.crf
|
1215
|
+
- spec/support/reports/c266644ae90cff19058101b06c2410bd.crf
|
1216
|
+
- spec/support/reports/c684686518f8bb5af1fc05632b2ee3a1.crf
|
1217
|
+
- spec/support/reports/d0de163911157b30b56076653a01bd04.crf
|
1218
|
+
- spec/support/reports/d11cb8c19f0ef398e393e461d48fab49.crf
|
1219
|
+
- spec/support/reports/d29486b6155119827e12d512f38cf1a5.crf
|
1220
|
+
- spec/support/reports/d6348fa0f269cef7861d8a55ccb817b8.crf
|
1221
|
+
- spec/support/reports/d68cddd22874664f66ea296768de93cb.crf
|
1222
|
+
- spec/support/reports/d73172a30f03f6e4f73e77a379876368.crf
|
1223
|
+
- spec/support/reports/e0113960b4015876416519d1e36c6174.crf
|
1224
|
+
- spec/support/reports/e684ad3b2061330bf8016b0cda4c8aeb.crf
|
1225
|
+
- spec/support/reports/e6bec3c23e6367f309a43b6faec6c1af.crf
|
1226
|
+
- spec/support/reports/eadbebf5e6e8a2b325cdc82a4a667d1a.crf
|
1227
|
+
- spec/support/reports/fe4ca4a133464c018e8405dd73064f04.crf
|
1228
|
+
- spec/support/reports/placeholder
|
1229
|
+
- spec/support/shared/application.rb
|
1230
|
+
- spec/support/shared/component/options/base.rb
|
1231
|
+
- spec/support/shared/component.rb
|
1232
|
+
- spec/support/shared/option_group.rb
|
1233
|
+
- spec/support/shared/support/cache.rb
|
1234
|
+
- spec/support/shared/support/filter.rb
|
1235
|
+
- spec/support/shared/system/platforms/base.rb
|
1236
|
+
- spec/support/shared/system/platforms/mixins/unix.rb
|
1237
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_34_27 +0200 7757c257352bfa7abdfc764fa978115c.csf
|
1238
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_34_41 +0200 30367c49c18c17b84f6cdbfad6fe8209.csf
|
1239
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_35_24 +0200 0faa83c7ec023eca9e68e959b2b6a991.csf
|
1240
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_35_38 +0200 e61c3dae449133e330c24f9d1d34bc17.csf
|
1241
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_45_36 +0200 ef5b013868ce241f47ebef4f0ee96d23.csf
|
1242
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_45_42 +0200 ae63b2e851a211039d4dfa999bfc1f79.csf
|
1243
|
+
- spec/support/snapshots/Cuboid 2021-11-28 11_45_45 +0200 59a5d8a5ef5de0937e0d8a697d3a06cb.csf
|
1244
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_10_45 +0200 7534324302d1127f33460417057c0d99.csf
|
1245
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_10_59 +0200 2e45425f623e46a876531b65ff3319d4.csf
|
1246
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_14_43 +0200 d570989be752d5e9f930379a7f861028.csf
|
1247
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_14_57 +0200 37fe4c6328f04448257e962065d49d05.csf
|
1248
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_25_10 +0200 728fc33e7947c9dc606d69d7b9202dbc.csf
|
1249
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_25_15 +0200 cde4edd9a05a4183ff301d157654cb30.csf
|
1250
|
+
- spec/support/snapshots/Cuboid 2021-12-26 08_25_17 +0200 e47c2b6d6354bca5f07fd2903aefd262.csf
|
1251
|
+
- spec/support/snapshots/placeholder
|