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
data/foo/Itsi.rb
DELETED
@@ -1,122 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
# This is the default Itsi configuration file, installed when you run `itsi init`
|
4
|
-
# It contains a sane starting point for configuring your Itsi server.
|
5
|
-
# You can use this file in both development and production environments.
|
6
|
-
# Most of the options in this file can be overridden by command line options.
|
7
|
-
# Check out itsi -h to learn more about the command line options available to you.
|
8
|
-
|
9
|
-
env = ENV.fetch("APP_ENV") { ENV.fetch("RACK_ENV", "development") }
|
10
|
-
|
11
|
-
# Number of worker processes to spawn
|
12
|
-
# If more than 1, Itsi will be booted in Cluster mode
|
13
|
-
workers ENV.fetch("ITSI_WORKERS") {
|
14
|
-
require "etc"
|
15
|
-
env == "development" ? 1 : nil
|
16
|
-
}
|
17
|
-
|
18
|
-
# Number of threads to spawn per worker process
|
19
|
-
# For pure CPU bound applicationss, you'll get the best results keeping this number low
|
20
|
-
# Setting a value of 1 is great for superficial benchmarks, but in reality
|
21
|
-
# it's better to set this a bit higher to allow expensive requests to get overtaken and minimize head-of-line blocking
|
22
|
-
threads ENV.fetch("ITSI_THREADS", 3)
|
23
|
-
|
24
|
-
# If your application is IO bound (e.g. performing a lot of proxied HTTP requests, or heavy queries etc)
|
25
|
-
# you can see *substantial* benefits from enabling this option.
|
26
|
-
# To set this option, pass a string, not a class (as we will not have loaded the class yet)
|
27
|
-
# E.g.
|
28
|
-
# `fiber_scheduler "Itsi::Scheduler"` - The default fast and light-weight scheduler that comes with Itsi
|
29
|
-
# `fiber_scheduler "Async::Scheduler"` - Bring your own scheduler!
|
30
|
-
fiber_scheduler nil
|
31
|
-
|
32
|
-
# By default Itsi will run the Rack app from config.ru.
|
33
|
-
# You can provide an alternative Rack app file name here
|
34
|
-
# Or you can inline the app directly inside Itsi.rb.
|
35
|
-
# Only one of `run` and `rackup_file` can be used.
|
36
|
-
# E.g.
|
37
|
-
# require 'rack'
|
38
|
-
# run(Rack::Builder.app do
|
39
|
-
# use Rack::CommonLogger
|
40
|
-
# run ->(env) { [200, { 'content-type' => 'text/plain' }, ['OK']] }
|
41
|
-
# end)
|
42
|
-
# rackup_file "config.ru"
|
43
|
-
|
44
|
-
endpoint do |req|
|
45
|
-
req.respond("Im Itsi")
|
46
|
-
end
|
47
|
-
# If you bind to https, without specifying a certificate, Itsi will use a self-signed certificate.
|
48
|
-
# The self-signed certificate will use a CA generated for your host and stored inside `ITSI_LOCAL_CA_DIR` (Defaults to ~/.itsi)
|
49
|
-
# bind "https://localhost:3000"
|
50
|
-
# bind "https://localhost:3000?domains=dev.itsi.fyi"
|
51
|
-
#
|
52
|
-
# If you want to use let's encrypt to generate you a real certificate you and pass cert=acme and an acme_email address to generate one.
|
53
|
-
# bind "https://itsi.fyi?cert=acme&acme_email=admin@itsi.fyi"
|
54
|
-
# You can generate certificates for multiple domains at once, by passing a comma-separated list of domains
|
55
|
-
# bind "https://0.0.0.0?domains=foo.itsi.fyi,bar.itsi.fyi&cert=acme&acme_email=admin@itsi.fyi"
|
56
|
-
#
|
57
|
-
# If you already have a certificate you can specify it using the cert and key parameters
|
58
|
-
# bind "https://itsi.fyi?cert=/path/to/cert.pem&key=/path/to/key.pem"
|
59
|
-
#
|
60
|
-
# You can also bind to a unix socket or a tls unix socket. E.g.
|
61
|
-
# bind "unix:///tmp/itsi.sock"
|
62
|
-
# bind "tls:///tmp/itsi.secure.sock"
|
63
|
-
|
64
|
-
if env == "development"
|
65
|
-
bind "http://localhost:3000"
|
66
|
-
else
|
67
|
-
bind "https://0.0.0.0?domains=#{ENV["PRODUCTION_DOMAINS"]}&cert=acme&acme_email=admin@itsi.fyi"
|
68
|
-
end
|
69
|
-
|
70
|
-
# If you want to preload the application, set preload to true
|
71
|
-
# to load the entire rack-app defined in rack_file_name before forking.
|
72
|
-
# Alternatively, you can preload just a specific set of gems in a group in your gemfile,
|
73
|
-
# by providing the group name here.
|
74
|
-
# E.g.
|
75
|
-
#
|
76
|
-
# preload :preload # Load gems inside the preload group
|
77
|
-
# preload false # Don't preload.
|
78
|
-
#
|
79
|
-
# If you want to be able to perform zero-downtime deploys using a single itsi process,
|
80
|
-
# you should disable preloads, so that the application is loaded fresh each time a new worker boots
|
81
|
-
preload true
|
82
|
-
|
83
|
-
# Set the maximum memory limit for each worker process in bytes
|
84
|
-
# When this limit is reached, the worker will be gracefully restarted.
|
85
|
-
# Only one worker is restarted at a time to ensure we don't take down
|
86
|
-
# all of them at once, if they reach the threshold simultaneously.
|
87
|
-
worker_memory_limit 1024 * 1024 * 1024
|
88
|
-
|
89
|
-
# You can provide an optional block of code to run, when a worker hits its memory threshold (Use this to send yourself an alert,
|
90
|
-
# write metrics to disk etc. etc.)
|
91
|
-
after_memory_threshold_reached do |pid|
|
92
|
-
puts "Worker #{pid} has reached its memory threshold and will restart"
|
93
|
-
end
|
94
|
-
|
95
|
-
# Do clean up of any non-threadsafe resources before forking a new worker here.
|
96
|
-
before_fork {}
|
97
|
-
|
98
|
-
# Reinitialize any non-threadsafe resources after forking a new worker here.
|
99
|
-
after_fork {}
|
100
|
-
|
101
|
-
# Shutdown timeout
|
102
|
-
# Number of seconds to wait for workers to gracefully shutdown before killing them.
|
103
|
-
shutdown_timeout 5
|
104
|
-
|
105
|
-
# Set this to false for application environments that require rack.input to be a rewindable body
|
106
|
-
# (like Rails). For rack applications that can stream inputs, you can set this to true for a more memory-efficient approach.
|
107
|
-
stream_body false
|
108
|
-
|
109
|
-
# OOB GC responses threshold
|
110
|
-
# Specifies how frequently OOB gc should be triggered during periods where there is a gap in queued requests.
|
111
|
-
# Setting this too low can substantially worsen performance
|
112
|
-
oob_gc_responses_threshold 512
|
113
|
-
|
114
|
-
# Log level
|
115
|
-
# Set this to one of the following values: debug, info, warn, error, fatal
|
116
|
-
# Can also be set using the ITSI_LOG environment variable
|
117
|
-
log_level :info
|
118
|
-
|
119
|
-
# Log Format
|
120
|
-
# Set this to be either :ansi or :json. If you leave it blank Itsi will try
|
121
|
-
# and auto-detect the format based on the TTY environment.
|
122
|
-
log_format :auto
|
data/gems/_index.md
DELETED
data/gems/scheduler/CHANGELOG.md
DELETED
@@ -1,139 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Code of Conduct
|
3
|
-
type: docs
|
4
|
-
next: docs/
|
5
|
-
prev: docs/folder/
|
6
|
-
---
|
7
|
-
|
8
|
-
# Contributor Covenant Code of Conduct
|
9
|
-
|
10
|
-
## Our Pledge
|
11
|
-
|
12
|
-
We as members, contributors, and leaders pledge to make participation in our
|
13
|
-
community a harassment-free experience for everyone, regardless of age, body
|
14
|
-
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
15
|
-
identity and expression, level of experience, education, socio-economic status,
|
16
|
-
nationality, personal appearance, race, caste, color, religion, or sexual
|
17
|
-
identity and orientation.
|
18
|
-
|
19
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
20
|
-
diverse, inclusive, and healthy community.
|
21
|
-
|
22
|
-
## Our Standards
|
23
|
-
|
24
|
-
Examples of behavior that contributes to a positive environment for our
|
25
|
-
community include:
|
26
|
-
|
27
|
-
* Demonstrating empathy and kindness toward other people
|
28
|
-
* Being respectful of differing opinions, viewpoints, and experiences
|
29
|
-
* Giving and gracefully accepting constructive feedback
|
30
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
31
|
-
and learning from the experience
|
32
|
-
* Focusing on what is best not just for us as individuals, but for the overall
|
33
|
-
community
|
34
|
-
|
35
|
-
Examples of unacceptable behavior include:
|
36
|
-
|
37
|
-
* The use of sexualized language or imagery, and sexual attention or advances of
|
38
|
-
any kind
|
39
|
-
* Trolling, insulting or derogatory comments, and personal or political attacks
|
40
|
-
* Public or private harassment
|
41
|
-
* Publishing others' private information, such as a physical or email address,
|
42
|
-
without their explicit permission
|
43
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
44
|
-
professional setting
|
45
|
-
|
46
|
-
## Enforcement Responsibilities
|
47
|
-
|
48
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
49
|
-
acceptable behavior and will take appropriate and fair corrective action in
|
50
|
-
response to any behavior that they deem inappropriate, threatening, offensive,
|
51
|
-
or harmful.
|
52
|
-
|
53
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
54
|
-
comments, commits, code, wiki edits, issues, and other contributions that are
|
55
|
-
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
56
|
-
decisions when appropriate.
|
57
|
-
|
58
|
-
## Scope
|
59
|
-
|
60
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
61
|
-
an individual is officially representing the community in public spaces.
|
62
|
-
Examples of representing our community include using an official email address,
|
63
|
-
posting via an official social media account, or acting as an appointed
|
64
|
-
representative at an online or offline event.
|
65
|
-
|
66
|
-
## Enforcement
|
67
|
-
|
68
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
69
|
-
reported to the community leaders responsible for enforcement at
|
70
|
-
[INSERT CONTACT METHOD].
|
71
|
-
All complaints will be reviewed and investigated promptly and fairly.
|
72
|
-
|
73
|
-
All community leaders are obligated to respect the privacy and security of the
|
74
|
-
reporter of any incident.
|
75
|
-
|
76
|
-
## Enforcement Guidelines
|
77
|
-
|
78
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
79
|
-
the consequences for any action they deem in violation of this Code of Conduct:
|
80
|
-
|
81
|
-
### 1. Correction
|
82
|
-
|
83
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
84
|
-
unprofessional or unwelcome in the community.
|
85
|
-
|
86
|
-
**Consequence**: A private, written warning from community leaders, providing
|
87
|
-
clarity around the nature of the violation and an explanation of why the
|
88
|
-
behavior was inappropriate. A public apology may be requested.
|
89
|
-
|
90
|
-
### 2. Warning
|
91
|
-
|
92
|
-
**Community Impact**: A violation through a single incident or series of
|
93
|
-
actions.
|
94
|
-
|
95
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
96
|
-
interaction with the people involved, including unsolicited interaction with
|
97
|
-
those enforcing the Code of Conduct, for a specified period of time. This
|
98
|
-
includes avoiding interactions in community spaces as well as external channels
|
99
|
-
like social media. Violating these terms may lead to a temporary or permanent
|
100
|
-
ban.
|
101
|
-
|
102
|
-
### 3. Temporary Ban
|
103
|
-
|
104
|
-
**Community Impact**: A serious violation of community standards, including
|
105
|
-
sustained inappropriate behavior.
|
106
|
-
|
107
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
108
|
-
communication with the community for a specified period of time. No public or
|
109
|
-
private interaction with the people involved, including unsolicited interaction
|
110
|
-
with those enforcing the Code of Conduct, is allowed during this period.
|
111
|
-
Violating these terms may lead to a permanent ban.
|
112
|
-
|
113
|
-
### 4. Permanent Ban
|
114
|
-
|
115
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
116
|
-
standards, including sustained inappropriate behavior, harassment of an
|
117
|
-
individual, or aggression toward or disparagement of classes of individuals.
|
118
|
-
|
119
|
-
**Consequence**: A permanent ban from any sort of public interaction within the
|
120
|
-
community.
|
121
|
-
|
122
|
-
## Attribution
|
123
|
-
|
124
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
125
|
-
version 2.1, available at
|
126
|
-
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
127
|
-
|
128
|
-
Community Impact Guidelines were inspired by
|
129
|
-
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
130
|
-
|
131
|
-
For answers to common questions about this code of conduct, see the FAQ at
|
132
|
-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
133
|
-
[https://www.contributor-covenant.org/translations][translations].
|
134
|
-
|
135
|
-
[homepage]: https://www.contributor-covenant.org
|
136
|
-
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
137
|
-
[Mozilla CoC]: https://github.com/mozilla/diversity
|
138
|
-
[FAQ]: https://www.contributor-covenant.org/faq
|
139
|
-
[translations]: https://www.contributor-covenant.org/translations
|
data/gems/scheduler/LICENSE.txt
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2025 Wouter Coppieters
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
data/gems/scheduler/_index.md
DELETED
data/gems/server/CHANGELOG.md
DELETED
@@ -1,139 +0,0 @@
|
|
1
|
-
---
|
2
|
-
title: Code of Conduct
|
3
|
-
type: docs
|
4
|
-
next: docs/
|
5
|
-
prev: docs/folder/
|
6
|
-
---
|
7
|
-
|
8
|
-
# Contributor Covenant Code of Conduct
|
9
|
-
|
10
|
-
## Our Pledge
|
11
|
-
|
12
|
-
We as members, contributors, and leaders pledge to make participation in our
|
13
|
-
community a harassment-free experience for everyone, regardless of age, body
|
14
|
-
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
15
|
-
identity and expression, level of experience, education, socio-economic status,
|
16
|
-
nationality, personal appearance, race, caste, color, religion, or sexual
|
17
|
-
identity and orientation.
|
18
|
-
|
19
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
20
|
-
diverse, inclusive, and healthy community.
|
21
|
-
|
22
|
-
## Our Standards
|
23
|
-
|
24
|
-
Examples of behavior that contributes to a positive environment for our
|
25
|
-
community include:
|
26
|
-
|
27
|
-
* Demonstrating empathy and kindness toward other people
|
28
|
-
* Being respectful of differing opinions, viewpoints, and experiences
|
29
|
-
* Giving and gracefully accepting constructive feedback
|
30
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
31
|
-
and learning from the experience
|
32
|
-
* Focusing on what is best not just for us as individuals, but for the overall
|
33
|
-
community
|
34
|
-
|
35
|
-
Examples of unacceptable behavior include:
|
36
|
-
|
37
|
-
* The use of sexualized language or imagery, and sexual attention or advances of
|
38
|
-
any kind
|
39
|
-
* Trolling, insulting or derogatory comments, and personal or political attacks
|
40
|
-
* Public or private harassment
|
41
|
-
* Publishing others' private information, such as a physical or email address,
|
42
|
-
without their explicit permission
|
43
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
44
|
-
professional setting
|
45
|
-
|
46
|
-
## Enforcement Responsibilities
|
47
|
-
|
48
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
49
|
-
acceptable behavior and will take appropriate and fair corrective action in
|
50
|
-
response to any behavior that they deem inappropriate, threatening, offensive,
|
51
|
-
or harmful.
|
52
|
-
|
53
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
54
|
-
comments, commits, code, wiki edits, issues, and other contributions that are
|
55
|
-
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
56
|
-
decisions when appropriate.
|
57
|
-
|
58
|
-
## Scope
|
59
|
-
|
60
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
61
|
-
an individual is officially representing the community in public spaces.
|
62
|
-
Examples of representing our community include using an official email address,
|
63
|
-
posting via an official social media account, or acting as an appointed
|
64
|
-
representative at an online or offline event.
|
65
|
-
|
66
|
-
## Enforcement
|
67
|
-
|
68
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
69
|
-
reported to the community leaders responsible for enforcement at
|
70
|
-
[INSERT CONTACT METHOD].
|
71
|
-
All complaints will be reviewed and investigated promptly and fairly.
|
72
|
-
|
73
|
-
All community leaders are obligated to respect the privacy and security of the
|
74
|
-
reporter of any incident.
|
75
|
-
|
76
|
-
## Enforcement Guidelines
|
77
|
-
|
78
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
79
|
-
the consequences for any action they deem in violation of this Code of Conduct:
|
80
|
-
|
81
|
-
### 1. Correction
|
82
|
-
|
83
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
84
|
-
unprofessional or unwelcome in the community.
|
85
|
-
|
86
|
-
**Consequence**: A private, written warning from community leaders, providing
|
87
|
-
clarity around the nature of the violation and an explanation of why the
|
88
|
-
behavior was inappropriate. A public apology may be requested.
|
89
|
-
|
90
|
-
### 2. Warning
|
91
|
-
|
92
|
-
**Community Impact**: A violation through a single incident or series of
|
93
|
-
actions.
|
94
|
-
|
95
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
96
|
-
interaction with the people involved, including unsolicited interaction with
|
97
|
-
those enforcing the Code of Conduct, for a specified period of time. This
|
98
|
-
includes avoiding interactions in community spaces as well as external channels
|
99
|
-
like social media. Violating these terms may lead to a temporary or permanent
|
100
|
-
ban.
|
101
|
-
|
102
|
-
### 3. Temporary Ban
|
103
|
-
|
104
|
-
**Community Impact**: A serious violation of community standards, including
|
105
|
-
sustained inappropriate behavior.
|
106
|
-
|
107
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
108
|
-
communication with the community for a specified period of time. No public or
|
109
|
-
private interaction with the people involved, including unsolicited interaction
|
110
|
-
with those enforcing the Code of Conduct, is allowed during this period.
|
111
|
-
Violating these terms may lead to a permanent ban.
|
112
|
-
|
113
|
-
### 4. Permanent Ban
|
114
|
-
|
115
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
116
|
-
standards, including sustained inappropriate behavior, harassment of an
|
117
|
-
individual, or aggression toward or disparagement of classes of individuals.
|
118
|
-
|
119
|
-
**Consequence**: A permanent ban from any sort of public interaction within the
|
120
|
-
community.
|
121
|
-
|
122
|
-
## Attribution
|
123
|
-
|
124
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
125
|
-
version 2.1, available at
|
126
|
-
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
127
|
-
|
128
|
-
Community Impact Guidelines were inspired by
|
129
|
-
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
130
|
-
|
131
|
-
For answers to common questions about this code of conduct, see the FAQ at
|
132
|
-
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
133
|
-
[https://www.contributor-covenant.org/translations][translations].
|
134
|
-
|
135
|
-
[homepage]: https://www.contributor-covenant.org
|
136
|
-
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
137
|
-
[Mozilla CoC]: https://github.com/mozilla/diversity
|
138
|
-
[FAQ]: https://www.contributor-covenant.org/faq
|
139
|
-
[translations]: https://www.contributor-covenant.org/translations
|
data/gems/server/LICENSE.txt
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2025 Wouter Coppieters
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
THE SOFTWARE.
|
data/gems/server/_index.md
DELETED