ultra-lite-hub 0.0.1
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 +7 -0
- data/roda-3.105.0/MIT-LICENSE +21 -0
- data/roda-3.105.0/lib/roda/cache.rb +42 -0
- data/roda-3.105.0/lib/roda/plugins/Integer_matcher_max.rb +55 -0
- data/roda-3.105.0/lib/roda/plugins/_after_hook.rb +11 -0
- data/roda-3.105.0/lib/roda/plugins/_base64.rb +34 -0
- data/roda-3.105.0/lib/roda/plugins/_before_hook.rb +41 -0
- data/roda-3.105.0/lib/roda/plugins/_optimized_matching.rb +227 -0
- data/roda-3.105.0/lib/roda/plugins/_symbol_class_matchers.rb +108 -0
- data/roda-3.105.0/lib/roda/plugins/_symbol_regexp_matchers.rb +24 -0
- data/roda-3.105.0/lib/roda/plugins/additional_render_engines.rb +61 -0
- data/roda-3.105.0/lib/roda/plugins/additional_view_directories.rb +66 -0
- data/roda-3.105.0/lib/roda/plugins/all_verbs.rb +50 -0
- data/roda-3.105.0/lib/roda/plugins/assets.rb +902 -0
- data/roda-3.105.0/lib/roda/plugins/assets_preloading.rb +89 -0
- data/roda-3.105.0/lib/roda/plugins/assume_ssl.rb +28 -0
- data/roda-3.105.0/lib/roda/plugins/autoload_hash_branches.rb +79 -0
- data/roda-3.105.0/lib/roda/plugins/autoload_named_routes.rb +65 -0
- data/roda-3.105.0/lib/roda/plugins/backtracking_array.rb +88 -0
- data/roda-3.105.0/lib/roda/plugins/bearer_token.rb +28 -0
- data/roda-3.105.0/lib/roda/plugins/branch_locals.rb +74 -0
- data/roda-3.105.0/lib/roda/plugins/break.rb +43 -0
- data/roda-3.105.0/lib/roda/plugins/caching.rb +206 -0
- data/roda-3.105.0/lib/roda/plugins/capture_erb.rb +94 -0
- data/roda-3.105.0/lib/roda/plugins/chunked.rb +331 -0
- data/roda-3.105.0/lib/roda/plugins/class_level_routing.rb +111 -0
- data/roda-3.105.0/lib/roda/plugins/class_matchers.rb +155 -0
- data/roda-3.105.0/lib/roda/plugins/common_logger.rb +80 -0
- data/roda-3.105.0/lib/roda/plugins/conditional_sessions.rb +67 -0
- data/roda-3.105.0/lib/roda/plugins/content_for.rb +103 -0
- data/roda-3.105.0/lib/roda/plugins/content_security_policy.rb +329 -0
- data/roda-3.105.0/lib/roda/plugins/cookie_flags.rb +157 -0
- data/roda-3.105.0/lib/roda/plugins/cookies.rb +51 -0
- data/roda-3.105.0/lib/roda/plugins/csrf.rb +81 -0
- data/roda-3.105.0/lib/roda/plugins/custom_block_results.rb +85 -0
- data/roda-3.105.0/lib/roda/plugins/custom_matchers.rb +89 -0
- data/roda-3.105.0/lib/roda/plugins/default_headers.rb +64 -0
- data/roda-3.105.0/lib/roda/plugins/default_status.rb +35 -0
- data/roda-3.105.0/lib/roda/plugins/delay_build.rb +18 -0
- data/roda-3.105.0/lib/roda/plugins/delegate.rb +77 -0
- data/roda-3.105.0/lib/roda/plugins/delete_empty_headers.rb +36 -0
- data/roda-3.105.0/lib/roda/plugins/direct_call.rb +38 -0
- data/roda-3.105.0/lib/roda/plugins/disallow_file_uploads.rb +38 -0
- data/roda-3.105.0/lib/roda/plugins/drop_body.rb +43 -0
- data/roda-3.105.0/lib/roda/plugins/each_part.rb +87 -0
- data/roda-3.105.0/lib/roda/plugins/early_hints.rb +25 -0
- data/roda-3.105.0/lib/roda/plugins/empty_root.rb +49 -0
- data/roda-3.105.0/lib/roda/plugins/environments.rb +79 -0
- data/roda-3.105.0/lib/roda/plugins/erb_h.rb +43 -0
- data/roda-3.105.0/lib/roda/plugins/error_email.rb +152 -0
- data/roda-3.105.0/lib/roda/plugins/error_handler.rb +133 -0
- data/roda-3.105.0/lib/roda/plugins/error_mail.rb +149 -0
- data/roda-3.105.0/lib/roda/plugins/exception_page.rb +445 -0
- data/roda-3.105.0/lib/roda/plugins/filter_common_logger.rb +46 -0
- data/roda-3.105.0/lib/roda/plugins/flash.rb +117 -0
- data/roda-3.105.0/lib/roda/plugins/h.rb +59 -0
- data/roda-3.105.0/lib/roda/plugins/halt.rb +108 -0
- data/roda-3.105.0/lib/roda/plugins/hash_branch_view_subdir.rb +76 -0
- data/roda-3.105.0/lib/roda/plugins/hash_branches.rb +145 -0
- data/roda-3.105.0/lib/roda/plugins/hash_matcher.rb +39 -0
- data/roda-3.105.0/lib/roda/plugins/hash_paths.rb +128 -0
- data/roda-3.105.0/lib/roda/plugins/hash_public.rb +125 -0
- data/roda-3.105.0/lib/roda/plugins/hash_public_cache.rb +91 -0
- data/roda-3.105.0/lib/roda/plugins/hash_routes.rb +304 -0
- data/roda-3.105.0/lib/roda/plugins/head.rb +99 -0
- data/roda-3.105.0/lib/roda/plugins/header_matchers.rb +88 -0
- data/roda-3.105.0/lib/roda/plugins/heartbeat.rb +41 -0
- data/roda-3.105.0/lib/roda/plugins/hmac_paths.rb +413 -0
- data/roda-3.105.0/lib/roda/plugins/hooks.rb +92 -0
- data/roda-3.105.0/lib/roda/plugins/host_authorization.rb +155 -0
- data/roda-3.105.0/lib/roda/plugins/host_routing.rb +190 -0
- data/roda-3.105.0/lib/roda/plugins/hsts.rb +35 -0
- data/roda-3.105.0/lib/roda/plugins/indifferent_params.rb +124 -0
- data/roda-3.105.0/lib/roda/plugins/inject_erb.rb +33 -0
- data/roda-3.105.0/lib/roda/plugins/invalid_request_body.rb +107 -0
- data/roda-3.105.0/lib/roda/plugins/ip_from_header.rb +34 -0
- data/roda-3.105.0/lib/roda/plugins/json.rb +119 -0
- data/roda-3.105.0/lib/roda/plugins/json_parser.rb +107 -0
- data/roda-3.105.0/lib/roda/plugins/link_to.rb +83 -0
- data/roda-3.105.0/lib/roda/plugins/mail_processor.rb +629 -0
- data/roda-3.105.0/lib/roda/plugins/mailer.rb +283 -0
- data/roda-3.105.0/lib/roda/plugins/map_matcher.rb +48 -0
- data/roda-3.105.0/lib/roda/plugins/match_affix.rb +64 -0
- data/roda-3.105.0/lib/roda/plugins/match_hook.rb +34 -0
- data/roda-3.105.0/lib/roda/plugins/match_hook_args.rb +93 -0
- data/roda-3.105.0/lib/roda/plugins/middleware.rb +225 -0
- data/roda-3.105.0/lib/roda/plugins/middleware_stack.rb +101 -0
- data/roda-3.105.0/lib/roda/plugins/module_include.rb +96 -0
- data/roda-3.105.0/lib/roda/plugins/multi_public.rb +95 -0
- data/roda-3.105.0/lib/roda/plugins/multi_route.rb +156 -0
- data/roda-3.105.0/lib/roda/plugins/multi_run.rb +144 -0
- data/roda-3.105.0/lib/roda/plugins/multi_view.rb +83 -0
- data/roda-3.105.0/lib/roda/plugins/multibyte_string_matcher.rb +57 -0
- data/roda-3.105.0/lib/roda/plugins/named_routes.rb +167 -0
- data/roda-3.105.0/lib/roda/plugins/named_templates.rb +102 -0
- data/roda-3.105.0/lib/roda/plugins/not_allowed.rb +149 -0
- data/roda-3.105.0/lib/roda/plugins/not_found.rb +55 -0
- data/roda-3.105.0/lib/roda/plugins/optimized_segment_matchers.rb +53 -0
- data/roda-3.105.0/lib/roda/plugins/optimized_string_matchers.rb +50 -0
- data/roda-3.105.0/lib/roda/plugins/padrino_render.rb +42 -0
- data/roda-3.105.0/lib/roda/plugins/param_matchers.rb +83 -0
- data/roda-3.105.0/lib/roda/plugins/params_capturing.rb +116 -0
- data/roda-3.105.0/lib/roda/plugins/part.rb +76 -0
- data/roda-3.105.0/lib/roda/plugins/partials.rb +74 -0
- data/roda-3.105.0/lib/roda/plugins/pass.rb +47 -0
- data/roda-3.105.0/lib/roda/plugins/path.rb +255 -0
- data/roda-3.105.0/lib/roda/plugins/path_matchers.rb +54 -0
- data/roda-3.105.0/lib/roda/plugins/path_rewriter.rb +111 -0
- data/roda-3.105.0/lib/roda/plugins/permissions_policy.rb +336 -0
- data/roda-3.105.0/lib/roda/plugins/placeholder_string_matchers.rb +48 -0
- data/roda-3.105.0/lib/roda/plugins/plain_hash_response_headers.rb +32 -0
- data/roda-3.105.0/lib/roda/plugins/precompile_templates.rb +156 -0
- data/roda-3.105.0/lib/roda/plugins/public.rb +182 -0
- data/roda-3.105.0/lib/roda/plugins/r.rb +35 -0
- data/roda-3.105.0/lib/roda/plugins/recheck_precompiled_assets.rb +107 -0
- data/roda-3.105.0/lib/roda/plugins/redirect_http_to_https.rb +99 -0
- data/roda-3.105.0/lib/roda/plugins/redirect_path.rb +59 -0
- data/roda-3.105.0/lib/roda/plugins/relative_path.rb +74 -0
- data/roda-3.105.0/lib/roda/plugins/render.rb +998 -0
- data/roda-3.105.0/lib/roda/plugins/render_coverage.rb +105 -0
- data/roda-3.105.0/lib/roda/plugins/render_each.rb +224 -0
- data/roda-3.105.0/lib/roda/plugins/render_locals.rb +102 -0
- data/roda-3.105.0/lib/roda/plugins/request_aref.rb +77 -0
- data/roda-3.105.0/lib/roda/plugins/request_headers.rb +81 -0
- data/roda-3.105.0/lib/roda/plugins/response_attachment.rb +94 -0
- data/roda-3.105.0/lib/roda/plugins/response_content_type.rb +79 -0
- data/roda-3.105.0/lib/roda/plugins/response_request.rb +29 -0
- data/roda-3.105.0/lib/roda/plugins/route_block_args.rb +50 -0
- data/roda-3.105.0/lib/roda/plugins/route_csrf.rb +388 -0
- data/roda-3.105.0/lib/roda/plugins/run_append_slash.rb +51 -0
- data/roda-3.105.0/lib/roda/plugins/run_handler.rb +51 -0
- data/roda-3.105.0/lib/roda/plugins/run_require_slash.rb +46 -0
- data/roda-3.105.0/lib/roda/plugins/sec_fetch_site_csrf.rb +131 -0
- data/roda-3.105.0/lib/roda/plugins/send_file.rb +127 -0
- data/roda-3.105.0/lib/roda/plugins/sessions.rb +537 -0
- data/roda-3.105.0/lib/roda/plugins/shared_vars.rb +86 -0
- data/roda-3.105.0/lib/roda/plugins/sinatra_helpers.rb +443 -0
- data/roda-3.105.0/lib/roda/plugins/slash_path_empty.rb +26 -0
- data/roda-3.105.0/lib/roda/plugins/static.rb +42 -0
- data/roda-3.105.0/lib/roda/plugins/static_routing.rb +89 -0
- data/roda-3.105.0/lib/roda/plugins/status_303.rb +34 -0
- data/roda-3.105.0/lib/roda/plugins/status_handler.rb +86 -0
- data/roda-3.105.0/lib/roda/plugins/streaming.rb +170 -0
- data/roda-3.105.0/lib/roda/plugins/strip_path_prefix.rb +33 -0
- data/roda-3.105.0/lib/roda/plugins/symbol_matchers.rb +188 -0
- data/roda-3.105.0/lib/roda/plugins/symbol_status.rb +32 -0
- data/roda-3.105.0/lib/roda/plugins/symbol_views.rb +37 -0
- data/roda-3.105.0/lib/roda/plugins/timestamp_public.rb +78 -0
- data/roda-3.105.0/lib/roda/plugins/type_routing.rb +215 -0
- data/roda-3.105.0/lib/roda/plugins/typecast_params.rb +1183 -0
- data/roda-3.105.0/lib/roda/plugins/typecast_params_sized_integers.rb +108 -0
- data/roda-3.105.0/lib/roda/plugins/unescape_path.rb +41 -0
- data/roda-3.105.0/lib/roda/plugins/view_options.rb +201 -0
- data/roda-3.105.0/lib/roda/plugins/view_subdir_leading_slash.rb +49 -0
- data/roda-3.105.0/lib/roda/plugins.rb +68 -0
- data/roda-3.105.0/lib/roda/request.rb +722 -0
- data/roda-3.105.0/lib/roda/response.rb +221 -0
- data/roda-3.105.0/lib/roda/session_middleware.rb +183 -0
- data/roda-3.105.0/lib/roda/version.rb +18 -0
- data/roda-3.105.0/lib/roda.rb +586 -0
- data/ultra-lite-hub.gemspec +12 -0
- metadata +201 -0
metadata
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ultra-lite-hub
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrey78
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-06 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: University research based on roda
|
|
13
|
+
email:
|
|
14
|
+
- cakoc614@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- roda-3.105.0/MIT-LICENSE
|
|
20
|
+
- roda-3.105.0/lib/roda.rb
|
|
21
|
+
- roda-3.105.0/lib/roda/cache.rb
|
|
22
|
+
- roda-3.105.0/lib/roda/plugins.rb
|
|
23
|
+
- roda-3.105.0/lib/roda/plugins/Integer_matcher_max.rb
|
|
24
|
+
- roda-3.105.0/lib/roda/plugins/_after_hook.rb
|
|
25
|
+
- roda-3.105.0/lib/roda/plugins/_base64.rb
|
|
26
|
+
- roda-3.105.0/lib/roda/plugins/_before_hook.rb
|
|
27
|
+
- roda-3.105.0/lib/roda/plugins/_optimized_matching.rb
|
|
28
|
+
- roda-3.105.0/lib/roda/plugins/_symbol_class_matchers.rb
|
|
29
|
+
- roda-3.105.0/lib/roda/plugins/_symbol_regexp_matchers.rb
|
|
30
|
+
- roda-3.105.0/lib/roda/plugins/additional_render_engines.rb
|
|
31
|
+
- roda-3.105.0/lib/roda/plugins/additional_view_directories.rb
|
|
32
|
+
- roda-3.105.0/lib/roda/plugins/all_verbs.rb
|
|
33
|
+
- roda-3.105.0/lib/roda/plugins/assets.rb
|
|
34
|
+
- roda-3.105.0/lib/roda/plugins/assets_preloading.rb
|
|
35
|
+
- roda-3.105.0/lib/roda/plugins/assume_ssl.rb
|
|
36
|
+
- roda-3.105.0/lib/roda/plugins/autoload_hash_branches.rb
|
|
37
|
+
- roda-3.105.0/lib/roda/plugins/autoload_named_routes.rb
|
|
38
|
+
- roda-3.105.0/lib/roda/plugins/backtracking_array.rb
|
|
39
|
+
- roda-3.105.0/lib/roda/plugins/bearer_token.rb
|
|
40
|
+
- roda-3.105.0/lib/roda/plugins/branch_locals.rb
|
|
41
|
+
- roda-3.105.0/lib/roda/plugins/break.rb
|
|
42
|
+
- roda-3.105.0/lib/roda/plugins/caching.rb
|
|
43
|
+
- roda-3.105.0/lib/roda/plugins/capture_erb.rb
|
|
44
|
+
- roda-3.105.0/lib/roda/plugins/chunked.rb
|
|
45
|
+
- roda-3.105.0/lib/roda/plugins/class_level_routing.rb
|
|
46
|
+
- roda-3.105.0/lib/roda/plugins/class_matchers.rb
|
|
47
|
+
- roda-3.105.0/lib/roda/plugins/common_logger.rb
|
|
48
|
+
- roda-3.105.0/lib/roda/plugins/conditional_sessions.rb
|
|
49
|
+
- roda-3.105.0/lib/roda/plugins/content_for.rb
|
|
50
|
+
- roda-3.105.0/lib/roda/plugins/content_security_policy.rb
|
|
51
|
+
- roda-3.105.0/lib/roda/plugins/cookie_flags.rb
|
|
52
|
+
- roda-3.105.0/lib/roda/plugins/cookies.rb
|
|
53
|
+
- roda-3.105.0/lib/roda/plugins/csrf.rb
|
|
54
|
+
- roda-3.105.0/lib/roda/plugins/custom_block_results.rb
|
|
55
|
+
- roda-3.105.0/lib/roda/plugins/custom_matchers.rb
|
|
56
|
+
- roda-3.105.0/lib/roda/plugins/default_headers.rb
|
|
57
|
+
- roda-3.105.0/lib/roda/plugins/default_status.rb
|
|
58
|
+
- roda-3.105.0/lib/roda/plugins/delay_build.rb
|
|
59
|
+
- roda-3.105.0/lib/roda/plugins/delegate.rb
|
|
60
|
+
- roda-3.105.0/lib/roda/plugins/delete_empty_headers.rb
|
|
61
|
+
- roda-3.105.0/lib/roda/plugins/direct_call.rb
|
|
62
|
+
- roda-3.105.0/lib/roda/plugins/disallow_file_uploads.rb
|
|
63
|
+
- roda-3.105.0/lib/roda/plugins/drop_body.rb
|
|
64
|
+
- roda-3.105.0/lib/roda/plugins/each_part.rb
|
|
65
|
+
- roda-3.105.0/lib/roda/plugins/early_hints.rb
|
|
66
|
+
- roda-3.105.0/lib/roda/plugins/empty_root.rb
|
|
67
|
+
- roda-3.105.0/lib/roda/plugins/environments.rb
|
|
68
|
+
- roda-3.105.0/lib/roda/plugins/erb_h.rb
|
|
69
|
+
- roda-3.105.0/lib/roda/plugins/error_email.rb
|
|
70
|
+
- roda-3.105.0/lib/roda/plugins/error_handler.rb
|
|
71
|
+
- roda-3.105.0/lib/roda/plugins/error_mail.rb
|
|
72
|
+
- roda-3.105.0/lib/roda/plugins/exception_page.rb
|
|
73
|
+
- roda-3.105.0/lib/roda/plugins/filter_common_logger.rb
|
|
74
|
+
- roda-3.105.0/lib/roda/plugins/flash.rb
|
|
75
|
+
- roda-3.105.0/lib/roda/plugins/h.rb
|
|
76
|
+
- roda-3.105.0/lib/roda/plugins/halt.rb
|
|
77
|
+
- roda-3.105.0/lib/roda/plugins/hash_branch_view_subdir.rb
|
|
78
|
+
- roda-3.105.0/lib/roda/plugins/hash_branches.rb
|
|
79
|
+
- roda-3.105.0/lib/roda/plugins/hash_matcher.rb
|
|
80
|
+
- roda-3.105.0/lib/roda/plugins/hash_paths.rb
|
|
81
|
+
- roda-3.105.0/lib/roda/plugins/hash_public.rb
|
|
82
|
+
- roda-3.105.0/lib/roda/plugins/hash_public_cache.rb
|
|
83
|
+
- roda-3.105.0/lib/roda/plugins/hash_routes.rb
|
|
84
|
+
- roda-3.105.0/lib/roda/plugins/head.rb
|
|
85
|
+
- roda-3.105.0/lib/roda/plugins/header_matchers.rb
|
|
86
|
+
- roda-3.105.0/lib/roda/plugins/heartbeat.rb
|
|
87
|
+
- roda-3.105.0/lib/roda/plugins/hmac_paths.rb
|
|
88
|
+
- roda-3.105.0/lib/roda/plugins/hooks.rb
|
|
89
|
+
- roda-3.105.0/lib/roda/plugins/host_authorization.rb
|
|
90
|
+
- roda-3.105.0/lib/roda/plugins/host_routing.rb
|
|
91
|
+
- roda-3.105.0/lib/roda/plugins/hsts.rb
|
|
92
|
+
- roda-3.105.0/lib/roda/plugins/indifferent_params.rb
|
|
93
|
+
- roda-3.105.0/lib/roda/plugins/inject_erb.rb
|
|
94
|
+
- roda-3.105.0/lib/roda/plugins/invalid_request_body.rb
|
|
95
|
+
- roda-3.105.0/lib/roda/plugins/ip_from_header.rb
|
|
96
|
+
- roda-3.105.0/lib/roda/plugins/json.rb
|
|
97
|
+
- roda-3.105.0/lib/roda/plugins/json_parser.rb
|
|
98
|
+
- roda-3.105.0/lib/roda/plugins/link_to.rb
|
|
99
|
+
- roda-3.105.0/lib/roda/plugins/mail_processor.rb
|
|
100
|
+
- roda-3.105.0/lib/roda/plugins/mailer.rb
|
|
101
|
+
- roda-3.105.0/lib/roda/plugins/map_matcher.rb
|
|
102
|
+
- roda-3.105.0/lib/roda/plugins/match_affix.rb
|
|
103
|
+
- roda-3.105.0/lib/roda/plugins/match_hook.rb
|
|
104
|
+
- roda-3.105.0/lib/roda/plugins/match_hook_args.rb
|
|
105
|
+
- roda-3.105.0/lib/roda/plugins/middleware.rb
|
|
106
|
+
- roda-3.105.0/lib/roda/plugins/middleware_stack.rb
|
|
107
|
+
- roda-3.105.0/lib/roda/plugins/module_include.rb
|
|
108
|
+
- roda-3.105.0/lib/roda/plugins/multi_public.rb
|
|
109
|
+
- roda-3.105.0/lib/roda/plugins/multi_route.rb
|
|
110
|
+
- roda-3.105.0/lib/roda/plugins/multi_run.rb
|
|
111
|
+
- roda-3.105.0/lib/roda/plugins/multi_view.rb
|
|
112
|
+
- roda-3.105.0/lib/roda/plugins/multibyte_string_matcher.rb
|
|
113
|
+
- roda-3.105.0/lib/roda/plugins/named_routes.rb
|
|
114
|
+
- roda-3.105.0/lib/roda/plugins/named_templates.rb
|
|
115
|
+
- roda-3.105.0/lib/roda/plugins/not_allowed.rb
|
|
116
|
+
- roda-3.105.0/lib/roda/plugins/not_found.rb
|
|
117
|
+
- roda-3.105.0/lib/roda/plugins/optimized_segment_matchers.rb
|
|
118
|
+
- roda-3.105.0/lib/roda/plugins/optimized_string_matchers.rb
|
|
119
|
+
- roda-3.105.0/lib/roda/plugins/padrino_render.rb
|
|
120
|
+
- roda-3.105.0/lib/roda/plugins/param_matchers.rb
|
|
121
|
+
- roda-3.105.0/lib/roda/plugins/params_capturing.rb
|
|
122
|
+
- roda-3.105.0/lib/roda/plugins/part.rb
|
|
123
|
+
- roda-3.105.0/lib/roda/plugins/partials.rb
|
|
124
|
+
- roda-3.105.0/lib/roda/plugins/pass.rb
|
|
125
|
+
- roda-3.105.0/lib/roda/plugins/path.rb
|
|
126
|
+
- roda-3.105.0/lib/roda/plugins/path_matchers.rb
|
|
127
|
+
- roda-3.105.0/lib/roda/plugins/path_rewriter.rb
|
|
128
|
+
- roda-3.105.0/lib/roda/plugins/permissions_policy.rb
|
|
129
|
+
- roda-3.105.0/lib/roda/plugins/placeholder_string_matchers.rb
|
|
130
|
+
- roda-3.105.0/lib/roda/plugins/plain_hash_response_headers.rb
|
|
131
|
+
- roda-3.105.0/lib/roda/plugins/precompile_templates.rb
|
|
132
|
+
- roda-3.105.0/lib/roda/plugins/public.rb
|
|
133
|
+
- roda-3.105.0/lib/roda/plugins/r.rb
|
|
134
|
+
- roda-3.105.0/lib/roda/plugins/recheck_precompiled_assets.rb
|
|
135
|
+
- roda-3.105.0/lib/roda/plugins/redirect_http_to_https.rb
|
|
136
|
+
- roda-3.105.0/lib/roda/plugins/redirect_path.rb
|
|
137
|
+
- roda-3.105.0/lib/roda/plugins/relative_path.rb
|
|
138
|
+
- roda-3.105.0/lib/roda/plugins/render.rb
|
|
139
|
+
- roda-3.105.0/lib/roda/plugins/render_coverage.rb
|
|
140
|
+
- roda-3.105.0/lib/roda/plugins/render_each.rb
|
|
141
|
+
- roda-3.105.0/lib/roda/plugins/render_locals.rb
|
|
142
|
+
- roda-3.105.0/lib/roda/plugins/request_aref.rb
|
|
143
|
+
- roda-3.105.0/lib/roda/plugins/request_headers.rb
|
|
144
|
+
- roda-3.105.0/lib/roda/plugins/response_attachment.rb
|
|
145
|
+
- roda-3.105.0/lib/roda/plugins/response_content_type.rb
|
|
146
|
+
- roda-3.105.0/lib/roda/plugins/response_request.rb
|
|
147
|
+
- roda-3.105.0/lib/roda/plugins/route_block_args.rb
|
|
148
|
+
- roda-3.105.0/lib/roda/plugins/route_csrf.rb
|
|
149
|
+
- roda-3.105.0/lib/roda/plugins/run_append_slash.rb
|
|
150
|
+
- roda-3.105.0/lib/roda/plugins/run_handler.rb
|
|
151
|
+
- roda-3.105.0/lib/roda/plugins/run_require_slash.rb
|
|
152
|
+
- roda-3.105.0/lib/roda/plugins/sec_fetch_site_csrf.rb
|
|
153
|
+
- roda-3.105.0/lib/roda/plugins/send_file.rb
|
|
154
|
+
- roda-3.105.0/lib/roda/plugins/sessions.rb
|
|
155
|
+
- roda-3.105.0/lib/roda/plugins/shared_vars.rb
|
|
156
|
+
- roda-3.105.0/lib/roda/plugins/sinatra_helpers.rb
|
|
157
|
+
- roda-3.105.0/lib/roda/plugins/slash_path_empty.rb
|
|
158
|
+
- roda-3.105.0/lib/roda/plugins/static.rb
|
|
159
|
+
- roda-3.105.0/lib/roda/plugins/static_routing.rb
|
|
160
|
+
- roda-3.105.0/lib/roda/plugins/status_303.rb
|
|
161
|
+
- roda-3.105.0/lib/roda/plugins/status_handler.rb
|
|
162
|
+
- roda-3.105.0/lib/roda/plugins/streaming.rb
|
|
163
|
+
- roda-3.105.0/lib/roda/plugins/strip_path_prefix.rb
|
|
164
|
+
- roda-3.105.0/lib/roda/plugins/symbol_matchers.rb
|
|
165
|
+
- roda-3.105.0/lib/roda/plugins/symbol_status.rb
|
|
166
|
+
- roda-3.105.0/lib/roda/plugins/symbol_views.rb
|
|
167
|
+
- roda-3.105.0/lib/roda/plugins/timestamp_public.rb
|
|
168
|
+
- roda-3.105.0/lib/roda/plugins/type_routing.rb
|
|
169
|
+
- roda-3.105.0/lib/roda/plugins/typecast_params.rb
|
|
170
|
+
- roda-3.105.0/lib/roda/plugins/typecast_params_sized_integers.rb
|
|
171
|
+
- roda-3.105.0/lib/roda/plugins/unescape_path.rb
|
|
172
|
+
- roda-3.105.0/lib/roda/plugins/view_options.rb
|
|
173
|
+
- roda-3.105.0/lib/roda/plugins/view_subdir_leading_slash.rb
|
|
174
|
+
- roda-3.105.0/lib/roda/request.rb
|
|
175
|
+
- roda-3.105.0/lib/roda/response.rb
|
|
176
|
+
- roda-3.105.0/lib/roda/session_middleware.rb
|
|
177
|
+
- roda-3.105.0/lib/roda/version.rb
|
|
178
|
+
- ultra-lite-hub.gemspec
|
|
179
|
+
homepage: https://rubygems.org/profiles/Andrey78
|
|
180
|
+
licenses:
|
|
181
|
+
- MIT
|
|
182
|
+
metadata:
|
|
183
|
+
source_code_uri: https://github.com/Andrey78/ultra-lite-hub
|
|
184
|
+
rdoc_options: []
|
|
185
|
+
require_paths:
|
|
186
|
+
- lib
|
|
187
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
188
|
+
requirements:
|
|
189
|
+
- - ">="
|
|
190
|
+
- !ruby/object:Gem::Version
|
|
191
|
+
version: '0'
|
|
192
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
|
+
requirements:
|
|
194
|
+
- - ">="
|
|
195
|
+
- !ruby/object:Gem::Version
|
|
196
|
+
version: '0'
|
|
197
|
+
requirements: []
|
|
198
|
+
rubygems_version: 3.6.2
|
|
199
|
+
specification_version: 4
|
|
200
|
+
summary: Research test
|
|
201
|
+
test_files: []
|