itsi 0.1.18 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/Cargo.lock +924 -385
- data/README.md +67 -55
- data/crates/itsi_server/Cargo.toml +7 -4
- data/crates/itsi_server/src/ruby_types/itsi_http_request.rs +2 -2
- data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +150 -19
- data/crates/itsi_server/src/ruby_types/itsi_server.rs +1 -0
- data/crates/itsi_server/src/server/binds/listener.rs +34 -29
- data/crates/itsi_server/src/server/binds/tls/locked_dir_cache.rs +2 -2
- data/crates/itsi_server/src/server/binds/tls.rs +1 -1
- data/crates/itsi_server/src/server/middleware_stack/middleware.rs +33 -28
- data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +56 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/csp.rs +179 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/mod.rs +25 -2
- data/crates/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +3 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +2 -1
- data/crates/itsi_server/src/server/middleware_stack/mod.rs +32 -34
- data/crates/itsi_server/src/server/serve_strategy/cluster_mode.rs +10 -4
- data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +30 -7
- data/crates/itsi_server/src/server/thread_worker.rs +2 -2
- data/crates/itsi_server/src/services/static_file_server.rs +30 -28
- data/crates/itsi_tracing/src/lib.rs +39 -8
- data/docker/Dockerfile +12 -0
- data/docs/content/_index.md +18 -10
- data/docs/content/acknowledgements/_index.md +43 -0
- data/docs/content/configuration/_index.md +98 -0
- data/docs/content/contact/_index.md +7 -0
- data/docs/content/faqs/_index.md +27 -0
- data/docs/content/features/_index.md +285 -0
- data/docs/content/getting_started/_index.md +70 -0
- data/docs/content/getting_started/local_development.md +40 -0
- data/docs/content/getting_started/logging.md +16 -0
- data/docs/content/getting_started/running_itsi_in_production.md +24 -0
- data/docs/content/itsi-server-100.png +0 -0
- data/docs/content/itsi_scheduler/_index.md +105 -0
- data/docs/content/itsi_scheduler/itsi-scheduler-100.png +0 -0
- data/docs/content/ruby-lsp.png +0 -0
- data/docs/content/ruby.svg +948 -0
- data/docs/data/icons.yaml +949 -0
- data/docs/hugo.yaml +27 -28
- data/fairytale.txt +34 -0
- data/gems/scheduler/Cargo.lock +46 -46
- data/gems/scheduler/README.md +53 -24
- data/gems/scheduler/itsi-scheduler-100.png +0 -0
- data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
- data/gems/server/Cargo.lock +932 -382
- data/gems/server/README.md +2 -0
- data/gems/server/exe/itsi +5 -5
- data/gems/server/lib/itsi/http_request.rb +1 -0
- data/gems/server/lib/itsi/server/config/config_helpers.rb +93 -0
- data/gems/server/lib/itsi/server/config/dsl.rb +98 -37
- data/gems/server/lib/itsi/server/config/known_paths/KitchensinkDirectories.txt +2346 -0
- data/gems/server/lib/itsi/server/config/known_paths/Randomfiles.txt +24 -0
- data/gems/server/lib/itsi/server/config/known_paths/UnixDotfiles.txt +52 -0
- data/gems/server/lib/itsi/server/config/known_paths/backdoors/ASP_CommonBackdoors.txt +29 -0
- data/gems/server/lib/itsi/server/config/known_paths/backdoors/bot_control_panels.txt +1668 -0
- data/gems/server/lib/itsi/server/config/known_paths/backdoors/shells.txt +1167 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST.txt +7 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST_Windows.txt +6 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_Microsoft.txt +79 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_XPlatform.txt +3948 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/README.md +5 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_plugins.txt +6320 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_themes.txt +828 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_plugins.txt +224 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_themes.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/php-nuke.txt +2142 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wordpress.txt +1566 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_common_theme_files.txt +46 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins.txt +13366 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_full.txt +68662 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_top225.txt +225 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.readme +12 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.txt +7336 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/3CharExtBrute.txt +17576 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/CommonWebExtensions.txt +80 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Backup.txt +14 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Common.txt +865 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Compressed.txt +186 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Mostcommon.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Skipfish.txt +93 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/WordlistSkipfish.txt +1918 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/copy_of.txt +8 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt +56180 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories.txt +62290 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt +2367 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions.txt +2450 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files-lowercase.txt +35323 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files.txt +37037 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words-lowercase.txt +107982 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words.txt +119600 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt +26593 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories.txt +30009 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt +1233 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions.txt +1289 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt +16243 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files.txt +17128 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt +56293 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words.txt +63087 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt +17776 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories.txt +20122 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt +914 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions.txt +963 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files-lowercase.txt +10848 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files.txt +11424 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words-lowercase.txt +38267 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words.txt +43003 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/spanish.txt +445 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/test_demo.txt +36 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/upload_variants.txt +44 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/Logins.txt +71 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/cfm.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/html.txt +295 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/jsp.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/php.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-asp.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-aspx.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/password-file-locations/Passwords.txt +47 -0
- data/gems/server/lib/itsi/server/config/known_paths/php/PHP.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths/php/PHP_CommonBackdoors.txt +5 -0
- data/gems/server/lib/itsi/server/config/known_paths/proxy-conf.txt +31 -0
- data/gems/server/lib/itsi/server/config/known_paths/tftp.txt +79 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ADFS.txt +86 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/AdobeXML.txt +16 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache.txt +101 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ApacheTomcat.txt +47 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache_Axis.txt +16 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ColdFusion.txt +111 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/FatwireCMS.txt +390 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Frontpage.txt +38 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HP_System_Mgmt_Homepage.txt +239 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HTTP_POST_Microsoft.txt +2 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Hyperion.txt +578 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/IIS.txt +187 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JBoss.txt +5 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JRun.txt +13 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JavaServlets_Common.txt +3 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Joomla_exploitable.txt +1937 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/LotusNotes.txt +206 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Netware.txt +18 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Oracle9i.txt +60 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/OracleAppServer.txt +192 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/README.md +6 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Ruby_Rails.txt +121 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SAP.txt +463 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Sharepoint.txt +1707 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SiteMinder.txt +19 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SunAppServerGlassfish.txt +51 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SuniPlanet.txt +35 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Vignette.txt +73 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Weblogic.txt +160 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Websphere.txt +366 -0
- data/gems/server/lib/itsi/server/config/known_paths/wellknown-rfc5785.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths.rb +17 -0
- data/gems/server/lib/itsi/server/config/middleware/_index.md +54 -0
- data/gems/server/lib/itsi/server/config/middleware/log_requests.md +63 -0
- data/gems/server/lib/itsi/server/config/middleware/log_requests.rb +33 -0
- data/gems/server/lib/itsi/server/config/middleware.rb +9 -0
- data/gems/server/lib/itsi/server/config/option.rb +9 -0
- data/gems/server/lib/itsi/server/config/options/_index.md +36 -0
- data/gems/server/lib/itsi/server/config/options/fiber_scheduler.md +35 -0
- data/gems/server/lib/itsi/server/config/options/fiber_scheduler.rb +18 -0
- data/gems/server/lib/itsi/server/config/options/threads.md +39 -0
- data/gems/server/lib/itsi/server/config/options/threads.rb +17 -0
- data/gems/server/lib/itsi/server/config/options/workers.md +43 -0
- data/gems/server/lib/itsi/server/config/options/workers.rb +17 -0
- data/gems/server/lib/itsi/server/config/typed_struct.rb +203 -0
- data/gems/server/lib/itsi/server/config.rb +124 -30
- data/gems/server/lib/itsi/server/signal_trap.rb +5 -1
- data/gems/server/lib/itsi/server/typed_handlers/source_parser.rb +1 -1
- data/gems/server/lib/itsi/server/version.rb +1 -1
- data/gems/server/lib/itsi/server.rb +27 -6
- data/gems/server/lib/ruby_lsp/itsi/addon.rb +64 -48
- data/gems/server/test/helpers/test_helper.rb +64 -5
- data/gems/server/test/middleware/test_log_requests.rb +17 -0
- data/gems/server/test/options/test_threads.rb +15 -0
- data/gems/server/test/options/test_workers.rb +18 -0
- data/gems/server/test/test_itsi_server.rb +81 -94
- data/itsi-scheduler-100.png +0 -0
- data/itsi-server-100.png +0 -0
- data/lib/itsi/version.rb +1 -1
- data/tasks.txt +36 -28
- metadata +147 -215
- data/crates/_index.md +0 -0
- data/crates/itsi_server/src/ruby_types/README.md +0 -21
- data/crates/itsi_server/test.md +0 -14
- data/docs/Itsi.rb +0 -17
- data/docs/content/about.md +0 -6
- data/docs/content/docs/_index.md +0 -18
- data/docs/content/docs/first-page.md +0 -9
- data/docs/content/docs/folder/_index.md +0 -10
- data/docs/content/docs/folder/leaf.md +0 -7
- data/foo/Itsi.rb +0 -122
- data/gems/_index.md +0 -18
- data/gems/scheduler/CHANGELOG.md +0 -5
- data/gems/scheduler/CODE_OF_CONDUCT.md +0 -139
- data/gems/scheduler/LICENSE.txt +0 -21
- data/gems/scheduler/_index.md +0 -7
- data/gems/server/CHANGELOG.md +0 -10
- data/gems/server/CODE_OF_CONDUCT.md +0 -139
- data/gems/server/LICENSE.txt +0 -21
- data/gems/server/_index.md +0 -6
- data/sandbox/README.md +0 -5
- data/sandbox/deploy/main.tf +0 -238
- data/sandbox/deploy/outputs.tf +0 -4
- data/sandbox/deploy/vars.tf +0 -11
- data/sandbox/falcon_benchmark/Gemfile +0 -10
- data/sandbox/falcon_benchmark/Gemfile.lock +0 -140
- data/sandbox/falcon_benchmark/config.ru +0 -54
- data/sandbox/itsi_file/Gemfile +0 -13
- data/sandbox/itsi_file/Gemfile.lock +0 -111
- data/sandbox/itsi_file/Itsi.rb +0 -473
- data/sandbox/itsi_file/call.json +0 -1
- data/sandbox/itsi_file/echo_client/Gemfile +0 -10
- data/sandbox/itsi_file/echo_client/Gemfile.lock +0 -27
- data/sandbox/itsi_file/echo_client/README.md +0 -95
- data/sandbox/itsi_file/echo_client/echo_client.rb +0 -164
- data/sandbox/itsi_file/echo_client/gen_proto.sh +0 -17
- data/sandbox/itsi_file/echo_client/lib/echo_pb.rb +0 -16
- data/sandbox/itsi_file/echo_client/lib/echo_services_pb.rb +0 -29
- data/sandbox/itsi_file/echo_client/run_client.rb +0 -64
- data/sandbox/itsi_file/echo_client/test_compressions.sh +0 -20
- data/sandbox/itsi_file/echo_service_nonitsi/Gemfile +0 -10
- data/sandbox/itsi_file/echo_service_nonitsi/Gemfile.lock +0 -79
- data/sandbox/itsi_file/echo_service_nonitsi/echo.proto +0 -26
- data/sandbox/itsi_file/echo_service_nonitsi/echo_pb.rb +0 -16
- data/sandbox/itsi_file/echo_service_nonitsi/echo_services_pb.rb +0 -29
- data/sandbox/itsi_file/echo_service_nonitsi/server.rb +0 -52
- data/sandbox/itsi_file/error.html +0 -2
- data/sandbox/itsi_file/organisations_controller.rb +0 -20
- data/sandbox/itsi_file/public/assets/image.png +0 -0
- data/sandbox/itsi_sandbox_async/Gemfile +0 -10
- data/sandbox/itsi_sandbox_async/Gemfile.lock +0 -69
- data/sandbox/itsi_sandbox_async/config.ru +0 -9
- data/sandbox/itsi_sandbox_hanami/.env +0 -2
- data/sandbox/itsi_sandbox_hanami/.gitignore +0 -6
- data/sandbox/itsi_sandbox_hanami/.rspec +0 -1
- data/sandbox/itsi_sandbox_hanami/Gemfile +0 -49
- data/sandbox/itsi_sandbox_hanami/Gemfile.lock +0 -440
- data/sandbox/itsi_sandbox_hanami/Guardfile +0 -9
- data/sandbox/itsi_sandbox_hanami/Procfile.dev +0 -2
- data/sandbox/itsi_sandbox_hanami/README.md +0 -1
- data/sandbox/itsi_sandbox_hanami/Rakefile +0 -3
- data/sandbox/itsi_sandbox_hanami/app/action.rb +0 -12
- data/sandbox/itsi_sandbox_hanami/app/actions/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/assets/css/app.css +0 -5
- data/sandbox/itsi_sandbox_hanami/app/assets/images/favicon.ico +0 -0
- data/sandbox/itsi_sandbox_hanami/app/assets/js/app.js +0 -1
- data/sandbox/itsi_sandbox_hanami/app/db/relation.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/app/db/repo.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/app/db/struct.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/app/operation.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/app/relations/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/repos/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/structs/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/templates/layouts/app.html.erb +0 -14
- data/sandbox/itsi_sandbox_hanami/app/view.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/app/views/helpers.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/bin/dev +0 -8
- data/sandbox/itsi_sandbox_hanami/config/app.rb +0 -8
- data/sandbox/itsi_sandbox_hanami/config/assets.js +0 -16
- data/sandbox/itsi_sandbox_hanami/config/db/migrate/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/config/db/seeds.rb +0 -15
- data/sandbox/itsi_sandbox_hanami/config/puma.rb +0 -47
- data/sandbox/itsi_sandbox_hanami/config/routes.rb +0 -7
- data/sandbox/itsi_sandbox_hanami/config/settings.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/config.ru +0 -5
- data/sandbox/itsi_sandbox_hanami/db/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/lib/itsi_hanami/types.rb +0 -11
- data/sandbox/itsi_sandbox_hanami/lib/tasks/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/package-lock.json +0 -946
- data/sandbox/itsi_sandbox_hanami/package.json +0 -8
- data/sandbox/itsi_sandbox_hanami/spec/requests/root_spec.rb +0 -11
- data/sandbox/itsi_sandbox_hanami/spec/spec_helper.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/spec/support/db/cleaning.rb +0 -42
- data/sandbox/itsi_sandbox_hanami/spec/support/db.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/spec/support/features.rb +0 -5
- data/sandbox/itsi_sandbox_hanami/spec/support/operations.rb +0 -8
- data/sandbox/itsi_sandbox_hanami/spec/support/requests.rb +0 -13
- data/sandbox/itsi_sandbox_hanami/spec/support/rspec.rb +0 -61
- data/sandbox/itsi_sandbox_rack/Gemfile +0 -17
- data/sandbox/itsi_sandbox_rack/Gemfile.lock +0 -153
- data/sandbox/itsi_sandbox_rack/config.ru +0 -5
- data/sandbox/itsi_sandbox_rack_lint/Gemfile +0 -7
- data/sandbox/itsi_sandbox_rack_lint/Gemfile.lock +0 -27
- data/sandbox/itsi_sandbox_rack_lint/config.ru +0 -3
- data/sandbox/itsi_sandbox_rails/.dockerignore +0 -48
- data/sandbox/itsi_sandbox_rails/.gitattributes +0 -9
- data/sandbox/itsi_sandbox_rails/.github/dependabot.yml +0 -12
- data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +0 -90
- data/sandbox/itsi_sandbox_rails/.gitignore +0 -35
- data/sandbox/itsi_sandbox_rails/.rubocop.yml +0 -8
- data/sandbox/itsi_sandbox_rails/.ruby-version +0 -1
- data/sandbox/itsi_sandbox_rails/Dockerfile +0 -69
- data/sandbox/itsi_sandbox_rails/Gemfile +0 -66
- data/sandbox/itsi_sandbox_rails/Gemfile.lock +0 -429
- data/sandbox/itsi_sandbox_rails/README.md +0 -24
- data/sandbox/itsi_sandbox_rails/Rakefile +0 -6
- data/sandbox/itsi_sandbox_rails/app/assets/config/manifest.js +0 -4
- data/sandbox/itsi_sandbox_rails/app/assets/images/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +0 -15
- data/sandbox/itsi_sandbox_rails/app/channels/application_cable/channel.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/channels/application_cable/connection.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/controllers/application_controller.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/controllers/concerns/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/app/controllers/home_controller.rb +0 -66
- data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +0 -40
- data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +0 -29
- data/sandbox/itsi_sandbox_rails/app/helpers/application_helper.rb +0 -2
- data/sandbox/itsi_sandbox_rails/app/javascript/application.js +0 -3
- data/sandbox/itsi_sandbox_rails/app/javascript/controllers/application.js +0 -9
- data/sandbox/itsi_sandbox_rails/app/javascript/controllers/hello_controller.js +0 -7
- data/sandbox/itsi_sandbox_rails/app/javascript/controllers/index.js +0 -4
- data/sandbox/itsi_sandbox_rails/app/jobs/application_job.rb +0 -7
- data/sandbox/itsi_sandbox_rails/app/mailers/application_mailer.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/models/application_record.rb +0 -3
- data/sandbox/itsi_sandbox_rails/app/models/concerns/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/app/models/post.rb +0 -2
- data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +0 -23
- data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.html.erb +0 -13
- data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.text.erb +0 -1
- data/sandbox/itsi_sandbox_rails/app/views/pwa/manifest.json.erb +0 -22
- data/sandbox/itsi_sandbox_rails/app/views/pwa/service-worker.js +0 -26
- data/sandbox/itsi_sandbox_rails/bin/brakeman +0 -7
- data/sandbox/itsi_sandbox_rails/bin/bundle +0 -109
- data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +0 -13
- data/sandbox/itsi_sandbox_rails/bin/importmap +0 -4
- data/sandbox/itsi_sandbox_rails/bin/rails +0 -4
- data/sandbox/itsi_sandbox_rails/bin/rake +0 -4
- data/sandbox/itsi_sandbox_rails/bin/rubocop +0 -8
- data/sandbox/itsi_sandbox_rails/bin/setup +0 -37
- data/sandbox/itsi_sandbox_rails/config/application.rb +0 -27
- data/sandbox/itsi_sandbox_rails/config/boot.rb +0 -4
- data/sandbox/itsi_sandbox_rails/config/cable.yml +0 -10
- data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +0 -1
- data/sandbox/itsi_sandbox_rails/config/database.yml +0 -30
- data/sandbox/itsi_sandbox_rails/config/environment.rb +0 -5
- data/sandbox/itsi_sandbox_rails/config/environments/development.rb +0 -82
- data/sandbox/itsi_sandbox_rails/config/environments/production.rb +0 -106
- data/sandbox/itsi_sandbox_rails/config/environments/test.rb +0 -67
- data/sandbox/itsi_sandbox_rails/config/importmap.rb +0 -7
- data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +0 -12
- data/sandbox/itsi_sandbox_rails/config/initializers/content_security_policy.rb +0 -25
- data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +0 -8
- data/sandbox/itsi_sandbox_rails/config/initializers/inflections.rb +0 -16
- data/sandbox/itsi_sandbox_rails/config/initializers/permissions_policy.rb +0 -13
- data/sandbox/itsi_sandbox_rails/config/locales/en.yml +0 -31
- data/sandbox/itsi_sandbox_rails/config/puma.rb +0 -34
- data/sandbox/itsi_sandbox_rails/config/routes.rb +0 -23
- data/sandbox/itsi_sandbox_rails/config/storage.yml +0 -34
- data/sandbox/itsi_sandbox_rails/config.ru +0 -6
- data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +0 -10
- data/sandbox/itsi_sandbox_rails/db/schema.rb +0 -23
- data/sandbox/itsi_sandbox_rails/db/seeds.rb +0 -9
- data/sandbox/itsi_sandbox_rails/lib/assets/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/lib/tasks/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/log/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/public/404.html +0 -67
- data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +0 -66
- data/sandbox/itsi_sandbox_rails/public/422.html +0 -67
- data/sandbox/itsi_sandbox_rails/public/500.html +0 -66
- data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
- data/sandbox/itsi_sandbox_rails/public/icon.svg +0 -3
- data/sandbox/itsi_sandbox_rails/public/robots.txt +0 -1
- data/sandbox/itsi_sandbox_rails/storage/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/application_system_test_case.rb +0 -5
- data/sandbox/itsi_sandbox_rails/test/channels/application_cable/connection_test.rb +0 -13
- data/sandbox/itsi_sandbox_rails/test/controllers/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/fixtures/files/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/helpers/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/integration/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/mailers/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/models/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/system/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/test_helper.rb +0 -15
- data/sandbox/itsi_sandbox_rails/tmp/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/tmp/pids/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/tmp/storage/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/vendor/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/vendor/javascript/.keep +0 -0
- data/sandbox/itsi_sandbox_roda/Gemfile +0 -5
- data/sandbox/itsi_sandbox_roda/Gemfile.lock +0 -37
- data/sandbox/itsi_sandbox_roda/config.ru +0 -39
- data/sandbox/itsi_sinatra/Gemfile +0 -9
- data/sandbox/itsi_sinatra/Gemfile.lock +0 -81
- data/sandbox/itsi_sinatra/app.rb +0 -8
- data/sandbox/pebble/docker-compose.yml +0 -11
- data/sandbox/static_files/.env +0 -1
- data/sandbox/static_files/404.html +0 -25
- data/sandbox/static_files/_DSC0102.NEF.jpg +0 -0
- data/sandbox/static_files/about.html +0 -68
- data/sandbox/static_files/tiny.html +0 -1
- data/sandbox/static_files/writebook.zip +0 -0
@@ -1,66 +0,0 @@
|
|
1
|
-
source "https://rubygems.org"
|
2
|
-
|
3
|
-
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
|
4
|
-
gem "rails", "~> 7.2.2"
|
5
|
-
|
6
|
-
gem "pg"
|
7
|
-
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
|
8
|
-
gem "sprockets-rails"
|
9
|
-
# Use sqlite3 as the database for Active Record
|
10
|
-
gem "sqlite3", ">= 1.4"
|
11
|
-
# Use the Puma web server [https://github.com/puma/puma]
|
12
|
-
gem "puma", ">= 5.0"
|
13
|
-
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
|
14
|
-
gem "importmap-rails"
|
15
|
-
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
|
16
|
-
gem "turbo-rails"
|
17
|
-
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
18
|
-
gem "stimulus-rails"
|
19
|
-
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
|
20
|
-
gem "jbuilder"
|
21
|
-
# Use Redis adapter to run Action Cable in production
|
22
|
-
# gem "redis", ">= 4.0.1"
|
23
|
-
|
24
|
-
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
|
25
|
-
# gem "kredis"
|
26
|
-
|
27
|
-
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
|
28
|
-
# gem "bcrypt", "~> 3.1.7"
|
29
|
-
|
30
|
-
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
31
|
-
gem "tzinfo-data", platforms: %i[ windows jruby ]
|
32
|
-
|
33
|
-
# Reduces boot times through caching; required in config/boot.rb
|
34
|
-
gem "bootsnap", require: false
|
35
|
-
|
36
|
-
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
|
37
|
-
# gem "image_processing", "~> 1.2"
|
38
|
-
|
39
|
-
group :development, :test do
|
40
|
-
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
|
41
|
-
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
|
42
|
-
|
43
|
-
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
|
44
|
-
gem "brakeman", require: false
|
45
|
-
|
46
|
-
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
|
47
|
-
gem "rubocop-rails-omakase", require: false
|
48
|
-
end
|
49
|
-
|
50
|
-
group :development do
|
51
|
-
# Use console on exceptions pages [https://github.com/rails/web-console]
|
52
|
-
gem "web-console"
|
53
|
-
end
|
54
|
-
|
55
|
-
group :test do
|
56
|
-
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
|
57
|
-
gem "capybara"
|
58
|
-
gem "selenium-webdriver"
|
59
|
-
end
|
60
|
-
|
61
|
-
gem "itsi-scheduler", path: "../../gems/scheduler"
|
62
|
-
gem "itsi-server", path: "../../gems/server"
|
63
|
-
# gem "unicorn"
|
64
|
-
gem "iodine"
|
65
|
-
gem "falcon"
|
66
|
-
# gem "puma"
|
@@ -1,429 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../../gems/scheduler
|
3
|
-
specs:
|
4
|
-
itsi-scheduler (0.1.17)
|
5
|
-
rb_sys (~> 0.9.91)
|
6
|
-
|
7
|
-
PATH
|
8
|
-
remote: ../../gems/server
|
9
|
-
specs:
|
10
|
-
itsi-server (0.1.17)
|
11
|
-
rack (>= 1.6)
|
12
|
-
rb_sys (~> 0.9.91)
|
13
|
-
|
14
|
-
GEM
|
15
|
-
remote: https://rubygems.org/
|
16
|
-
specs:
|
17
|
-
actioncable (7.2.2.1)
|
18
|
-
actionpack (= 7.2.2.1)
|
19
|
-
activesupport (= 7.2.2.1)
|
20
|
-
nio4r (~> 2.0)
|
21
|
-
websocket-driver (>= 0.6.1)
|
22
|
-
zeitwerk (~> 2.6)
|
23
|
-
actionmailbox (7.2.2.1)
|
24
|
-
actionpack (= 7.2.2.1)
|
25
|
-
activejob (= 7.2.2.1)
|
26
|
-
activerecord (= 7.2.2.1)
|
27
|
-
activestorage (= 7.2.2.1)
|
28
|
-
activesupport (= 7.2.2.1)
|
29
|
-
mail (>= 2.8.0)
|
30
|
-
actionmailer (7.2.2.1)
|
31
|
-
actionpack (= 7.2.2.1)
|
32
|
-
actionview (= 7.2.2.1)
|
33
|
-
activejob (= 7.2.2.1)
|
34
|
-
activesupport (= 7.2.2.1)
|
35
|
-
mail (>= 2.8.0)
|
36
|
-
rails-dom-testing (~> 2.2)
|
37
|
-
actionpack (7.2.2.1)
|
38
|
-
actionview (= 7.2.2.1)
|
39
|
-
activesupport (= 7.2.2.1)
|
40
|
-
nokogiri (>= 1.8.5)
|
41
|
-
racc
|
42
|
-
rack (>= 2.2.4, < 3.2)
|
43
|
-
rack-session (>= 1.0.1)
|
44
|
-
rack-test (>= 0.6.3)
|
45
|
-
rails-dom-testing (~> 2.2)
|
46
|
-
rails-html-sanitizer (~> 1.6)
|
47
|
-
useragent (~> 0.16)
|
48
|
-
actiontext (7.2.2.1)
|
49
|
-
actionpack (= 7.2.2.1)
|
50
|
-
activerecord (= 7.2.2.1)
|
51
|
-
activestorage (= 7.2.2.1)
|
52
|
-
activesupport (= 7.2.2.1)
|
53
|
-
globalid (>= 0.6.0)
|
54
|
-
nokogiri (>= 1.8.5)
|
55
|
-
actionview (7.2.2.1)
|
56
|
-
activesupport (= 7.2.2.1)
|
57
|
-
builder (~> 3.1)
|
58
|
-
erubi (~> 1.11)
|
59
|
-
rails-dom-testing (~> 2.2)
|
60
|
-
rails-html-sanitizer (~> 1.6)
|
61
|
-
activejob (7.2.2.1)
|
62
|
-
activesupport (= 7.2.2.1)
|
63
|
-
globalid (>= 0.3.6)
|
64
|
-
activemodel (7.2.2.1)
|
65
|
-
activesupport (= 7.2.2.1)
|
66
|
-
activerecord (7.2.2.1)
|
67
|
-
activemodel (= 7.2.2.1)
|
68
|
-
activesupport (= 7.2.2.1)
|
69
|
-
timeout (>= 0.4.0)
|
70
|
-
activestorage (7.2.2.1)
|
71
|
-
actionpack (= 7.2.2.1)
|
72
|
-
activejob (= 7.2.2.1)
|
73
|
-
activerecord (= 7.2.2.1)
|
74
|
-
activesupport (= 7.2.2.1)
|
75
|
-
marcel (~> 1.0)
|
76
|
-
activesupport (7.2.2.1)
|
77
|
-
base64
|
78
|
-
benchmark (>= 0.3)
|
79
|
-
bigdecimal
|
80
|
-
concurrent-ruby (~> 1.0, >= 1.3.1)
|
81
|
-
connection_pool (>= 2.2.5)
|
82
|
-
drb
|
83
|
-
i18n (>= 1.6, < 2)
|
84
|
-
logger (>= 1.4.2)
|
85
|
-
minitest (>= 5.1)
|
86
|
-
securerandom (>= 0.3)
|
87
|
-
tzinfo (~> 2.0, >= 2.0.5)
|
88
|
-
addressable (2.8.7)
|
89
|
-
public_suffix (>= 2.0.2, < 7.0)
|
90
|
-
ast (2.4.2)
|
91
|
-
async (2.23.1)
|
92
|
-
console (~> 1.29)
|
93
|
-
fiber-annotation
|
94
|
-
io-event (~> 1.9)
|
95
|
-
metrics (~> 0.12)
|
96
|
-
traces (~> 0.15)
|
97
|
-
async-container (0.24.0)
|
98
|
-
async (~> 2.22)
|
99
|
-
async-container-supervisor (0.5.1)
|
100
|
-
async-container (~> 0.22)
|
101
|
-
async-service
|
102
|
-
io-endpoint
|
103
|
-
memory-leak (~> 0.5)
|
104
|
-
async-http (0.87.0)
|
105
|
-
async (>= 2.10.2)
|
106
|
-
async-pool (~> 0.9)
|
107
|
-
io-endpoint (~> 0.14)
|
108
|
-
io-stream (~> 0.6)
|
109
|
-
metrics (~> 0.12)
|
110
|
-
protocol-http (~> 0.49)
|
111
|
-
protocol-http1 (~> 0.30)
|
112
|
-
protocol-http2 (~> 0.22)
|
113
|
-
traces (~> 0.10)
|
114
|
-
async-http-cache (0.4.5)
|
115
|
-
async-http (~> 0.56)
|
116
|
-
async-pool (0.10.3)
|
117
|
-
async (>= 1.25)
|
118
|
-
async-service (0.13.0)
|
119
|
-
async
|
120
|
-
async-container (~> 0.16)
|
121
|
-
base64 (0.2.0)
|
122
|
-
benchmark (0.4.0)
|
123
|
-
bigdecimal (3.1.9)
|
124
|
-
bindex (0.8.1)
|
125
|
-
bootsnap (1.18.4)
|
126
|
-
msgpack (~> 1.2)
|
127
|
-
brakeman (7.0.0)
|
128
|
-
racc
|
129
|
-
builder (3.3.0)
|
130
|
-
capybara (3.40.0)
|
131
|
-
addressable
|
132
|
-
matrix
|
133
|
-
mini_mime (>= 0.1.3)
|
134
|
-
nokogiri (~> 1.11)
|
135
|
-
rack (>= 1.6.0)
|
136
|
-
rack-test (>= 0.6.3)
|
137
|
-
regexp_parser (>= 1.5, < 3.0)
|
138
|
-
xpath (~> 3.2)
|
139
|
-
concurrent-ruby (1.3.5)
|
140
|
-
connection_pool (2.5.0)
|
141
|
-
console (1.30.2)
|
142
|
-
fiber-annotation
|
143
|
-
fiber-local (~> 1.1)
|
144
|
-
json
|
145
|
-
crass (1.0.6)
|
146
|
-
date (3.4.1)
|
147
|
-
debug (1.10.0)
|
148
|
-
irb (~> 1.10)
|
149
|
-
reline (>= 0.3.8)
|
150
|
-
drb (2.2.1)
|
151
|
-
erubi (1.13.1)
|
152
|
-
falcon (0.51.1)
|
153
|
-
async
|
154
|
-
async-container (~> 0.20)
|
155
|
-
async-container-supervisor (~> 0.5.0)
|
156
|
-
async-http (~> 0.75)
|
157
|
-
async-http-cache (~> 0.4)
|
158
|
-
async-service (~> 0.10)
|
159
|
-
bundler
|
160
|
-
localhost (~> 1.1)
|
161
|
-
openssl (~> 3.0)
|
162
|
-
protocol-http (~> 0.31)
|
163
|
-
protocol-rack (~> 0.7)
|
164
|
-
samovar (~> 2.3)
|
165
|
-
fiber-annotation (0.2.0)
|
166
|
-
fiber-local (1.1.0)
|
167
|
-
fiber-storage
|
168
|
-
fiber-storage (1.0.0)
|
169
|
-
globalid (1.2.1)
|
170
|
-
activesupport (>= 6.1)
|
171
|
-
i18n (1.14.7)
|
172
|
-
concurrent-ruby (~> 1.0)
|
173
|
-
importmap-rails (2.1.0)
|
174
|
-
actionpack (>= 6.0.0)
|
175
|
-
activesupport (>= 6.0.0)
|
176
|
-
railties (>= 6.0.0)
|
177
|
-
io-console (0.8.0)
|
178
|
-
io-endpoint (0.15.2)
|
179
|
-
io-event (1.10.0)
|
180
|
-
io-stream (0.6.1)
|
181
|
-
iodine (0.7.58)
|
182
|
-
irb (1.15.1)
|
183
|
-
pp (>= 0.6.0)
|
184
|
-
rdoc (>= 4.0.0)
|
185
|
-
reline (>= 0.4.2)
|
186
|
-
jbuilder (2.13.0)
|
187
|
-
actionview (>= 5.0.0)
|
188
|
-
activesupport (>= 5.0.0)
|
189
|
-
json (2.10.2)
|
190
|
-
language_server-protocol (3.17.0.4)
|
191
|
-
lint_roller (1.1.0)
|
192
|
-
localhost (1.3.1)
|
193
|
-
logger (1.6.6)
|
194
|
-
loofah (2.24.0)
|
195
|
-
crass (~> 1.0.2)
|
196
|
-
nokogiri (>= 1.12.0)
|
197
|
-
mail (2.8.1)
|
198
|
-
mini_mime (>= 0.1.1)
|
199
|
-
net-imap
|
200
|
-
net-pop
|
201
|
-
net-smtp
|
202
|
-
mapping (1.1.1)
|
203
|
-
marcel (1.0.4)
|
204
|
-
matrix (0.4.2)
|
205
|
-
memory-leak (0.5.2)
|
206
|
-
metrics (0.12.2)
|
207
|
-
mini_mime (1.1.5)
|
208
|
-
minitest (5.25.5)
|
209
|
-
msgpack (1.8.0)
|
210
|
-
net-imap (0.5.6)
|
211
|
-
date
|
212
|
-
net-protocol
|
213
|
-
net-pop (0.1.2)
|
214
|
-
net-protocol
|
215
|
-
net-protocol (0.2.2)
|
216
|
-
timeout
|
217
|
-
net-smtp (0.5.1)
|
218
|
-
net-protocol
|
219
|
-
nio4r (2.7.4)
|
220
|
-
nokogiri (1.18.4-aarch64-linux-gnu)
|
221
|
-
racc (~> 1.4)
|
222
|
-
nokogiri (1.18.4-aarch64-linux-musl)
|
223
|
-
racc (~> 1.4)
|
224
|
-
nokogiri (1.18.4-arm-linux-gnu)
|
225
|
-
racc (~> 1.4)
|
226
|
-
nokogiri (1.18.4-arm-linux-musl)
|
227
|
-
racc (~> 1.4)
|
228
|
-
nokogiri (1.18.4-arm64-darwin)
|
229
|
-
racc (~> 1.4)
|
230
|
-
nokogiri (1.18.4-x86_64-darwin)
|
231
|
-
racc (~> 1.4)
|
232
|
-
nokogiri (1.18.4-x86_64-linux-gnu)
|
233
|
-
racc (~> 1.4)
|
234
|
-
nokogiri (1.18.4-x86_64-linux-musl)
|
235
|
-
racc (~> 1.4)
|
236
|
-
openssl (3.3.0)
|
237
|
-
parallel (1.26.3)
|
238
|
-
parser (3.3.7.1)
|
239
|
-
ast (~> 2.4.1)
|
240
|
-
racc
|
241
|
-
pg (1.5.9)
|
242
|
-
pp (0.6.2)
|
243
|
-
prettyprint
|
244
|
-
prettyprint (0.2.0)
|
245
|
-
protocol-hpack (1.5.1)
|
246
|
-
protocol-http (0.49.0)
|
247
|
-
protocol-http1 (0.30.0)
|
248
|
-
protocol-http (~> 0.22)
|
249
|
-
protocol-http2 (0.22.1)
|
250
|
-
protocol-hpack (~> 1.4)
|
251
|
-
protocol-http (~> 0.47)
|
252
|
-
protocol-rack (0.11.2)
|
253
|
-
protocol-http (~> 0.43)
|
254
|
-
rack (>= 1.0)
|
255
|
-
psych (5.2.3)
|
256
|
-
date
|
257
|
-
stringio
|
258
|
-
public_suffix (6.0.1)
|
259
|
-
puma (6.6.0)
|
260
|
-
nio4r (~> 2.0)
|
261
|
-
racc (1.8.1)
|
262
|
-
rack (3.1.12)
|
263
|
-
rack-session (2.1.0)
|
264
|
-
base64 (>= 0.1.0)
|
265
|
-
rack (>= 3.0.0)
|
266
|
-
rack-test (2.2.0)
|
267
|
-
rack (>= 1.3)
|
268
|
-
rackup (2.2.1)
|
269
|
-
rack (>= 3)
|
270
|
-
rails (7.2.2.1)
|
271
|
-
actioncable (= 7.2.2.1)
|
272
|
-
actionmailbox (= 7.2.2.1)
|
273
|
-
actionmailer (= 7.2.2.1)
|
274
|
-
actionpack (= 7.2.2.1)
|
275
|
-
actiontext (= 7.2.2.1)
|
276
|
-
actionview (= 7.2.2.1)
|
277
|
-
activejob (= 7.2.2.1)
|
278
|
-
activemodel (= 7.2.2.1)
|
279
|
-
activerecord (= 7.2.2.1)
|
280
|
-
activestorage (= 7.2.2.1)
|
281
|
-
activesupport (= 7.2.2.1)
|
282
|
-
bundler (>= 1.15.0)
|
283
|
-
railties (= 7.2.2.1)
|
284
|
-
rails-dom-testing (2.2.0)
|
285
|
-
activesupport (>= 5.0.0)
|
286
|
-
minitest
|
287
|
-
nokogiri (>= 1.6)
|
288
|
-
rails-html-sanitizer (1.6.2)
|
289
|
-
loofah (~> 2.21)
|
290
|
-
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
291
|
-
railties (7.2.2.1)
|
292
|
-
actionpack (= 7.2.2.1)
|
293
|
-
activesupport (= 7.2.2.1)
|
294
|
-
irb (~> 1.13)
|
295
|
-
rackup (>= 1.0.0)
|
296
|
-
rake (>= 12.2)
|
297
|
-
thor (~> 1.0, >= 1.2.2)
|
298
|
-
zeitwerk (~> 2.6)
|
299
|
-
rainbow (3.1.1)
|
300
|
-
rake (13.2.1)
|
301
|
-
rake-compiler-dock (1.9.1)
|
302
|
-
rb_sys (0.9.111)
|
303
|
-
rake-compiler-dock (= 1.9.1)
|
304
|
-
rdoc (6.12.0)
|
305
|
-
psych (>= 4.0.0)
|
306
|
-
regexp_parser (2.10.0)
|
307
|
-
reline (0.6.0)
|
308
|
-
io-console (~> 0.5)
|
309
|
-
rexml (3.4.1)
|
310
|
-
rubocop (1.74.0)
|
311
|
-
json (~> 2.3)
|
312
|
-
language_server-protocol (~> 3.17.0.2)
|
313
|
-
lint_roller (~> 1.1.0)
|
314
|
-
parallel (~> 1.10)
|
315
|
-
parser (>= 3.3.0.2)
|
316
|
-
rainbow (>= 2.2.2, < 4.0)
|
317
|
-
regexp_parser (>= 2.9.3, < 3.0)
|
318
|
-
rubocop-ast (>= 1.38.0, < 2.0)
|
319
|
-
ruby-progressbar (~> 1.7)
|
320
|
-
unicode-display_width (>= 2.4.0, < 4.0)
|
321
|
-
rubocop-ast (1.39.0)
|
322
|
-
parser (>= 3.3.1.0)
|
323
|
-
rubocop-performance (1.24.0)
|
324
|
-
lint_roller (~> 1.1)
|
325
|
-
rubocop (>= 1.72.1, < 2.0)
|
326
|
-
rubocop-ast (>= 1.38.0, < 2.0)
|
327
|
-
rubocop-rails (2.30.3)
|
328
|
-
activesupport (>= 4.2.0)
|
329
|
-
lint_roller (~> 1.1)
|
330
|
-
rack (>= 1.1)
|
331
|
-
rubocop (>= 1.72.1, < 2.0)
|
332
|
-
rubocop-ast (>= 1.38.0, < 2.0)
|
333
|
-
rubocop-rails-omakase (1.1.0)
|
334
|
-
rubocop (>= 1.72)
|
335
|
-
rubocop-performance (>= 1.24)
|
336
|
-
rubocop-rails (>= 2.30)
|
337
|
-
ruby-progressbar (1.13.0)
|
338
|
-
rubyzip (2.4.1)
|
339
|
-
samovar (2.3.0)
|
340
|
-
console (~> 1.0)
|
341
|
-
mapping (~> 1.0)
|
342
|
-
securerandom (0.4.1)
|
343
|
-
selenium-webdriver (4.29.1)
|
344
|
-
base64 (~> 0.2)
|
345
|
-
logger (~> 1.4)
|
346
|
-
rexml (~> 3.2, >= 3.2.5)
|
347
|
-
rubyzip (>= 1.2.2, < 3.0)
|
348
|
-
websocket (~> 1.0)
|
349
|
-
sprockets (4.2.1)
|
350
|
-
concurrent-ruby (~> 1.0)
|
351
|
-
rack (>= 2.2.4, < 4)
|
352
|
-
sprockets-rails (3.5.2)
|
353
|
-
actionpack (>= 6.1)
|
354
|
-
activesupport (>= 6.1)
|
355
|
-
sprockets (>= 3.0.0)
|
356
|
-
sqlite3 (2.6.0-aarch64-linux-gnu)
|
357
|
-
sqlite3 (2.6.0-aarch64-linux-musl)
|
358
|
-
sqlite3 (2.6.0-arm-linux-gnu)
|
359
|
-
sqlite3 (2.6.0-arm-linux-musl)
|
360
|
-
sqlite3 (2.6.0-arm64-darwin)
|
361
|
-
sqlite3 (2.6.0-x86_64-darwin)
|
362
|
-
sqlite3 (2.6.0-x86_64-linux-gnu)
|
363
|
-
sqlite3 (2.6.0-x86_64-linux-musl)
|
364
|
-
stimulus-rails (1.3.4)
|
365
|
-
railties (>= 6.0.0)
|
366
|
-
stringio (3.1.5)
|
367
|
-
thor (1.3.2)
|
368
|
-
timeout (0.4.3)
|
369
|
-
traces (0.15.2)
|
370
|
-
turbo-rails (2.0.13)
|
371
|
-
actionpack (>= 7.1.0)
|
372
|
-
railties (>= 7.1.0)
|
373
|
-
tzinfo (2.0.6)
|
374
|
-
concurrent-ruby (~> 1.0)
|
375
|
-
unicode-display_width (3.1.4)
|
376
|
-
unicode-emoji (~> 4.0, >= 4.0.4)
|
377
|
-
unicode-emoji (4.0.4)
|
378
|
-
useragent (0.16.11)
|
379
|
-
web-console (4.2.1)
|
380
|
-
actionview (>= 6.0.0)
|
381
|
-
activemodel (>= 6.0.0)
|
382
|
-
bindex (>= 0.4.0)
|
383
|
-
railties (>= 6.0.0)
|
384
|
-
websocket (1.2.11)
|
385
|
-
websocket-driver (0.7.7)
|
386
|
-
base64
|
387
|
-
websocket-extensions (>= 0.1.0)
|
388
|
-
websocket-extensions (0.1.5)
|
389
|
-
xpath (3.2.0)
|
390
|
-
nokogiri (~> 1.8)
|
391
|
-
zeitwerk (2.7.2)
|
392
|
-
|
393
|
-
PLATFORMS
|
394
|
-
aarch64-linux
|
395
|
-
aarch64-linux-gnu
|
396
|
-
aarch64-linux-musl
|
397
|
-
arm-linux-gnu
|
398
|
-
arm-linux-musl
|
399
|
-
arm64-darwin
|
400
|
-
x86_64-darwin
|
401
|
-
x86_64-linux
|
402
|
-
x86_64-linux-gnu
|
403
|
-
x86_64-linux-musl
|
404
|
-
|
405
|
-
DEPENDENCIES
|
406
|
-
bootsnap
|
407
|
-
brakeman
|
408
|
-
capybara
|
409
|
-
debug
|
410
|
-
falcon
|
411
|
-
importmap-rails
|
412
|
-
iodine
|
413
|
-
itsi-scheduler!
|
414
|
-
itsi-server!
|
415
|
-
jbuilder
|
416
|
-
pg
|
417
|
-
puma (>= 5.0)
|
418
|
-
rails (~> 7.2.2)
|
419
|
-
rubocop-rails-omakase
|
420
|
-
selenium-webdriver
|
421
|
-
sprockets-rails
|
422
|
-
sqlite3 (>= 1.4)
|
423
|
-
stimulus-rails
|
424
|
-
turbo-rails
|
425
|
-
tzinfo-data
|
426
|
-
web-console
|
427
|
-
|
428
|
-
BUNDLED WITH
|
429
|
-
2.6.3
|
@@ -1,24 +0,0 @@
|
|
1
|
-
# README
|
2
|
-
|
3
|
-
This README would normally document whatever steps are necessary to get the
|
4
|
-
application up and running.
|
5
|
-
|
6
|
-
Things you may want to cover:
|
7
|
-
|
8
|
-
* Ruby version
|
9
|
-
|
10
|
-
* System dependencies
|
11
|
-
|
12
|
-
* Configuration
|
13
|
-
|
14
|
-
* Database creation
|
15
|
-
|
16
|
-
* Database initialization
|
17
|
-
|
18
|
-
* How to run the test suite
|
19
|
-
|
20
|
-
* Services (job queues, cache servers, search engines, etc.)
|
21
|
-
|
22
|
-
* Deployment instructions
|
23
|
-
|
24
|
-
* ...
|
File without changes
|
@@ -1,15 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
-
* listed below.
|
4
|
-
*
|
5
|
-
* Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
|
6
|
-
* vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
-
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
-
* compiled file so the styles you add here take precedence over styles defined in any other CSS
|
10
|
-
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
-
* It is generally better to create a new file per style scope.
|
12
|
-
*
|
13
|
-
*= require_tree .
|
14
|
-
*= require_self
|
15
|
-
*/
|
File without changes
|
@@ -1,66 +0,0 @@
|
|
1
|
-
require "net/http"
|
2
|
-
require 'debug'
|
3
|
-
|
4
|
-
class HomeController < ApplicationController
|
5
|
-
def index
|
6
|
-
render json: { message: "Hello, World!" }
|
7
|
-
end
|
8
|
-
|
9
|
-
def do_send_file
|
10
|
-
file_path = Rails.root.join('app', 'controllers', 'home_controller.rb')
|
11
|
-
if File.exist?(file_path)
|
12
|
-
send_file file_path, type: 'text/plain', disposition: 'attachment'
|
13
|
-
else
|
14
|
-
render json: { error: 'File not found' }, status: :not_found
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
def do_send_data
|
19
|
-
data = "This is some sample data to send."
|
20
|
-
send_data data, filename: 'sample.txt', type: 'text/plain', disposition: 'attachment'
|
21
|
-
end
|
22
|
-
|
23
|
-
def full_hijack
|
24
|
-
io = request.env['rack.hijack'].call
|
25
|
-
io.write("HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\n\r\n")
|
26
|
-
10.times do |i|
|
27
|
-
sleep 0.25
|
28
|
-
io.write("Hello World\r\n")
|
29
|
-
end
|
30
|
-
io.close
|
31
|
-
end
|
32
|
-
|
33
|
-
def chunked_encoding
|
34
|
-
io = request.env['rack.hijack'].call
|
35
|
-
io.write("HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\nTransfer-Encoding: chunked\r\n\r\n")
|
36
|
-
10.times do |i|
|
37
|
-
chunk = "Hello World\r\n" * Random.rand(3..10)
|
38
|
-
io.write("#{chunk.length.to_s(16)}\r\n#{chunk}\r\n")
|
39
|
-
sleep 0.5
|
40
|
-
end
|
41
|
-
io.write("0\r\n\r\n")
|
42
|
-
io.close
|
43
|
-
end
|
44
|
-
|
45
|
-
def io_party
|
46
|
-
post = Post.find_or_create_by(name: "Hello World", body: "I made a change. This is a test post")
|
47
|
-
ActiveRecord::Base.connection.execute("SELECT * FROM posts;")
|
48
|
-
sleep 0.0001
|
49
|
-
ActiveRecord::Base.connection.execute("SELECT pg_sleep(0.0001);")
|
50
|
-
|
51
|
-
queue = Queue.new
|
52
|
-
Thread.new do
|
53
|
-
sleep 0.0001
|
54
|
-
queue.push("done")
|
55
|
-
end
|
56
|
-
queue.pop
|
57
|
-
|
58
|
-
Thread.new do
|
59
|
-
sleep 0.0001
|
60
|
-
end.join
|
61
|
-
|
62
|
-
result = Net::HTTP.get(URI("https://www.cloudflare.com/cdn-cgi/trace"))
|
63
|
-
post.update(name: "I made a change. Hello World", body: "Wow... I think it might be working")
|
64
|
-
render json: post.to_json
|
65
|
-
end
|
66
|
-
end
|
@@ -1,40 +0,0 @@
|
|
1
|
-
require "net/http"
|
2
|
-
|
3
|
-
class LiveController < ApplicationController
|
4
|
-
include ActionController::Live
|
5
|
-
|
6
|
-
def stream
|
7
|
-
response.headers["Content-Type"] = "text/event-stream"
|
8
|
-
response.headers["Last-Modified"] = Time.now.httpdate
|
9
|
-
i = 0
|
10
|
-
loop {
|
11
|
-
i += 1
|
12
|
-
response.stream.write "hello world #{i}\r\n"
|
13
|
-
sleep 0.00005
|
14
|
-
}
|
15
|
-
|
16
|
-
rescue ActionController::Live::ClientDisconnected => e
|
17
|
-
puts "Client disconnected"
|
18
|
-
ensure
|
19
|
-
puts "Closing stream"
|
20
|
-
response.stream.close
|
21
|
-
end
|
22
|
-
|
23
|
-
def sse
|
24
|
-
response.headers["Content-Type"] = "text/event-stream"
|
25
|
-
response.headers["Last-Modified"] = Time.now.httpdate
|
26
|
-
sse = SSE.new(response.stream, retry: 300, event: "event-name")
|
27
|
-
loop do
|
28
|
-
sse.write({ name: "John" })
|
29
|
-
sse.write({ name: "John" }, id: 10)
|
30
|
-
sse.write({ name: "John" }, id: 10, event: "other-event")
|
31
|
-
sse.write({ name: "John" }, id: 10, event: "other-event", retry: 500)
|
32
|
-
sleep 0.00005
|
33
|
-
end
|
34
|
-
rescue ActionController::Live::ClientDisconnected => e
|
35
|
-
puts "Client disconnected"
|
36
|
-
ensure
|
37
|
-
puts "Closing stream"
|
38
|
-
sse.close
|
39
|
-
end
|
40
|
-
end
|