cuboid 0.0.3 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile +0 -2
- data/README.md +14 -13
- data/cuboid.gemspec +0 -4
- data/lib/cuboid/application.rb +10 -10
- data/lib/cuboid/option_groups/agent.rb +54 -0
- data/lib/cuboid/option_groups/paths.rb +13 -4
- data/lib/cuboid/options.rb +1 -1
- data/lib/cuboid/processes/{dispatchers.rb → agents.rb} +40 -26
- data/lib/cuboid/processes/executables/agent.rb +5 -0
- data/lib/cuboid/processes/helpers/agents.rb +23 -0
- data/lib/cuboid/processes/helpers/instances.rb +4 -4
- data/lib/cuboid/processes/helpers.rb +1 -1
- data/lib/cuboid/processes/instances.rb +22 -10
- data/lib/cuboid/processes/schedulers.rb +16 -3
- data/lib/cuboid/processes.rb +2 -2
- data/lib/cuboid/report.rb +1 -0
- data/lib/cuboid/rest/server/instance_helpers.rb +13 -13
- data/lib/cuboid/rest/server/routes/dispatcher.rb +11 -11
- data/lib/cuboid/rest/server/routes/grid.rb +8 -8
- data/lib/cuboid/rest/server/routes/instances.rb +1 -1
- data/lib/cuboid/rest/server.rb +5 -5
- data/lib/cuboid/rpc/client/{dispatcher.rb → agent.rb} +4 -4
- data/lib/cuboid/rpc/client/instance.rb +2 -2
- data/lib/cuboid/rpc/client.rb +1 -1
- data/lib/cuboid/rpc/server/agent/node.rb +247 -0
- data/lib/cuboid/rpc/server/{dispatcher → agent}/service.rb +13 -13
- data/lib/cuboid/rpc/server/{dispatcher.rb → agent.rb} +62 -32
- data/lib/cuboid/rpc/server/application_wrapper.rb +6 -4
- data/lib/cuboid/rpc/server/instance.rb +4 -4
- data/lib/cuboid/rpc/server/scheduler.rb +13 -12
- data/lib/cuboid.rb +0 -3
- data/lib/version +1 -1
- data/spec/cuboid/option_groups/dispatcher_spec.rb +2 -2
- data/spec/cuboid/option_groups/paths_spec.rb +6 -3
- data/spec/cuboid/rest/server_spec.rb +46 -46
- data/spec/cuboid/rpc/client/dispatcher_spec.rb +2 -2
- data/spec/cuboid/rpc/server/dispatcher/node_spec.rb +65 -65
- data/spec/cuboid/rpc/server/dispatcher/service_spec.rb +16 -16
- data/spec/cuboid/rpc/server/dispatcher_spec.rb +187 -72
- data/spec/cuboid/rpc/server/scheduler_spec.rb +8 -8
- data/spec/support/fixtures/executables/node.rb +3 -3
- data/spec/support/fixtures/mock_app/test_service.rb +8 -8
- data/spec/support/fixtures/mock_app.rb +1 -1
- data/spec/support/fixtures/services/echo.rb +6 -6
- data/spec/support/helpers/resets.rb +1 -1
- data/spec/support/lib/web_server_client.rb +2 -2
- data/spec/support/lib/web_server_dispatcher.rb +1 -1
- data/spec/support/logs/Agent - 2486896-44236.log +6 -0
- data/spec/support/logs/Agent - 2487229-16390.log +6 -0
- data/spec/support/logs/Agent - 2487520-2511.log +6 -0
- data/spec/support/logs/Agent - 2487522-24008.log +6 -0
- data/spec/support/logs/Agent - 2487526-3383.log +6 -0
- data/spec/support/logs/Agent - 2487528-23713.log +10 -0
- data/spec/support/logs/Agent - 2487530-42875.log +10 -0
- data/spec/support/logs/Agent - 2487533-14182.log +10 -0
- data/spec/support/logs/Agent - 2487535-32486.log +10 -0
- data/spec/support/logs/Agent - 2487537-30578.log +10 -0
- data/spec/support/logs/Agent - 2487539-65402.log +10 -0
- data/spec/support/logs/Agent - 2493974-23066.log +6 -0
- data/spec/support/logs/Agent - 2501716-11729.log +6 -0
- data/spec/support/logs/Agent - 2501724-48638.log +6 -0
- data/spec/support/logs/Agent - 2501961-60077.log +6 -0
- data/spec/support/logs/Agent - 2501976-10941.log +10 -0
- data/spec/support/logs/Agent - 2502050-45312.log +10 -0
- data/spec/support/logs/Agent - 2502131-45940.log +10 -0
- data/spec/support/logs/Agent - 2502139-59848.log +10 -0
- data/spec/support/logs/Agent - 2502262-46629.log +10 -0
- data/spec/support/logs/Agent - 2502298-28395.log +10 -0
- data/spec/support/logs/Scheduler - 2486608-59709.log +3 -0
- data/spec/support/logs/Scheduler - 2486612-44110.log +27 -0
- data/spec/support/logs/Scheduler - 2486723-50393.log +3 -0
- data/spec/support/logs/Scheduler - 2486727-21620.log +27 -0
- data/spec/support/logs/Scheduler - 2486877-37845.log +3 -0
- data/spec/support/logs/Scheduler - 2486881-3624.log +1 -0
- data/spec/support/logs/Scheduler - 2486911-24752.log +3 -0
- data/spec/support/logs/Scheduler - 2486919-48535.log +27 -0
- data/spec/support/logs/Scheduler - 2486985-8897.log +1 -0
- data/spec/support/logs/Scheduler - 2487211-7516.log +3 -0
- data/spec/support/logs/Scheduler - 2487215-2831.log +1 -0
- data/spec/support/logs/Scheduler - 2487246-7826.log +3 -0
- data/spec/support/logs/Scheduler - 2487256-35669.log +6 -0
- data/spec/support/logs/Scheduler - 2487272-11542.log +4 -0
- data/spec/support/logs/Scheduler - 2487278-9621.log +1 -0
- data/spec/support/logs/Scheduler - 2487291-24094.log +3 -0
- data/spec/support/logs/Scheduler - 2487299-60095.log +6 -0
- data/spec/support/logs/Scheduler - 2487368-7706.log +3 -0
- data/spec/support/logs/Scheduler - 2487378-9859.log +6 -0
- data/spec/support/logs/Scheduler - 2487396-17812.log +3 -0
- data/spec/support/logs/Scheduler - 2487407-25543.log +6 -0
- data/spec/support/logs/Scheduler - 2487451-44767.log +4 -0
- data/spec/support/logs/Scheduler - 2487506-1422.log +6 -0
- data/spec/support/logs/Scheduler - 2487541-38068.log +1 -0
- data/spec/support/logs/Scheduler - 2487544-21866.log +1 -0
- data/spec/support/logs/Scheduler - 2487548-15245.log +1 -0
- data/spec/support/logs/Scheduler - 2487551-34905.log +1 -0
- data/spec/support/logs/Scheduler - 2487554-22142.log +1 -0
- data/spec/support/logs/Scheduler - 2487562-35113.log +1 -0
- data/spec/support/logs/Scheduler - 2487565-55125.log +3 -0
- data/spec/support/logs/Scheduler - 2487569-48845.log +6 -0
- data/spec/support/logs/Scheduler - 2487576-57192.log +4 -0
- data/spec/support/logs/Scheduler - 2487583-17991.log +1 -0
- data/spec/support/logs/Scheduler - 2487586-30014.log +1 -0
- data/spec/support/logs/Scheduler - 2487591-6472.log +1 -0
- data/spec/support/logs/Scheduler - 2487594-2195.log +1 -0
- data/spec/support/logs/Scheduler - 2487598-55808.log +3 -0
- data/spec/support/logs/Scheduler - 2487605-7400.log +1 -0
- data/spec/support/logs/Scheduler - 2487607-4337.log +1 -0
- data/spec/support/logs/Scheduler - 2487610-25835.log +1 -0
- data/spec/support/logs/Scheduler - 2493623-45209.log +3 -0
- data/spec/support/logs/Scheduler - 2493714-59407.log +1 -0
- data/spec/support/logs/Scheduler - 2494470-61696.log +3 -0
- data/spec/support/logs/Scheduler - 2494723-2810.log +6 -0
- data/spec/support/logs/Scheduler - 2495458-22112.log +4 -0
- data/spec/support/logs/Scheduler - 2496034-4076.log +1 -0
- data/spec/support/logs/Scheduler - 2496119-62253.log +3 -0
- data/spec/support/logs/Scheduler - 2496210-50380.log +6 -0
- data/spec/support/logs/Scheduler - 2497536-24922.log +3 -0
- data/spec/support/logs/Scheduler - 2497786-13515.log +6 -0
- data/spec/support/logs/Scheduler - 2498774-16911.log +3 -0
- data/spec/support/logs/Scheduler - 2498961-4742.log +6 -0
- data/spec/support/logs/Scheduler - 2500340-16045.log +4 -0
- data/spec/support/logs/Scheduler - 2500980-26158.log +6 -0
- data/spec/support/logs/Scheduler - 2502381-26435.log +1 -0
- data/spec/support/logs/Scheduler - 2502463-62965.log +1 -0
- data/spec/support/logs/Scheduler - 2502547-53434.log +1 -0
- data/spec/support/logs/Scheduler - 2502628-43720.log +1 -0
- data/spec/support/logs/Scheduler - 2502643-58379.log +1 -0
- data/spec/support/logs/Scheduler - 2502873-64893.log +1 -0
- data/spec/support/logs/Scheduler - 2502954-43885.log +3 -0
- data/spec/support/logs/Scheduler - 2503039-52147.log +6 -0
- data/spec/support/logs/Scheduler - 2503768-28831.log +4 -0
- data/spec/support/logs/Scheduler - 2504259-24533.log +1 -0
- data/spec/support/logs/Scheduler - 2504343-56967.log +1 -0
- data/spec/support/logs/Scheduler - 2504502-25085.log +1 -0
- data/spec/support/logs/Scheduler - 2504587-30789.log +1 -0
- data/spec/support/logs/Scheduler - 2504608-56601.log +3 -0
- data/spec/support/logs/Scheduler - 2504760-36374.log +1 -0
- data/spec/support/logs/Scheduler - 2504841-49675.log +1 -0
- data/spec/support/logs/Scheduler - 2504923-15781.log +1 -0
- data/spec/support/reports/18be00bff4371738c7c7013b284b415b.crf +0 -0
- data/spec/support/reports/1ca39d410c2cf1f652eb8c320d6682bd.crf +0 -0
- data/spec/support/reports/266a09d73152ce2f3d2951f1dab133f3.crf +0 -0
- data/spec/support/reports/2929bee9c126b2695dc569b693fef574.crf +0 -0
- data/spec/support/reports/2b9ce956f7060163d7a0b78603dc05ca.crf +0 -0
- data/spec/support/reports/46bcffd844008e71c7d90a76baf8597d.crf +0 -0
- data/spec/support/reports/620287cfdc373595385cf2471e1d4523.crf +0 -0
- data/spec/support/reports/75fecdd5e006942292e02e6a223e7279.crf +0 -0
- data/spec/support/reports/81cca53163bbab5ccf4d5f0401d5adcd.crf +0 -0
- data/spec/support/reports/8c204ee129fe1bd6c5964d29ae5d03ae.crf +0 -0
- data/spec/support/reports/aadbf2c1544b0e11174853fb4883a38c.crf +0 -0
- data/spec/support/reports/c360a2833f3e635e69036916010edeac.crf +0 -0
- data/spec/support/reports/e96abea937f1ed3f89bc2ec5397522db.crf +0 -0
- data/spec/support/reports/f3d542036e17f6a66e11bfacb2fb3366.crf +0 -0
- data/spec/support/snapshots/Cuboid 2022-02-01 13_10_28 +0200 a06d9bd7db81b1b4fb077ceadcc3895f.csf +0 -0
- data/spec/support/snapshots/Cuboid 2022-02-01 13_10_42 +0200 36c68859faf144eed9ff9c01ae754217.csf +0 -0
- data/spec/support/snapshots/Cuboid 2022-02-01 13_24_42 +0200 5a26112a913330ee8763b2982a4d42df.csf +0 -0
- data/spec/support/snapshots/Cuboid 2022-02-01 13_24_56 +0200 190856b98ac7099eb553ed3abcfbcb87.csf +0 -0
- metadata +306 -768
- data/lib/cuboid/option_groups/dispatcher.rb +0 -38
- data/lib/cuboid/processes/executables/dispatcher.rb +0 -5
- data/lib/cuboid/processes/helpers/dispatchers.rb +0 -23
- data/lib/cuboid/rpc/server/dispatcher/node.rb +0 -247
- data/logs/error-3207383.log +0 -106
- data/logs/error-3207482.log +0 -106
- data/logs/error-3208344.log +0 -109
- data/logs/error-3208460.log +0 -106
- data/logs/error-903730.log +0 -105
- data/logs/error-903846.log +0 -105
- data/logs/error-904783.log +0 -108
- data/logs/error-905101.log +0 -105
- data/spec/support/logs/Dispatcher - 3204062-27546.log +0 -6
- data/spec/support/logs/Dispatcher - 3207166-30195.log +0 -6
- data/spec/support/logs/Dispatcher - 3207418-16491.log +0 -6
- data/spec/support/logs/Dispatcher - 3207420-23797.log +0 -6
- data/spec/support/logs/Dispatcher - 3207424-64333.log +0 -6
- data/spec/support/logs/Dispatcher - 3207427-50621.log +0 -10
- data/spec/support/logs/Dispatcher - 3207429-15351.log +0 -10
- data/spec/support/logs/Dispatcher - 3207432-3685.log +0 -10
- data/spec/support/logs/Dispatcher - 3207436-43126.log +0 -10
- data/spec/support/logs/Dispatcher - 3207438-58131.log +0 -10
- data/spec/support/logs/Dispatcher - 3207440-32187.log +0 -10
- data/spec/support/logs/Dispatcher - 3207654-42085.log +0 -6
- data/spec/support/logs/Dispatcher - 3207769-16303.log +0 -6
- data/spec/support/logs/Dispatcher - 3207771-31196.log +0 -6
- data/spec/support/logs/Dispatcher - 3207773-53419.log +0 -6
- data/spec/support/logs/Dispatcher - 3207775-17015.log +0 -6
- data/spec/support/logs/Dispatcher - 3207787-56572.log +0 -6
- data/spec/support/logs/Dispatcher - 3207799-41227.log +0 -6
- data/spec/support/logs/Dispatcher - 3207815-49397.log +0 -6
- data/spec/support/logs/Dispatcher - 3207817-13826.log +0 -6
- data/spec/support/logs/Dispatcher - 3207819-46821.log +0 -6
- data/spec/support/logs/Dispatcher - 3207821-37991.log +0 -6
- data/spec/support/logs/Dispatcher - 3207825-52955.log +0 -6
- data/spec/support/logs/Dispatcher - 3207829-12122.log +0 -6
- data/spec/support/logs/Dispatcher - 3207831-58485.log +0 -16
- data/spec/support/logs/Dispatcher - 3207833-47083.log +0 -14
- data/spec/support/logs/Dispatcher - 3207837-53679.log +0 -10
- data/spec/support/logs/Dispatcher - 3207847-12037.log +0 -16
- data/spec/support/logs/Dispatcher - 3207852-64296.log +0 -14
- data/spec/support/logs/Dispatcher - 3207858-56473.log +0 -10
- data/spec/support/logs/Dispatcher - 3207864-26736.log +0 -6
- data/spec/support/logs/Dispatcher - 3207866-24113.log +0 -6
- data/spec/support/logs/Dispatcher - 3207870-6896.log +0 -6
- data/spec/support/logs/Dispatcher - 3207873-16434.log +0 -6
- data/spec/support/logs/Dispatcher - 3207885-31058.log +0 -6
- data/spec/support/logs/Dispatcher - 3207891-19927.log +0 -6
- data/spec/support/logs/Dispatcher - 3207897-41533.log +0 -6
- data/spec/support/logs/Dispatcher - 3207903-26815.log +0 -6
- data/spec/support/logs/Dispatcher - 3207909-25294.log +0 -6
- data/spec/support/logs/Dispatcher - 3207929-51610.log +0 -6
- data/spec/support/logs/Dispatcher - 3207990-8943.log +0 -16
- data/spec/support/logs/Dispatcher - 3208000-30657.log +0 -14
- data/spec/support/logs/Dispatcher - 3208010-54017.log +0 -10
- data/spec/support/logs/Dispatcher - 3208041-58792.log +0 -16
- data/spec/support/logs/Dispatcher - 3208047-50811.log +0 -14
- data/spec/support/logs/Dispatcher - 3208051-52018.log +0 -10
- data/spec/support/logs/Dispatcher - 3208067-46852.log +0 -6
- data/spec/support/logs/Dispatcher - 3208075-56209.log +0 -6
- data/spec/support/logs/Dispatcher - 3208088-4783.log +0 -6
- data/spec/support/logs/Dispatcher - 3208100-47518.log +0 -6
- data/spec/support/logs/Dispatcher - 3208115-25109.log +0 -6
- data/spec/support/logs/Dispatcher - 3208127-46551.log +0 -6
- data/spec/support/logs/Dispatcher - 3208133-2576.log +0 -6
- data/spec/support/logs/Dispatcher - 3208138-25988.log +0 -6
- data/spec/support/logs/Dispatcher - 3208299-19611.log +0 -6
- data/spec/support/logs/Dispatcher - 3208330-35076.log +0 -6
- data/spec/support/logs/Dispatcher - 3208340-32759.log +0 -6
- data/spec/support/logs/Dispatcher - 903393-34771.log +0 -6
- data/spec/support/logs/Dispatcher - 903765-19862.log +0 -6
- data/spec/support/logs/Dispatcher - 903767-43611.log +0 -6
- data/spec/support/logs/Dispatcher - 903770-34337.log +0 -6
- data/spec/support/logs/Dispatcher - 903774-7484.log +0 -10
- data/spec/support/logs/Dispatcher - 903777-5256.log +0 -10
- data/spec/support/logs/Dispatcher - 903780-12391.log +0 -10
- data/spec/support/logs/Dispatcher - 903782-54621.log +0 -10
- data/spec/support/logs/Dispatcher - 903786-46071.log +0 -10
- data/spec/support/logs/Dispatcher - 903794-48819.log +0 -10
- data/spec/support/logs/Dispatcher - 903906-54562.log +0 -6
- data/spec/support/logs/Dispatcher - 904068-37293.log +0 -6
- data/spec/support/logs/Dispatcher - 904070-53492.log +0 -6
- data/spec/support/logs/Dispatcher - 904073-27607.log +0 -6
- data/spec/support/logs/Dispatcher - 904075-41641.log +0 -6
- data/spec/support/logs/Dispatcher - 904099-53541.log +0 -6
- data/spec/support/logs/Dispatcher - 904112-10508.log +0 -6
- data/spec/support/logs/Dispatcher - 904132-5791.log +0 -6
- data/spec/support/logs/Dispatcher - 904141-56406.log +0 -6
- data/spec/support/logs/Dispatcher - 904147-21550.log +0 -6
- data/spec/support/logs/Dispatcher - 904149-20120.log +0 -6
- data/spec/support/logs/Dispatcher - 904155-33639.log +0 -6
- data/spec/support/logs/Dispatcher - 904161-53730.log +0 -6
- data/spec/support/logs/Dispatcher - 904169-49991.log +0 -16
- data/spec/support/logs/Dispatcher - 904172-39635.log +0 -14
- data/spec/support/logs/Dispatcher - 904192-9525.log +0 -10
- data/spec/support/logs/Dispatcher - 904206-3529.log +0 -16
- data/spec/support/logs/Dispatcher - 904211-16856.log +0 -14
- data/spec/support/logs/Dispatcher - 904216-49974.log +0 -10
- data/spec/support/logs/Dispatcher - 904228-16891.log +0 -6
- data/spec/support/logs/Dispatcher - 904231-34999.log +0 -6
- data/spec/support/logs/Dispatcher - 904236-50872.log +0 -6
- data/spec/support/logs/Dispatcher - 904238-25464.log +0 -6
- data/spec/support/logs/Dispatcher - 904251-43339.log +0 -6
- data/spec/support/logs/Dispatcher - 904256-18461.log +0 -6
- data/spec/support/logs/Dispatcher - 904266-59699.log +0 -6
- data/spec/support/logs/Dispatcher - 904279-17401.log +0 -6
- data/spec/support/logs/Dispatcher - 904289-48953.log +0 -6
- data/spec/support/logs/Dispatcher - 904309-22599.log +0 -6
- data/spec/support/logs/Dispatcher - 904386-44447.log +0 -16
- data/spec/support/logs/Dispatcher - 904409-51015.log +0 -14
- data/spec/support/logs/Dispatcher - 904420-34336.log +0 -10
- data/spec/support/logs/Dispatcher - 904455-24852.log +0 -16
- data/spec/support/logs/Dispatcher - 904459-54769.log +0 -14
- data/spec/support/logs/Dispatcher - 904464-49280.log +0 -10
- data/spec/support/logs/Dispatcher - 904490-41571.log +0 -6
- data/spec/support/logs/Dispatcher - 904495-62362.log +0 -6
- data/spec/support/logs/Dispatcher - 904517-14314.log +0 -6
- data/spec/support/logs/Dispatcher - 904529-30060.log +0 -6
- data/spec/support/logs/Dispatcher - 904538-61870.log +0 -6
- data/spec/support/logs/Dispatcher - 904553-59343.log +0 -6
- data/spec/support/logs/Dispatcher - 904563-59027.log +0 -6
- data/spec/support/logs/Dispatcher - 904576-62144.log +0 -6
- data/spec/support/logs/Dispatcher - 904742-2935.log +0 -6
- data/spec/support/logs/Dispatcher - 904771-62183.log +0 -6
- data/spec/support/logs/Dispatcher - 904780-13353.log +0 -6
- data/spec/support/logs/Instance - 3208178-11741.error.log +0 -106
- data/spec/support/logs/Instance - 3208181-15143.error.log +0 -106
- data/spec/support/logs/Instance - 3208183-7742.error.log +0 -106
- data/spec/support/logs/Instance - 904628-41184.error.log +0 -105
- data/spec/support/logs/Instance - 904631-38626.error.log +0 -105
- data/spec/support/logs/Instance - 904634-37879.error.log +0 -105
- data/spec/support/logs/Scheduler - 3203309-65225.log +0 -3
- data/spec/support/logs/Scheduler - 3203315-52999.log +0 -6
- data/spec/support/logs/Scheduler - 3204127-50400.log +0 -3
- data/spec/support/logs/Scheduler - 3204138-29313.log +0 -6
- data/spec/support/logs/Scheduler - 3204154-9476.log +0 -4
- data/spec/support/logs/Scheduler - 3204163-52855.log +0 -1
- data/spec/support/logs/Scheduler - 3204175-31574.log +0 -3
- data/spec/support/logs/Scheduler - 3204194-7097.log +0 -6
- data/spec/support/logs/Scheduler - 3204251-11724.log +0 -3
- data/spec/support/logs/Scheduler - 3204262-10820.log +0 -4
- data/spec/support/logs/Scheduler - 3207131-48958.log +0 -3
- data/spec/support/logs/Scheduler - 3207138-8974.log +0 -6
- data/spec/support/logs/Scheduler - 3207187-62652.log +0 -3
- data/spec/support/logs/Scheduler - 3207197-19207.log +0 -6
- data/spec/support/logs/Scheduler - 3207218-27080.log +0 -4
- data/spec/support/logs/Scheduler - 3207228-4393.log +0 -1
- data/spec/support/logs/Scheduler - 3207240-7381.log +0 -3
- data/spec/support/logs/Scheduler - 3207252-53772.log +0 -6
- data/spec/support/logs/Scheduler - 3207306-56622.log +0 -3
- data/spec/support/logs/Scheduler - 3207318-9939.log +0 -6
- data/spec/support/logs/Scheduler - 3207342-36988.log +0 -3
- data/spec/support/logs/Scheduler - 3207352-31746.log +0 -6
- data/spec/support/logs/Scheduler - 3207383-56973.log +0 -4
- data/spec/support/logs/Scheduler - 3207400-19390.log +0 -6
- data/spec/support/logs/Scheduler - 3207442-63021.log +0 -1
- data/spec/support/logs/Scheduler - 3207445-42476.log +0 -1
- data/spec/support/logs/Scheduler - 3207450-45489.log +0 -1
- data/spec/support/logs/Scheduler - 3207453-18262.log +0 -1
- data/spec/support/logs/Scheduler - 3207458-47234.log +0 -1
- data/spec/support/logs/Scheduler - 3207462-5628.log +0 -1
- data/spec/support/logs/Scheduler - 3207464-14620.log +0 -3
- data/spec/support/logs/Scheduler - 3207468-4793.log +0 -6
- data/spec/support/logs/Scheduler - 3207482-45268.log +0 -4
- data/spec/support/logs/Scheduler - 3207494-44991.log +0 -1
- data/spec/support/logs/Scheduler - 3207498-21429.log +0 -1
- data/spec/support/logs/Scheduler - 3207503-54136.log +0 -1
- data/spec/support/logs/Scheduler - 3207507-43714.log +0 -1
- data/spec/support/logs/Scheduler - 3207512-38735.log +0 -3
- data/spec/support/logs/Scheduler - 3207516-64075.log +0 -1
- data/spec/support/logs/Scheduler - 3207523-26974.log +0 -1
- data/spec/support/logs/Scheduler - 3207527-30807.log +0 -1
- data/spec/support/logs/Scheduler - 3208261-26059.log +0 -16
- data/spec/support/logs/Scheduler - 3208278-13735.log +0 -6
- data/spec/support/logs/Scheduler - 3208287-55638.log +0 -6
- data/spec/support/logs/Scheduler - 3208303-38465.log +0 -6
- data/spec/support/logs/Scheduler - 3208334-43532.log +0 -3
- data/spec/support/logs/Scheduler - 3208344-20376.log +0 -5
- data/spec/support/logs/Scheduler - 3208351-38224.log +0 -1
- data/spec/support/logs/Scheduler - 3208355-9843.log +0 -1
- data/spec/support/logs/Scheduler - 3208357-43942.log +0 -1
- data/spec/support/logs/Scheduler - 3208360-58330.log +0 -1
- data/spec/support/logs/Scheduler - 3208363-23807.log +0 -1
- data/spec/support/logs/Scheduler - 3208366-29256.log +0 -1
- data/spec/support/logs/Scheduler - 3208369-25684.log +0 -1
- data/spec/support/logs/Scheduler - 3208372-28479.log +0 -3
- data/spec/support/logs/Scheduler - 3208382-34006.log +0 -3
- data/spec/support/logs/Scheduler - 3208396-57942.log +0 -3
- data/spec/support/logs/Scheduler - 3208402-34617.log +0 -3
- data/spec/support/logs/Scheduler - 3208406-31477.log +0 -4
- data/spec/support/logs/Scheduler - 3208418-25154.log +0 -1
- data/spec/support/logs/Scheduler - 3208423-3948.log +0 -4
- data/spec/support/logs/Scheduler - 3208428-21648.log +0 -1
- data/spec/support/logs/Scheduler - 3208434-64685.log +0 -1
- data/spec/support/logs/Scheduler - 3208440-58157.log +0 -16
- data/spec/support/logs/Scheduler - 3208460-6293.log +0 -4
- data/spec/support/logs/Scheduler - 3208467-29409.log +0 -1
- data/spec/support/logs/Scheduler - 3208470-12825.log +0 -1
- data/spec/support/logs/Scheduler - 3208473-52401.log +0 -1
- data/spec/support/logs/Scheduler - 3208476-6567.log +0 -1
- data/spec/support/logs/Scheduler - 3208480-28476.log +0 -3
- data/spec/support/logs/Scheduler - 3208488-36893.log +0 -1
- data/spec/support/logs/Scheduler - 3208490-11932.log +0 -1
- data/spec/support/logs/Scheduler - 3208493-56676.log +0 -1
- data/spec/support/logs/Scheduler - 3208509-46176.log +0 -1
- data/spec/support/logs/Scheduler - 3208513-14321.log +0 -1
- data/spec/support/logs/Scheduler - 3208517-10539.log +0 -1
- data/spec/support/logs/Scheduler - 3208521-30079.log +0 -2
- data/spec/support/logs/Scheduler - 903345-9616.log +0 -3
- data/spec/support/logs/Scheduler - 903353-58507.log +0 -6
- data/spec/support/logs/Scheduler - 903417-55835.log +0 -3
- data/spec/support/logs/Scheduler - 903427-18261.log +0 -6
- data/spec/support/logs/Scheduler - 903439-36633.log +0 -4
- data/spec/support/logs/Scheduler - 903455-41936.log +0 -1
- data/spec/support/logs/Scheduler - 903506-60484.log +0 -3
- data/spec/support/logs/Scheduler - 903519-10519.log +0 -6
- data/spec/support/logs/Scheduler - 903593-8109.log +0 -3
- data/spec/support/logs/Scheduler - 903614-61308.log +0 -6
- data/spec/support/logs/Scheduler - 903667-39623.log +0 -3
- data/spec/support/logs/Scheduler - 903683-35117.log +0 -6
- data/spec/support/logs/Scheduler - 903730-34262.log +0 -4
- data/spec/support/logs/Scheduler - 903747-57287.log +0 -6
- data/spec/support/logs/Scheduler - 903798-40499.log +0 -1
- data/spec/support/logs/Scheduler - 903801-5479.log +0 -1
- data/spec/support/logs/Scheduler - 903806-11293.log +0 -1
- data/spec/support/logs/Scheduler - 903811-52201.log +0 -1
- data/spec/support/logs/Scheduler - 903813-54636.log +0 -1
- data/spec/support/logs/Scheduler - 903827-5581.log +0 -1
- data/spec/support/logs/Scheduler - 903830-48439.log +0 -3
- data/spec/support/logs/Scheduler - 903835-17198.log +0 -6
- data/spec/support/logs/Scheduler - 903846-28718.log +0 -4
- data/spec/support/logs/Scheduler - 903855-45172.log +0 -1
- data/spec/support/logs/Scheduler - 903864-11909.log +0 -1
- data/spec/support/logs/Scheduler - 903869-1794.log +0 -1
- data/spec/support/logs/Scheduler - 903873-59405.log +0 -1
- data/spec/support/logs/Scheduler - 903880-3155.log +0 -3
- data/spec/support/logs/Scheduler - 903887-52240.log +0 -1
- data/spec/support/logs/Scheduler - 903889-27541.log +0 -1
- data/spec/support/logs/Scheduler - 903895-16003.log +0 -1
- data/spec/support/logs/Scheduler - 904706-61946.log +0 -16
- data/spec/support/logs/Scheduler - 904725-2441.log +0 -6
- data/spec/support/logs/Scheduler - 904736-12992.log +0 -6
- data/spec/support/logs/Scheduler - 904744-61626.log +0 -6
- data/spec/support/logs/Scheduler - 904774-45665.log +0 -3
- data/spec/support/logs/Scheduler - 904783-51443.log +0 -5
- data/spec/support/logs/Scheduler - 904791-45170.log +0 -1
- data/spec/support/logs/Scheduler - 904793-58901.log +0 -1
- data/spec/support/logs/Scheduler - 904801-2336.log +0 -1
- data/spec/support/logs/Scheduler - 904803-10954.log +0 -1
- data/spec/support/logs/Scheduler - 904806-25343.log +0 -1
- data/spec/support/logs/Scheduler - 904810-23633.log +0 -1
- data/spec/support/logs/Scheduler - 904814-27547.log +0 -1
- data/spec/support/logs/Scheduler - 904819-53508.log +0 -3
- data/spec/support/logs/Scheduler - 904826-41103.log +0 -3
- data/spec/support/logs/Scheduler - 904835-20113.log +0 -3
- data/spec/support/logs/Scheduler - 904866-61722.log +0 -3
- data/spec/support/logs/Scheduler - 904878-18373.log +0 -4
- data/spec/support/logs/Scheduler - 904999-46113.log +0 -1
- data/spec/support/logs/Scheduler - 905011-23507.log +0 -4
- data/spec/support/logs/Scheduler - 905017-8299.log +0 -1
- data/spec/support/logs/Scheduler - 905028-51728.log +0 -1
- data/spec/support/logs/Scheduler - 905031-16092.log +0 -16
- data/spec/support/logs/Scheduler - 905101-65244.log +0 -4
- data/spec/support/logs/Scheduler - 905224-20698.log +0 -1
- data/spec/support/logs/Scheduler - 905234-53973.log +0 -1
- data/spec/support/logs/Scheduler - 905241-48042.log +0 -1
- data/spec/support/logs/Scheduler - 905334-30796.log +0 -1
- data/spec/support/logs/Scheduler - 905337-14399.log +0 -3
- data/spec/support/logs/Scheduler - 905350-31560.log +0 -1
- data/spec/support/logs/Scheduler - 905353-63541.log +0 -1
- data/spec/support/logs/Scheduler - 905359-22685.log +0 -1
- data/spec/support/logs/Scheduler - 905362-31483.log +0 -1
- data/spec/support/logs/Scheduler - 905365-28301.log +0 -1
- data/spec/support/logs/Scheduler - 905369-51335.log +0 -1
- data/spec/support/logs/Scheduler - 905373-43552.log +0 -2
- data/spec/support/logs/error-3206970.log +0 -801
- data/spec/support/logs/error-903103.log +0 -797
- data/spec/support/logs/output_spec_3206970.log +0 -390
- data/spec/support/logs/output_spec_903103.log +0 -390
- 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/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
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cuboid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tasos Laskos
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01
|
11
|
+
date: 2022-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -108,34 +108,6 @@ dependencies:
|
|
108
108
|
- - '='
|
109
109
|
- !ruby/object:Gem::Version
|
110
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
111
|
- !ruby/object:Gem::Dependency
|
140
112
|
name: puma
|
141
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -278,8 +250,8 @@ files:
|
|
278
250
|
- lib/cuboid/error.rb
|
279
251
|
- lib/cuboid/option_group.rb
|
280
252
|
- lib/cuboid/option_groups.rb
|
253
|
+
- lib/cuboid/option_groups/agent.rb
|
281
254
|
- lib/cuboid/option_groups/datastore.rb
|
282
|
-
- lib/cuboid/option_groups/dispatcher.rb
|
283
255
|
- lib/cuboid/option_groups/output.rb
|
284
256
|
- lib/cuboid/option_groups/paths.rb
|
285
257
|
- lib/cuboid/option_groups/report.rb
|
@@ -289,14 +261,14 @@ files:
|
|
289
261
|
- lib/cuboid/option_groups/system.rb
|
290
262
|
- lib/cuboid/options.rb
|
291
263
|
- lib/cuboid/processes.rb
|
292
|
-
- lib/cuboid/processes/
|
264
|
+
- lib/cuboid/processes/agents.rb
|
265
|
+
- lib/cuboid/processes/executables/agent.rb
|
293
266
|
- lib/cuboid/processes/executables/base.rb
|
294
|
-
- lib/cuboid/processes/executables/dispatcher.rb
|
295
267
|
- lib/cuboid/processes/executables/instance.rb
|
296
268
|
- lib/cuboid/processes/executables/rest_service.rb
|
297
269
|
- lib/cuboid/processes/executables/scheduler.rb
|
298
270
|
- lib/cuboid/processes/helpers.rb
|
299
|
-
- lib/cuboid/processes/helpers/
|
271
|
+
- lib/cuboid/processes/helpers/agents.rb
|
300
272
|
- lib/cuboid/processes/helpers/instances.rb
|
301
273
|
- lib/cuboid/processes/helpers/processes.rb
|
302
274
|
- lib/cuboid/processes/helpers/schedulers.rb
|
@@ -311,18 +283,18 @@ files:
|
|
311
283
|
- lib/cuboid/rest/server/routes/instances.rb
|
312
284
|
- lib/cuboid/rest/server/routes/scheduler.rb
|
313
285
|
- lib/cuboid/rpc/client.rb
|
286
|
+
- lib/cuboid/rpc/client/agent.rb
|
314
287
|
- lib/cuboid/rpc/client/base.rb
|
315
|
-
- lib/cuboid/rpc/client/dispatcher.rb
|
316
288
|
- lib/cuboid/rpc/client/instance.rb
|
317
289
|
- lib/cuboid/rpc/client/instance/service.rb
|
318
290
|
- lib/cuboid/rpc/client/scheduler.rb
|
319
291
|
- lib/cuboid/rpc/serializer.rb
|
320
292
|
- lib/cuboid/rpc/server/active_options.rb
|
293
|
+
- lib/cuboid/rpc/server/agent.rb
|
294
|
+
- lib/cuboid/rpc/server/agent/node.rb
|
295
|
+
- lib/cuboid/rpc/server/agent/service.rb
|
321
296
|
- lib/cuboid/rpc/server/application_wrapper.rb
|
322
297
|
- 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
298
|
- lib/cuboid/rpc/server/instance.rb
|
327
299
|
- lib/cuboid/rpc/server/output.rb
|
328
300
|
- lib/cuboid/rpc/server/scheduler.rb
|
@@ -379,14 +351,6 @@ files:
|
|
379
351
|
- lib/cuboid/utilities.rb
|
380
352
|
- lib/cuboid/version.rb
|
381
353
|
- 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
354
|
- logs/placeholder
|
391
355
|
- spec/cuboid/application/parts/data_spec.rb
|
392
356
|
- spec/cuboid/application/parts/report_spec.rb
|
@@ -465,273 +429,98 @@ files:
|
|
465
429
|
- spec/support/lib/web_server_client.rb
|
466
430
|
- spec/support/lib/web_server_dispatcher.rb
|
467
431
|
- spec/support/lib/web_server_manager.rb
|
468
|
-
- spec/support/logs/
|
469
|
-
- spec/support/logs/
|
470
|
-
- spec/support/logs/
|
471
|
-
- spec/support/logs/
|
472
|
-
- spec/support/logs/
|
473
|
-
- spec/support/logs/
|
474
|
-
- spec/support/logs/
|
475
|
-
- spec/support/logs/
|
476
|
-
- spec/support/logs/
|
477
|
-
- spec/support/logs/
|
478
|
-
- spec/support/logs/
|
479
|
-
- spec/support/logs/
|
480
|
-
- spec/support/logs/
|
481
|
-
- spec/support/logs/
|
482
|
-
- spec/support/logs/
|
483
|
-
- spec/support/logs/
|
484
|
-
- spec/support/logs/
|
485
|
-
- spec/support/logs/
|
486
|
-
- spec/support/logs/
|
487
|
-
- spec/support/logs/
|
488
|
-
- spec/support/logs/
|
489
|
-
- spec/support/logs/
|
490
|
-
- spec/support/logs/
|
491
|
-
- spec/support/logs/
|
492
|
-
- spec/support/logs/
|
493
|
-
- spec/support/logs/
|
494
|
-
- spec/support/logs/
|
495
|
-
- spec/support/logs/
|
496
|
-
- spec/support/logs/
|
497
|
-
- spec/support/logs/
|
498
|
-
- spec/support/logs/
|
499
|
-
- spec/support/logs/
|
500
|
-
- spec/support/logs/
|
501
|
-
- spec/support/logs/
|
502
|
-
- spec/support/logs/
|
503
|
-
- spec/support/logs/
|
504
|
-
- spec/support/logs/
|
505
|
-
- spec/support/logs/
|
506
|
-
- spec/support/logs/
|
507
|
-
- spec/support/logs/
|
508
|
-
- spec/support/logs/
|
509
|
-
- spec/support/logs/
|
510
|
-
- spec/support/logs/
|
511
|
-
- spec/support/logs/
|
512
|
-
- spec/support/logs/
|
513
|
-
- spec/support/logs/
|
514
|
-
- spec/support/logs/
|
515
|
-
- spec/support/logs/
|
516
|
-
- spec/support/logs/
|
517
|
-
- spec/support/logs/
|
518
|
-
- spec/support/logs/
|
519
|
-
- spec/support/logs/
|
520
|
-
- spec/support/logs/
|
521
|
-
- spec/support/logs/
|
522
|
-
- spec/support/logs/
|
523
|
-
- spec/support/logs/
|
524
|
-
- spec/support/logs/
|
525
|
-
- spec/support/logs/
|
526
|
-
- spec/support/logs/
|
527
|
-
- spec/support/logs/
|
528
|
-
- spec/support/logs/
|
529
|
-
- spec/support/logs/
|
530
|
-
- spec/support/logs/
|
531
|
-
- spec/support/logs/
|
532
|
-
- spec/support/logs/
|
533
|
-
- spec/support/logs/
|
534
|
-
- spec/support/logs/
|
535
|
-
- spec/support/logs/
|
536
|
-
- spec/support/logs/
|
537
|
-
- spec/support/logs/
|
538
|
-
- spec/support/logs/
|
539
|
-
- spec/support/logs/
|
540
|
-
- spec/support/logs/
|
541
|
-
- spec/support/logs/
|
542
|
-
- spec/support/logs/
|
543
|
-
- spec/support/logs/
|
544
|
-
- spec/support/logs/
|
545
|
-
- spec/support/logs/
|
546
|
-
- spec/support/logs/
|
547
|
-
- spec/support/logs/
|
548
|
-
- spec/support/logs/
|
549
|
-
- spec/support/logs/
|
550
|
-
- spec/support/logs/
|
551
|
-
- spec/support/logs/
|
552
|
-
- spec/support/logs/
|
553
|
-
- spec/support/logs/
|
554
|
-
- spec/support/logs/
|
555
|
-
- spec/support/logs/
|
556
|
-
- spec/support/logs/
|
557
|
-
- spec/support/logs/
|
558
|
-
- spec/support/logs/
|
559
|
-
- spec/support/logs/
|
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
|
432
|
+
- spec/support/logs/Agent - 2486896-44236.log
|
433
|
+
- spec/support/logs/Agent - 2487229-16390.log
|
434
|
+
- spec/support/logs/Agent - 2487520-2511.log
|
435
|
+
- spec/support/logs/Agent - 2487522-24008.log
|
436
|
+
- spec/support/logs/Agent - 2487526-3383.log
|
437
|
+
- spec/support/logs/Agent - 2487528-23713.log
|
438
|
+
- spec/support/logs/Agent - 2487530-42875.log
|
439
|
+
- spec/support/logs/Agent - 2487533-14182.log
|
440
|
+
- spec/support/logs/Agent - 2487535-32486.log
|
441
|
+
- spec/support/logs/Agent - 2487537-30578.log
|
442
|
+
- spec/support/logs/Agent - 2487539-65402.log
|
443
|
+
- spec/support/logs/Agent - 2493974-23066.log
|
444
|
+
- spec/support/logs/Agent - 2501716-11729.log
|
445
|
+
- spec/support/logs/Agent - 2501724-48638.log
|
446
|
+
- spec/support/logs/Agent - 2501961-60077.log
|
447
|
+
- spec/support/logs/Agent - 2501976-10941.log
|
448
|
+
- spec/support/logs/Agent - 2502050-45312.log
|
449
|
+
- spec/support/logs/Agent - 2502131-45940.log
|
450
|
+
- spec/support/logs/Agent - 2502139-59848.log
|
451
|
+
- spec/support/logs/Agent - 2502262-46629.log
|
452
|
+
- spec/support/logs/Agent - 2502298-28395.log
|
453
|
+
- spec/support/logs/Scheduler - 2486608-59709.log
|
454
|
+
- spec/support/logs/Scheduler - 2486612-44110.log
|
455
|
+
- spec/support/logs/Scheduler - 2486723-50393.log
|
456
|
+
- spec/support/logs/Scheduler - 2486727-21620.log
|
457
|
+
- spec/support/logs/Scheduler - 2486877-37845.log
|
458
|
+
- spec/support/logs/Scheduler - 2486881-3624.log
|
459
|
+
- spec/support/logs/Scheduler - 2486911-24752.log
|
460
|
+
- spec/support/logs/Scheduler - 2486919-48535.log
|
461
|
+
- spec/support/logs/Scheduler - 2486985-8897.log
|
462
|
+
- spec/support/logs/Scheduler - 2487211-7516.log
|
463
|
+
- spec/support/logs/Scheduler - 2487215-2831.log
|
464
|
+
- spec/support/logs/Scheduler - 2487246-7826.log
|
465
|
+
- spec/support/logs/Scheduler - 2487256-35669.log
|
466
|
+
- spec/support/logs/Scheduler - 2487272-11542.log
|
467
|
+
- spec/support/logs/Scheduler - 2487278-9621.log
|
468
|
+
- spec/support/logs/Scheduler - 2487291-24094.log
|
469
|
+
- spec/support/logs/Scheduler - 2487299-60095.log
|
470
|
+
- spec/support/logs/Scheduler - 2487368-7706.log
|
471
|
+
- spec/support/logs/Scheduler - 2487378-9859.log
|
472
|
+
- spec/support/logs/Scheduler - 2487396-17812.log
|
473
|
+
- spec/support/logs/Scheduler - 2487407-25543.log
|
474
|
+
- spec/support/logs/Scheduler - 2487451-44767.log
|
475
|
+
- spec/support/logs/Scheduler - 2487506-1422.log
|
476
|
+
- spec/support/logs/Scheduler - 2487541-38068.log
|
477
|
+
- spec/support/logs/Scheduler - 2487544-21866.log
|
478
|
+
- spec/support/logs/Scheduler - 2487548-15245.log
|
479
|
+
- spec/support/logs/Scheduler - 2487551-34905.log
|
480
|
+
- spec/support/logs/Scheduler - 2487554-22142.log
|
481
|
+
- spec/support/logs/Scheduler - 2487562-35113.log
|
482
|
+
- spec/support/logs/Scheduler - 2487565-55125.log
|
483
|
+
- spec/support/logs/Scheduler - 2487569-48845.log
|
484
|
+
- spec/support/logs/Scheduler - 2487576-57192.log
|
485
|
+
- spec/support/logs/Scheduler - 2487583-17991.log
|
486
|
+
- spec/support/logs/Scheduler - 2487586-30014.log
|
487
|
+
- spec/support/logs/Scheduler - 2487591-6472.log
|
488
|
+
- spec/support/logs/Scheduler - 2487594-2195.log
|
489
|
+
- spec/support/logs/Scheduler - 2487598-55808.log
|
490
|
+
- spec/support/logs/Scheduler - 2487605-7400.log
|
491
|
+
- spec/support/logs/Scheduler - 2487607-4337.log
|
492
|
+
- spec/support/logs/Scheduler - 2487610-25835.log
|
493
|
+
- spec/support/logs/Scheduler - 2493623-45209.log
|
494
|
+
- spec/support/logs/Scheduler - 2493714-59407.log
|
495
|
+
- spec/support/logs/Scheduler - 2494470-61696.log
|
496
|
+
- spec/support/logs/Scheduler - 2494723-2810.log
|
497
|
+
- spec/support/logs/Scheduler - 2495458-22112.log
|
498
|
+
- spec/support/logs/Scheduler - 2496034-4076.log
|
499
|
+
- spec/support/logs/Scheduler - 2496119-62253.log
|
500
|
+
- spec/support/logs/Scheduler - 2496210-50380.log
|
501
|
+
- spec/support/logs/Scheduler - 2497536-24922.log
|
502
|
+
- spec/support/logs/Scheduler - 2497786-13515.log
|
503
|
+
- spec/support/logs/Scheduler - 2498774-16911.log
|
504
|
+
- spec/support/logs/Scheduler - 2498961-4742.log
|
505
|
+
- spec/support/logs/Scheduler - 2500340-16045.log
|
506
|
+
- spec/support/logs/Scheduler - 2500980-26158.log
|
507
|
+
- spec/support/logs/Scheduler - 2502381-26435.log
|
508
|
+
- spec/support/logs/Scheduler - 2502463-62965.log
|
509
|
+
- spec/support/logs/Scheduler - 2502547-53434.log
|
510
|
+
- spec/support/logs/Scheduler - 2502628-43720.log
|
511
|
+
- spec/support/logs/Scheduler - 2502643-58379.log
|
512
|
+
- spec/support/logs/Scheduler - 2502873-64893.log
|
513
|
+
- spec/support/logs/Scheduler - 2502954-43885.log
|
514
|
+
- spec/support/logs/Scheduler - 2503039-52147.log
|
515
|
+
- spec/support/logs/Scheduler - 2503768-28831.log
|
516
|
+
- spec/support/logs/Scheduler - 2504259-24533.log
|
517
|
+
- spec/support/logs/Scheduler - 2504343-56967.log
|
518
|
+
- spec/support/logs/Scheduler - 2504502-25085.log
|
519
|
+
- spec/support/logs/Scheduler - 2504587-30789.log
|
520
|
+
- spec/support/logs/Scheduler - 2504608-56601.log
|
521
|
+
- spec/support/logs/Scheduler - 2504760-36374.log
|
522
|
+
- spec/support/logs/Scheduler - 2504841-49675.log
|
523
|
+
- spec/support/logs/Scheduler - 2504923-15781.log
|
735
524
|
- spec/support/logs/placeholder
|
736
525
|
- spec/support/pems/cacert.pem
|
737
526
|
- spec/support/pems/client/cert.pem
|
@@ -740,48 +529,20 @@ files:
|
|
740
529
|
- spec/support/pems/client/key.pem
|
741
530
|
- spec/support/pems/server/cert.pem
|
742
531
|
- spec/support/pems/server/key.pem
|
743
|
-
- spec/support/reports/
|
744
|
-
- spec/support/reports/
|
745
|
-
- spec/support/reports/
|
746
|
-
- spec/support/reports/
|
747
|
-
- spec/support/reports/
|
748
|
-
- spec/support/reports/
|
749
|
-
- spec/support/reports/
|
750
|
-
- spec/support/reports/
|
751
|
-
- spec/support/reports/
|
752
|
-
- spec/support/reports/
|
753
|
-
- spec/support/reports/
|
754
|
-
- spec/support/reports/
|
755
|
-
- spec/support/reports/
|
756
|
-
- spec/support/reports/
|
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
|
532
|
+
- spec/support/reports/18be00bff4371738c7c7013b284b415b.crf
|
533
|
+
- spec/support/reports/1ca39d410c2cf1f652eb8c320d6682bd.crf
|
534
|
+
- spec/support/reports/266a09d73152ce2f3d2951f1dab133f3.crf
|
535
|
+
- spec/support/reports/2929bee9c126b2695dc569b693fef574.crf
|
536
|
+
- spec/support/reports/2b9ce956f7060163d7a0b78603dc05ca.crf
|
537
|
+
- spec/support/reports/46bcffd844008e71c7d90a76baf8597d.crf
|
538
|
+
- spec/support/reports/620287cfdc373595385cf2471e1d4523.crf
|
539
|
+
- spec/support/reports/75fecdd5e006942292e02e6a223e7279.crf
|
540
|
+
- spec/support/reports/81cca53163bbab5ccf4d5f0401d5adcd.crf
|
541
|
+
- spec/support/reports/8c204ee129fe1bd6c5964d29ae5d03ae.crf
|
542
|
+
- spec/support/reports/aadbf2c1544b0e11174853fb4883a38c.crf
|
543
|
+
- spec/support/reports/c360a2833f3e635e69036916010edeac.crf
|
544
|
+
- spec/support/reports/e96abea937f1ed3f89bc2ec5397522db.crf
|
545
|
+
- spec/support/reports/f3d542036e17f6a66e11bfacb2fb3366.crf
|
785
546
|
- spec/support/reports/placeholder
|
786
547
|
- spec/support/shared/application.rb
|
787
548
|
- spec/support/shared/component.rb
|
@@ -791,20 +552,10 @@ files:
|
|
791
552
|
- spec/support/shared/support/filter.rb
|
792
553
|
- spec/support/shared/system/platforms/base.rb
|
793
554
|
- spec/support/shared/system/platforms/mixins/unix.rb
|
794
|
-
- spec/support/snapshots/Cuboid
|
795
|
-
- spec/support/snapshots/Cuboid
|
796
|
-
- spec/support/snapshots/Cuboid
|
797
|
-
- spec/support/snapshots/Cuboid
|
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
|
555
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_10_28 +0200 a06d9bd7db81b1b4fb077ceadcc3895f.csf
|
556
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_10_42 +0200 36c68859faf144eed9ff9c01ae754217.csf
|
557
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_24_42 +0200 5a26112a913330ee8763b2982a4d42df.csf
|
558
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_24_56 +0200 190856b98ac7099eb553ed3abcfbcb87.csf
|
808
559
|
- spec/support/snapshots/placeholder
|
809
560
|
homepage: https://github.com/qadron/cuboid
|
810
561
|
licenses:
|
@@ -826,426 +577,213 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
826
577
|
- !ruby/object:Gem::Version
|
827
578
|
version: '0'
|
828
579
|
requirements: []
|
829
|
-
rubygems_version: 3.
|
580
|
+
rubygems_version: 3.1.6
|
830
581
|
signing_key:
|
831
582
|
specification_version: 4
|
832
583
|
summary: An application-centric, decentralised and distributed computing solution.
|
833
584
|
test_files:
|
834
|
-
- spec/
|
585
|
+
- spec/support/pems/server/cert.pem
|
586
|
+
- spec/support/pems/server/key.pem
|
587
|
+
- spec/support/pems/cacert.pem
|
588
|
+
- spec/support/pems/client/foo-key.pem
|
589
|
+
- spec/support/pems/client/cert.pem
|
590
|
+
- spec/support/pems/client/foo-cert.pem
|
591
|
+
- spec/support/pems/client/key.pem
|
592
|
+
- spec/support/fixtures/services/echo.rb
|
593
|
+
- spec/support/fixtures/empty/placeholder
|
594
|
+
- spec/support/fixtures/mock_app/test_service.rb
|
595
|
+
- spec/support/fixtures/executables/node.rb
|
596
|
+
- spec/support/fixtures/mock_app.rb
|
597
|
+
- spec/support/reports/f3d542036e17f6a66e11bfacb2fb3366.crf
|
598
|
+
- spec/support/reports/81cca53163bbab5ccf4d5f0401d5adcd.crf
|
599
|
+
- spec/support/reports/e96abea937f1ed3f89bc2ec5397522db.crf
|
600
|
+
- spec/support/reports/75fecdd5e006942292e02e6a223e7279.crf
|
601
|
+
- spec/support/reports/c360a2833f3e635e69036916010edeac.crf
|
602
|
+
- spec/support/reports/2929bee9c126b2695dc569b693fef574.crf
|
603
|
+
- spec/support/reports/2b9ce956f7060163d7a0b78603dc05ca.crf
|
604
|
+
- spec/support/reports/620287cfdc373595385cf2471e1d4523.crf
|
605
|
+
- spec/support/reports/266a09d73152ce2f3d2951f1dab133f3.crf
|
606
|
+
- spec/support/reports/8c204ee129fe1bd6c5964d29ae5d03ae.crf
|
607
|
+
- spec/support/reports/placeholder
|
608
|
+
- spec/support/reports/1ca39d410c2cf1f652eb8c320d6682bd.crf
|
609
|
+
- spec/support/reports/18be00bff4371738c7c7013b284b415b.crf
|
610
|
+
- spec/support/reports/46bcffd844008e71c7d90a76baf8597d.crf
|
611
|
+
- spec/support/reports/aadbf2c1544b0e11174853fb4883a38c.crf
|
612
|
+
- spec/support/helpers/web_server.rb
|
613
|
+
- spec/support/helpers/request_helpers.rb
|
614
|
+
- spec/support/helpers/paths.rb
|
615
|
+
- spec/support/helpers/framework.rb
|
616
|
+
- spec/support/helpers/matchers.rb
|
617
|
+
- spec/support/helpers/resets.rb
|
618
|
+
- spec/support/helpers/requires.rb
|
619
|
+
- spec/support/helpers/misc.rb
|
620
|
+
- spec/support/factories/scan_report.rb
|
621
|
+
- spec/support/factories/placeholder
|
622
|
+
- spec/support/logs/Scheduler - 2487591-6472.log
|
623
|
+
- spec/support/logs/Scheduler - 2487396-17812.log
|
624
|
+
- spec/support/logs/Scheduler - 2495458-22112.log
|
625
|
+
- spec/support/logs/Scheduler - 2487551-34905.log
|
626
|
+
- spec/support/logs/Scheduler - 2496034-4076.log
|
627
|
+
- spec/support/logs/Scheduler - 2487407-25543.log
|
628
|
+
- spec/support/logs/Scheduler - 2487211-7516.log
|
629
|
+
- spec/support/logs/Scheduler - 2504502-25085.log
|
630
|
+
- spec/support/logs/Scheduler - 2486919-48535.log
|
631
|
+
- spec/support/logs/Scheduler - 2503039-52147.log
|
632
|
+
- spec/support/logs/Agent - 2487522-24008.log
|
633
|
+
- spec/support/logs/Scheduler - 2487506-1422.log
|
634
|
+
- spec/support/logs/Agent - 2502050-45312.log
|
635
|
+
- spec/support/logs/Scheduler - 2487368-7706.log
|
636
|
+
- spec/support/logs/Scheduler - 2486877-37845.log
|
637
|
+
- spec/support/logs/Scheduler - 2504587-30789.log
|
638
|
+
- spec/support/logs/Scheduler - 2487215-2831.log
|
639
|
+
- spec/support/logs/Scheduler - 2487562-35113.log
|
640
|
+
- spec/support/logs/Agent - 2493974-23066.log
|
641
|
+
- spec/support/logs/Scheduler - 2504608-56601.log
|
642
|
+
- spec/support/logs/Scheduler - 2487548-15245.log
|
643
|
+
- spec/support/logs/Scheduler - 2487605-7400.log
|
644
|
+
- spec/support/logs/Scheduler - 2502628-43720.log
|
645
|
+
- spec/support/logs/Scheduler - 2496119-62253.log
|
646
|
+
- spec/support/logs/Scheduler - 2487299-60095.log
|
647
|
+
- spec/support/logs/Scheduler - 2487569-48845.log
|
648
|
+
- spec/support/logs/Scheduler - 2500340-16045.log
|
649
|
+
- spec/support/logs/Scheduler - 2487610-25835.log
|
650
|
+
- spec/support/logs/Scheduler - 2504760-36374.log
|
651
|
+
- spec/support/logs/Scheduler - 2487451-44767.log
|
652
|
+
- spec/support/logs/Agent - 2487533-14182.log
|
653
|
+
- spec/support/logs/Scheduler - 2487544-21866.log
|
654
|
+
- spec/support/logs/Scheduler - 2493623-45209.log
|
655
|
+
- spec/support/logs/Agent - 2502262-46629.log
|
656
|
+
- spec/support/logs/Scheduler - 2487583-17991.log
|
657
|
+
- spec/support/logs/Scheduler - 2497786-13515.log
|
658
|
+
- spec/support/logs/Scheduler - 2502463-62965.log
|
659
|
+
- spec/support/logs/Scheduler - 2497536-24922.log
|
660
|
+
- spec/support/logs/Agent - 2487520-2511.log
|
661
|
+
- spec/support/logs/Scheduler - 2502547-53434.log
|
662
|
+
- spec/support/logs/Scheduler - 2502954-43885.log
|
663
|
+
- spec/support/logs/Agent - 2487535-32486.log
|
664
|
+
- spec/support/logs/Scheduler - 2487256-35669.log
|
665
|
+
- spec/support/logs/Scheduler - 2487246-7826.log
|
666
|
+
- spec/support/logs/Scheduler - 2486911-24752.log
|
667
|
+
- spec/support/logs/Scheduler - 2486723-50393.log
|
668
|
+
- spec/support/logs/Scheduler - 2494723-2810.log
|
669
|
+
- spec/support/logs/Agent - 2502131-45940.log
|
670
|
+
- spec/support/logs/Scheduler - 2487607-4337.log
|
671
|
+
- spec/support/logs/Scheduler - 2487278-9621.log
|
672
|
+
- spec/support/logs/placeholder
|
673
|
+
- spec/support/logs/Agent - 2501724-48638.log
|
674
|
+
- spec/support/logs/Scheduler - 2504923-15781.log
|
675
|
+
- spec/support/logs/Agent - 2501976-10941.log
|
676
|
+
- spec/support/logs/Scheduler - 2486881-3624.log
|
677
|
+
- spec/support/logs/Scheduler - 2487541-38068.log
|
678
|
+
- spec/support/logs/Scheduler - 2502381-26435.log
|
679
|
+
- spec/support/logs/Agent - 2487528-23713.log
|
680
|
+
- spec/support/logs/Scheduler - 2503768-28831.log
|
681
|
+
- spec/support/logs/Scheduler - 2502643-58379.log
|
682
|
+
- spec/support/logs/Agent - 2487530-42875.log
|
683
|
+
- spec/support/logs/Scheduler - 2487594-2195.log
|
684
|
+
- spec/support/logs/Scheduler - 2504259-24533.log
|
685
|
+
- spec/support/logs/Scheduler - 2487598-55808.log
|
686
|
+
- spec/support/logs/Scheduler - 2493714-59407.log
|
687
|
+
- spec/support/logs/Scheduler - 2494470-61696.log
|
688
|
+
- spec/support/logs/Scheduler - 2504841-49675.log
|
689
|
+
- spec/support/logs/Scheduler - 2487586-30014.log
|
690
|
+
- spec/support/logs/Agent - 2487537-30578.log
|
691
|
+
- spec/support/logs/Scheduler - 2486612-44110.log
|
692
|
+
- spec/support/logs/Scheduler - 2486608-59709.log
|
693
|
+
- spec/support/logs/Scheduler - 2487576-57192.log
|
694
|
+
- spec/support/logs/Scheduler - 2487272-11542.log
|
695
|
+
- spec/support/logs/Scheduler - 2486727-21620.log
|
696
|
+
- spec/support/logs/Scheduler - 2486985-8897.log
|
697
|
+
- spec/support/logs/Agent - 2501961-60077.log
|
698
|
+
- spec/support/logs/Agent - 2502139-59848.log
|
699
|
+
- spec/support/logs/Scheduler - 2487554-22142.log
|
700
|
+
- spec/support/logs/Scheduler - 2487378-9859.log
|
701
|
+
- spec/support/logs/Scheduler - 2502873-64893.log
|
702
|
+
- spec/support/logs/Agent - 2501716-11729.log
|
703
|
+
- spec/support/logs/Agent - 2486896-44236.log
|
704
|
+
- spec/support/logs/Scheduler - 2504343-56967.log
|
705
|
+
- spec/support/logs/Agent - 2487229-16390.log
|
706
|
+
- spec/support/logs/Agent - 2487539-65402.log
|
707
|
+
- spec/support/logs/Agent - 2502298-28395.log
|
708
|
+
- spec/support/logs/Scheduler - 2496210-50380.log
|
709
|
+
- spec/support/logs/Agent - 2487526-3383.log
|
710
|
+
- spec/support/logs/Scheduler - 2498961-4742.log
|
711
|
+
- spec/support/logs/Scheduler - 2487291-24094.log
|
712
|
+
- spec/support/logs/Scheduler - 2487565-55125.log
|
713
|
+
- spec/support/logs/Scheduler - 2500980-26158.log
|
714
|
+
- spec/support/logs/Scheduler - 2498774-16911.log
|
715
|
+
- spec/support/lib/web_server_manager.rb
|
716
|
+
- spec/support/lib/factory.rb
|
717
|
+
- spec/support/lib/web_server_dispatcher.rb
|
718
|
+
- spec/support/lib/web_server_client.rb
|
719
|
+
- spec/support/shared/component/options/base.rb
|
720
|
+
- spec/support/shared/support/filter.rb
|
721
|
+
- spec/support/shared/support/cache.rb
|
722
|
+
- spec/support/shared/application.rb
|
723
|
+
- spec/support/shared/component.rb
|
724
|
+
- spec/support/shared/option_group.rb
|
725
|
+
- spec/support/shared/system/platforms/base.rb
|
726
|
+
- spec/support/shared/system/platforms/mixins/unix.rb
|
727
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_10_28 +0200 a06d9bd7db81b1b4fb077ceadcc3895f.csf
|
728
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_24_42 +0200 5a26112a913330ee8763b2982a4d42df.csf
|
729
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_10_42 +0200 36c68859faf144eed9ff9c01ae754217.csf
|
730
|
+
- spec/support/snapshots/placeholder
|
731
|
+
- spec/support/snapshots/Cuboid 2022-02-01 13_24_56 +0200 190856b98ac7099eb553ed3abcfbcb87.csf
|
732
|
+
- spec/cuboid/application/runtime_spec.rb
|
835
733
|
- spec/cuboid/application/parts/report_spec.rb
|
836
734
|
- spec/cuboid/application/parts/state_spec.rb
|
837
|
-
- spec/cuboid/application/
|
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
|
735
|
+
- spec/cuboid/application/parts/data_spec.rb
|
845
736
|
- spec/cuboid/option_groups/paths_spec.rb
|
846
|
-
- spec/cuboid/option_groups/
|
737
|
+
- spec/cuboid/option_groups/dispatcher_spec.rb
|
738
|
+
- spec/cuboid/option_groups/datastore_spec.rb
|
847
739
|
- spec/cuboid/option_groups/rpc_spec.rb
|
848
740
|
- spec/cuboid/option_groups/snapshot_spec.rb
|
741
|
+
- spec/cuboid/option_groups/output_spec.rb
|
742
|
+
- spec/cuboid/option_groups/report_spec.rb
|
849
743
|
- spec/cuboid/option_groups/system.rb
|
850
|
-
- spec/cuboid/
|
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
|
744
|
+
- spec/cuboid/utilities_spec.rb
|
860
745
|
- spec/cuboid/rpc/server/dispatcher_spec.rb
|
861
|
-
- spec/cuboid/rpc/server/
|
746
|
+
- spec/cuboid/rpc/server/dispatcher/service_spec.rb
|
747
|
+
- spec/cuboid/rpc/server/dispatcher/node_spec.rb
|
862
748
|
- spec/cuboid/rpc/server/output_spec.rb
|
749
|
+
- spec/cuboid/rpc/server/active_options_spec.rb
|
750
|
+
- spec/cuboid/rpc/server/instance_spec.rb
|
863
751
|
- spec/cuboid/rpc/server/scheduler_spec.rb
|
864
|
-
- spec/cuboid/
|
865
|
-
- spec/cuboid/
|
866
|
-
- spec/cuboid/
|
867
|
-
- spec/cuboid/
|
868
|
-
- spec/cuboid/state/application_spec.rb
|
869
|
-
- spec/cuboid/state/options_spec.rb
|
870
|
-
- spec/cuboid/state_spec.rb
|
752
|
+
- spec/cuboid/rpc/server/base_spec.rb
|
753
|
+
- spec/cuboid/rpc/client/dispatcher_spec.rb
|
754
|
+
- spec/cuboid/rpc/client/instance_spec.rb
|
755
|
+
- spec/cuboid/rpc/client/base_spec.rb
|
871
756
|
- spec/cuboid/support/buffer/autoflush_spec.rb
|
872
757
|
- spec/cuboid/support/buffer/base_spec.rb
|
873
|
-
- spec/cuboid/support/
|
874
|
-
- spec/cuboid/support/
|
758
|
+
- spec/cuboid/support/crypto/rsa_aes_cbc_spec.rb
|
759
|
+
- spec/cuboid/support/filter/set_spec.rb
|
760
|
+
- spec/cuboid/support/mixins/observable_spec.rb
|
875
761
|
- spec/cuboid/support/cache/least_recently_used_spec.rb
|
762
|
+
- spec/cuboid/support/cache/least_cost_replacement_spec.rb
|
876
763
|
- spec/cuboid/support/cache/preference_spec.rb
|
877
764
|
- spec/cuboid/support/cache/random_replacement_spec.rb
|
878
|
-
- spec/cuboid/support/
|
879
|
-
- spec/cuboid/support/
|
765
|
+
- spec/cuboid/support/cache/least_recently_pushed_spec.rb
|
766
|
+
- spec/cuboid/support/glob_spec.rb
|
880
767
|
- spec/cuboid/support/database/hash_spec.rb
|
881
768
|
- spec/cuboid/support/database/scheduler_spec.rb
|
882
|
-
- spec/cuboid/support/
|
883
|
-
- spec/cuboid/
|
884
|
-
- spec/cuboid/
|
769
|
+
- spec/cuboid/support/database/categorized_queue_spec.rb
|
770
|
+
- spec/cuboid/data/application_spec.rb
|
771
|
+
- spec/cuboid/application_spec.rb
|
772
|
+
- spec/cuboid/state/application_spec.rb
|
773
|
+
- spec/cuboid/state/options_spec.rb
|
774
|
+
- spec/cuboid/options_spec.rb
|
775
|
+
- spec/cuboid/snapshot_spec.rb
|
776
|
+
- spec/cuboid/ruby/hash_spec.rb
|
777
|
+
- spec/cuboid/ruby/object_spec.rb
|
778
|
+
- spec/cuboid/ruby/array_spec.rb
|
779
|
+
- spec/cuboid/report_spec.rb
|
780
|
+
- spec/cuboid/state_spec.rb
|
781
|
+
- spec/cuboid/error_spec.rb
|
782
|
+
- spec/cuboid/system_spec.rb
|
783
|
+
- spec/cuboid/rest/server_spec.rb
|
784
|
+
- spec/cuboid/data_spec.rb
|
785
|
+
- spec/cuboid/system/platforms/windows_spec.rb
|
885
786
|
- spec/cuboid/system/platforms/linux_spec.rb
|
886
787
|
- spec/cuboid/system/platforms/osx_spec.rb
|
887
|
-
- spec/cuboid/system/platforms/windows_spec.rb
|
888
788
|
- spec/cuboid/system/slots_spec.rb
|
889
|
-
- spec/cuboid/system_spec.rb
|
890
|
-
- spec/cuboid/utilities_spec.rb
|
891
789
|
- 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
|