tokite 4.0.0 → 5.0.0

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.
Files changed (2465) hide show
  1. checksums.yaml +4 -4
  2. data/lib/tokite/version.rb +1 -1
  3. data/vendor/bundle/ruby/3.4.0/cache/action_text-trix-2.1.16.gem +0 -0
  4. data/vendor/bundle/ruby/3.4.0/cache/actioncable-8.1.2.gem +0 -0
  5. data/vendor/bundle/ruby/3.4.0/cache/actionmailbox-8.1.2.gem +0 -0
  6. data/vendor/bundle/ruby/3.4.0/cache/actionmailer-8.1.2.gem +0 -0
  7. data/vendor/bundle/ruby/3.4.0/cache/actionpack-8.1.2.gem +0 -0
  8. data/vendor/bundle/ruby/3.4.0/cache/actiontext-8.1.2.gem +0 -0
  9. data/vendor/bundle/ruby/3.4.0/cache/actionview-8.1.2.gem +0 -0
  10. data/vendor/bundle/ruby/3.4.0/cache/activejob-8.1.2.gem +0 -0
  11. data/vendor/bundle/ruby/3.4.0/cache/activemodel-8.1.2.gem +0 -0
  12. data/vendor/bundle/ruby/3.4.0/cache/activerecord-8.1.2.gem +0 -0
  13. data/vendor/bundle/ruby/3.4.0/cache/activestorage-8.1.2.gem +0 -0
  14. data/vendor/bundle/ruby/3.4.0/cache/activesupport-8.1.2.gem +0 -0
  15. data/vendor/bundle/ruby/3.4.0/cache/rails-8.1.2.gem +0 -0
  16. data/vendor/bundle/ruby/3.4.0/cache/railties-8.1.2.gem +0 -0
  17. data/vendor/bundle/ruby/3.4.0/gems/action_text-trix-2.1.16/LICENSE +20 -0
  18. data/vendor/bundle/ruby/3.4.0/gems/action_text-trix-2.1.16/app/assets/javascripts/trix.js +13866 -0
  19. data/vendor/bundle/ruby/3.4.0/gems/action_text-trix-2.1.16/lib/action_text/trix/engine.rb +9 -0
  20. data/vendor/bundle/ruby/3.4.0/gems/action_text-trix-2.1.16/lib/action_text/trix/version.rb +3 -0
  21. data/vendor/bundle/ruby/3.4.0/gems/action_text-trix-2.1.16/lib/action_text/trix.rb +2 -0
  22. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/CHANGELOG.md +21 -0
  23. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/channel/base.rb +348 -0
  24. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/channel/broadcasting.rb +50 -0
  25. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/channel/callbacks.rb +83 -0
  26. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/channel/streams.rb +217 -0
  27. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/connection/stream_event_loop.rb +137 -0
  28. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/gem_version.rb +19 -0
  29. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/server/broadcasting.rb +64 -0
  30. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/server/worker.rb +75 -0
  31. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/action_cable/subscription_adapter/base.rb +37 -0
  32. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.1.2/lib/rails/generators/channel/channel_generator.rb +127 -0
  33. data/vendor/bundle/ruby/3.4.0/gems/actionmailbox-8.1.2/CHANGELOG.md +17 -0
  34. data/vendor/bundle/ruby/3.4.0/gems/actionmailbox-8.1.2/lib/action_mailbox/gem_version.rb +17 -0
  35. data/vendor/bundle/ruby/3.4.0/gems/actionmailbox-8.1.2/lib/action_mailbox/mail_ext/addresses.rb +48 -0
  36. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/CHANGELOG.md +35 -0
  37. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/base.rb +1072 -0
  38. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/callbacks.rb +37 -0
  39. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/form_builder.rb +37 -0
  40. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/gem_version.rb +17 -0
  41. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/log_subscriber.rb +40 -0
  42. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/message_delivery.rb +190 -0
  43. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/railtie.rb +88 -0
  44. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.1.2/lib/action_mailer/structured_event_subscriber.rb +38 -0
  45. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/CHANGELOG.md +504 -0
  46. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/abstract_controller/asset_paths.rb +16 -0
  47. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/abstract_controller/base.rb +294 -0
  48. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/abstract_controller/caching.rb +71 -0
  49. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/abstract_controller/callbacks.rb +271 -0
  50. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/abstract_controller/logger.rb +17 -0
  51. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/api.rb +156 -0
  52. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/base.rb +333 -0
  53. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/caching.rb +48 -0
  54. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/form_builder.rb +55 -0
  55. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/log_subscriber.rb +115 -0
  56. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/allow_browser.rb +133 -0
  57. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/conditional_get.rb +365 -0
  58. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/data_streaming.rb +154 -0
  59. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/exceptions.rb +111 -0
  60. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/flash.rb +64 -0
  61. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/head.rb +69 -0
  62. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/live.rb +433 -0
  63. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/permissions_policy.rb +47 -0
  64. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/rate_limiting.rb +92 -0
  65. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/redirecting.rb +344 -0
  66. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/renderers.rb +201 -0
  67. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/rendering.rb +266 -0
  68. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/request_forgery_protection.rb +677 -0
  69. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/metal/rescue.rb +42 -0
  70. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/railtie.rb +167 -0
  71. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_controller/structured_event_subscriber.rb +116 -0
  72. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/cache.rb +359 -0
  73. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/filter_parameters.rb +87 -0
  74. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/mime_negotiation.rb +246 -0
  75. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/mime_types.rb +55 -0
  76. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/param_builder.rb +187 -0
  77. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/parameters.rb +119 -0
  78. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/permissions_policy.rb +193 -0
  79. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/query_parser.rb +55 -0
  80. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/request.rb +546 -0
  81. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/response.rb +604 -0
  82. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/http/url.rb +440 -0
  83. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/gtg/simulator.rb +71 -0
  84. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/gtg/transition_table.rb +209 -0
  85. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/nodes/node.rb +209 -0
  86. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/route.rb +203 -0
  87. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/router/utils.rb +99 -0
  88. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/router.rb +129 -0
  89. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/routes.rb +89 -0
  90. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/visitors.rb +299 -0
  91. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/journey/visualizer/fsm.js +157 -0
  92. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/log_subscriber.rb +29 -0
  93. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/cookies.rb +721 -0
  94. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/debug_exceptions.rb +214 -0
  95. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/debug_view.rb +79 -0
  96. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/exception_wrapper.rb +350 -0
  97. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/executor.rb +45 -0
  98. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/public_exceptions.rb +64 -0
  99. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/remote_ip.rb +204 -0
  100. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/session/cache_store.rb +83 -0
  101. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/_copy_button.html.erb +1 -0
  102. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +34 -0
  103. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +66 -0
  104. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +13 -0
  105. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +36 -0
  106. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +28 -0
  107. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +19 -0
  108. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/layout.erb +334 -0
  109. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +24 -0
  110. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +12 -0
  111. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +33 -0
  112. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +21 -0
  113. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +7 -0
  114. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/railtie.rb +96 -0
  115. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/routing/inspector.rb +346 -0
  116. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/routing/mapper.rb +2546 -0
  117. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/routing/redirection.rb +221 -0
  118. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/routing/route_set.rb +955 -0
  119. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/structured_event_subscriber.rb +20 -0
  120. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/system_test_case.rb +206 -0
  121. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +164 -0
  122. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/testing/assertions/response.rb +138 -0
  123. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch/testing/assertions/routing.rb +355 -0
  124. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_dispatch.rb +161 -0
  125. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.1.2/lib/action_pack/gem_version.rb +19 -0
  126. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/CHANGELOG.md +73 -0
  127. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/app/assets/javascripts/actiontext.esm.js +989 -0
  128. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/app/assets/javascripts/actiontext.js +965 -0
  129. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/app/helpers/action_text/tag_helper.rb +119 -0
  130. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/app/javascript/actiontext/attachment_upload.js +111 -0
  131. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/app/javascript/actiontext/index.js +19 -0
  132. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/app/models/action_text/rich_text.rb +96 -0
  133. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/content.rb +198 -0
  134. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/engine.rb +97 -0
  135. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/fixture_set.rb +68 -0
  136. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/gem_version.rb +19 -0
  137. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/plain_text_conversion.rb +154 -0
  138. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/rendering.rb +34 -0
  139. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/action_text/system_test_helper.rb +74 -0
  140. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/lib/generators/action_text/install/install_generator.rb +72 -0
  141. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.1.2/package.json +40 -0
  142. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/CHANGELOG.md +166 -0
  143. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/base.rb +316 -0
  144. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/buffers.rb +165 -0
  145. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/dependency_tracker/erb_tracker.rb +163 -0
  146. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/dependency_tracker.rb +46 -0
  147. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/gem_version.rb +17 -0
  148. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/asset_tag_helper.rb +699 -0
  149. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/capture_helper.rb +236 -0
  150. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/controller_helper.rb +46 -0
  151. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/date_helper.rb +1290 -0
  152. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/form_helper.rb +2766 -0
  153. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/form_options_helper.rb +929 -0
  154. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/form_tag_helper.rb +1096 -0
  155. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/javascript_helper.rb +100 -0
  156. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/number_helper.rb +179 -0
  157. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tag_helper.rb +602 -0
  158. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tags/check_box.rb +71 -0
  159. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tags/datetime_field.rb +39 -0
  160. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tags/file_field.rb +31 -0
  161. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tags/hidden_field.rb +14 -0
  162. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tags/select.rb +50 -0
  163. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/tags/select_renderer.rb +58 -0
  164. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/translation_helper.rb +166 -0
  165. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/helpers/url_helper.rb +840 -0
  166. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/locale/en.yml +59 -0
  167. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/log_subscriber.rb +129 -0
  168. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/railtie.rb +143 -0
  169. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/record_identifier.rb +139 -0
  170. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/renderer/partial_renderer.rb +283 -0
  171. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/structured_event_subscriber.rb +97 -0
  172. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/template/error.rb +279 -0
  173. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/template/handlers/erb.rb +190 -0
  174. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/template.rb +590 -0
  175. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view/test_case.rb +446 -0
  176. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.1.2/lib/action_view.rb +108 -0
  177. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/CHANGELOG.md +132 -0
  178. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/README.md +133 -0
  179. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/arguments.rb +200 -0
  180. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/base.rb +78 -0
  181. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/configured_job.rb +23 -0
  182. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/continuable.rb +102 -0
  183. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/continuation/step.rb +83 -0
  184. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/continuation/test_helper.rb +89 -0
  185. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/continuation/validation.rb +50 -0
  186. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/continuation.rb +332 -0
  187. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/core.rb +220 -0
  188. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/enqueue_after_transaction_commit.rb +38 -0
  189. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/enqueuing.rb +144 -0
  190. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/exceptions.rb +216 -0
  191. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/execution_state.rb +11 -0
  192. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/gem_version.rb +17 -0
  193. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/instrumentation.rb +52 -0
  194. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/log_subscriber.rb +271 -0
  195. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/queue_adapters/abstract_adapter.rb +25 -0
  196. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/queue_adapters/async_adapter.rb +120 -0
  197. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/queue_adapters/sidekiq_adapter.rb +94 -0
  198. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/queue_adapters/test_adapter.rb +90 -0
  199. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/queue_adapters.rb +139 -0
  200. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/railtie.rb +114 -0
  201. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/action_controller_parameters_serializer.rb +25 -0
  202. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/big_decimal_serializer.rb +21 -0
  203. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/date_serializer.rb +19 -0
  204. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/date_time_serializer.rb +15 -0
  205. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/duration_serializer.rb +24 -0
  206. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/module_serializer.rb +20 -0
  207. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/object_serializer.rb +52 -0
  208. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/range_serializer.rb +23 -0
  209. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/symbol_serializer.rb +19 -0
  210. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/time_serializer.rb +15 -0
  211. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers/time_with_zone_serializer.rb +24 -0
  212. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/serializers.rb +116 -0
  213. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job/structured_event_subscriber.rb +220 -0
  214. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.1.2/lib/active_job.rb +62 -0
  215. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/CHANGELOG.md +46 -0
  216. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/attribute/user_provided_default.rb +65 -0
  217. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/attribute.rb +285 -0
  218. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/attribute_methods.rb +592 -0
  219. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/attribute_mutation_tracker.rb +189 -0
  220. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/attribute_set.rb +118 -0
  221. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/attributes/normalization.rb +192 -0
  222. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/dirty.rb +422 -0
  223. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/error.rb +209 -0
  224. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/errors.rb +544 -0
  225. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/gem_version.rb +17 -0
  226. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/lint.rb +122 -0
  227. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/naming.rb +358 -0
  228. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/nested_error.rb +20 -0
  229. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/railtie.rb +28 -0
  230. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/secure_password.rb +247 -0
  231. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/big_integer.rb +57 -0
  232. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/boolean.rb +49 -0
  233. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/date.rb +79 -0
  234. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/date_time.rb +96 -0
  235. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/decimal.rb +108 -0
  236. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/float.rb +65 -0
  237. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/helpers/immutable.rb +13 -0
  238. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/helpers.rb +8 -0
  239. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/immutable_string.rb +73 -0
  240. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/integer.rb +125 -0
  241. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/string.rb +47 -0
  242. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/type/value.rb +157 -0
  243. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/validations/callbacks.rb +129 -0
  244. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model/validations.rb +496 -0
  245. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.1.2/lib/active_model.rb +90 -0
  246. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/CHANGELOG.md +909 -0
  247. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/README.rdoc +219 -0
  248. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/association_relation.rb +51 -0
  249. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/association.rb +421 -0
  250. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/builder/association.rb +181 -0
  251. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/builder/belongs_to.rb +173 -0
  252. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/builder/collection_association.rb +84 -0
  253. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/builder/has_one.rb +61 -0
  254. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/builder/singular_association.rb +76 -0
  255. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/collection_proxy.rb +1181 -0
  256. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/deprecation.rb +88 -0
  257. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/errors.rb +268 -0
  258. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/join_dependency.rb +303 -0
  259. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/preloader/batch.rb +54 -0
  260. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations/preloader/branch.rb +154 -0
  261. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/associations.rb +2047 -0
  262. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/attribute_methods/serialization.rb +245 -0
  263. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/attribute_methods/time_zone_conversion.rb +92 -0
  264. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/attributes.rb +320 -0
  265. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/base.rb +337 -0
  266. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/coders/json.rb +24 -0
  267. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/connection_handler.rb +291 -0
  268. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +223 -0
  269. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +117 -0
  270. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/connection_pool.rb +1291 -0
  271. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/database_statements.rb +762 -0
  272. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/query_cache.rb +348 -0
  273. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/quoting.rb +230 -0
  274. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/schema_creation.rb +194 -0
  275. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/schema_definitions.rb +962 -0
  276. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/schema_dumper.rb +107 -0
  277. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/schema_statements.rb +1965 -0
  278. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract/transaction.rb +698 -0
  279. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract_adapter.rb +1307 -0
  280. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +1057 -0
  281. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/column.rb +135 -0
  282. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/mysql/database_statements.rb +95 -0
  283. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/mysql/schema_creation.rb +108 -0
  284. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/mysql/schema_definitions.rb +143 -0
  285. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/mysql/schema_statements.rb +329 -0
  286. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/mysql2/database_statements.rb +147 -0
  287. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/mysql2_adapter.rb +202 -0
  288. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/column.rb +86 -0
  289. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/database_statements.rb +240 -0
  290. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/oid/array.rb +91 -0
  291. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +125 -0
  292. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/quoting.rb +249 -0
  293. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/schema_creation.rb +162 -0
  294. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +375 -0
  295. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +164 -0
  296. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql/schema_statements.rb +1196 -0
  297. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/postgresql_adapter.rb +1212 -0
  298. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/schema_cache.rb +478 -0
  299. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/sqlite3/database_statements.rb +161 -0
  300. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/sqlite3/quoting.rb +121 -0
  301. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +59 -0
  302. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +214 -0
  303. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/sqlite3_adapter.rb +873 -0
  304. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/trilogy/database_statements.rb +70 -0
  305. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters/trilogy_adapter.rb +212 -0
  306. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_adapters.rb +121 -0
  307. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/connection_handling.rb +418 -0
  308. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/core.rb +897 -0
  309. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/counter_cache.rb +255 -0
  310. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/database_configurations/database_config.rb +112 -0
  311. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/database_configurations/hash_config.rb +230 -0
  312. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/database_configurations/url_config.rb +88 -0
  313. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/database_configurations.rb +313 -0
  314. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/delegated_type.rb +279 -0
  315. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/dynamic_matchers.rb +106 -0
  316. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/encryption/encryptable_record.rb +230 -0
  317. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/encryption/encrypted_attribute_type.rb +184 -0
  318. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/encryption/encryptor.rb +191 -0
  319. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/encryption/scheme.rb +107 -0
  320. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/enum.rb +428 -0
  321. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/errors.rb +630 -0
  322. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/explain.rb +63 -0
  323. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/explain_registry.rb +86 -0
  324. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/filter_attribute_handler.rb +73 -0
  325. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/fixtures.rb +849 -0
  326. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/gem_version.rb +17 -0
  327. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/inheritance.rb +366 -0
  328. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/insert_all.rb +333 -0
  329. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/locking/optimistic.rb +235 -0
  330. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/locking/pessimistic.rb +107 -0
  331. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/log_subscriber.rb +139 -0
  332. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/middleware/shard_selector.rb +79 -0
  333. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/migration/command_recorder.rb +422 -0
  334. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/migration/compatibility.rb +500 -0
  335. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/migration/default_schema_versions_formatter.rb +30 -0
  336. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/migration.rb +1631 -0
  337. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/model_schema.rb +659 -0
  338. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/nested_attributes.rb +635 -0
  339. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/persistence.rb +999 -0
  340. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/query_cache.rb +62 -0
  341. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/query_logs.rb +241 -0
  342. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/railtie.rb +446 -0
  343. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/railties/controller_runtime.rb +70 -0
  344. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/railties/databases.rake +630 -0
  345. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/railties/job_checkpoints.rb +15 -0
  346. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/railties/job_runtime.rb +22 -0
  347. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/reflection.rb +1317 -0
  348. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/batches.rb +505 -0
  349. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/calculations.rb +691 -0
  350. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/delegation.rb +153 -0
  351. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/finder_methods.rb +678 -0
  352. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/predicate_builder/association_query_value.rb +78 -0
  353. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +60 -0
  354. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/predicate_builder.rb +191 -0
  355. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/query_attribute.rb +70 -0
  356. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/query_methods.rb +2290 -0
  357. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation/where_clause.rb +217 -0
  358. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/relation.rb +1526 -0
  359. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/result.rb +273 -0
  360. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/runtime_registry.rb +66 -0
  361. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/sanitization.rb +256 -0
  362. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/schema_dumper.rb +384 -0
  363. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/scoping.rb +135 -0
  364. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/signed_id.rb +166 -0
  365. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/statement_cache.rb +168 -0
  366. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/store.rb +324 -0
  367. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/structured_event_subscriber.rb +85 -0
  368. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/table_metadata.rb +68 -0
  369. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/tasks/abstract_tasks.rb +76 -0
  370. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/tasks/database_tasks.rb +672 -0
  371. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/tasks/mysql_database_tasks.rb +83 -0
  372. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/tasks/postgresql_database_tasks.rb +121 -0
  373. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/tasks/sqlite_database_tasks.rb +77 -0
  374. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/test_databases.rb +34 -0
  375. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/test_fixtures.rb +346 -0
  376. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/testing/query_assertions.rb +127 -0
  377. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/timestamp.rb +179 -0
  378. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/transaction.rb +129 -0
  379. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/transactions.rb +546 -0
  380. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/type/hash_lookup_type_map.rb +58 -0
  381. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/type/internal/timezone.rb +29 -0
  382. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/type/json.rb +43 -0
  383. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/type/serialized.rb +83 -0
  384. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/type/type_map.rb +58 -0
  385. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/type_caster/connection.rb +34 -0
  386. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record/validations/associated.rb +65 -0
  387. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/active_record.rb +636 -0
  388. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/alias_predication.rb +11 -0
  389. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/crud.rb +45 -0
  390. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/nodes/count.rb +12 -0
  391. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/nodes/function.rb +39 -0
  392. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/nodes/named_function.rb +23 -0
  393. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/nodes/node.rb +161 -0
  394. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/nodes.rb +73 -0
  395. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/select_manager.rb +285 -0
  396. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/visitors/dot.rb +298 -0
  397. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/visitors/postgresql.rb +154 -0
  398. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/visitors/sqlite.rb +110 -0
  399. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel/visitors/to_sql.rb +1017 -0
  400. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/arel.rb +75 -0
  401. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.1.2/lib/rails/generators/active_record/application_record/USAGE +8 -0
  402. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/CHANGELOG.md +115 -0
  403. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/README.md +211 -0
  404. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/app/assets/javascripts/activestorage.esm.js +884 -0
  405. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/app/assets/javascripts/activestorage.js +866 -0
  406. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/app/javascript/activestorage/direct_upload_controller.js +114 -0
  407. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/app/models/active_storage/filename.rb +76 -0
  408. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/app/models/active_storage/variant.rb +118 -0
  409. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/app/models/active_storage/variation.rb +87 -0
  410. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/analyzer/image_analyzer/image_magick.rb +48 -0
  411. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/analyzer/image_analyzer/vips.rb +65 -0
  412. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/analyzer/image_analyzer.rb +34 -0
  413. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/attached.rb +26 -0
  414. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/engine.rb +235 -0
  415. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/gem_version.rb +17 -0
  416. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/log_subscriber.rb +76 -0
  417. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/service/configurator.rb +42 -0
  418. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/service/gcs_service.rb +242 -0
  419. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/service/mirror_service.rb +93 -0
  420. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/service/registry.rb +38 -0
  421. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/service.rb +184 -0
  422. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/structured_event_subscriber.rb +79 -0
  423. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/transformers/image_magick.rb +72 -0
  424. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/transformers/image_processing_transformer.rb +48 -0
  425. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/transformers/null_transformer.rb +12 -0
  426. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage/transformers/vips.rb +11 -0
  427. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.1.2/lib/active_storage.rb +376 -0
  428. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/CHANGELOG.md +505 -0
  429. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/backtrace_cleaner.rb +234 -0
  430. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/cache/mem_cache_store.rb +288 -0
  431. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/cache/memory_store.rb +264 -0
  432. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/cache/redis_cache_store.rb +498 -0
  433. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/cache/strategy/local_cache.rb +246 -0
  434. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
  435. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/cache.rb +1170 -0
  436. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/callbacks.rb +960 -0
  437. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/concurrency/load_interlock_aware_monitor.rb +18 -0
  438. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/concurrency/thread_monitor.rb +55 -0
  439. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/configurable.rb +193 -0
  440. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/continuous_integration.rb +145 -0
  441. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/array.rb +9 -0
  442. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/benchmark.rb +6 -0
  443. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/big_decimal.rb +3 -0
  444. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/class.rb +4 -0
  445. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/date.rb +7 -0
  446. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/date_and_time/compatibility.rb +23 -0
  447. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/date_time/compatibility.rb +16 -0
  448. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/date_time.rb +7 -0
  449. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/digest.rb +3 -0
  450. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/erb/util.rb +201 -0
  451. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/file.rb +3 -0
  452. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/hash.rb +10 -0
  453. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/integer.rb +5 -0
  454. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/kernel.rb +5 -0
  455. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/module.rb +13 -0
  456. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/numeric.rb +5 -0
  457. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/object/json.rb +267 -0
  458. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/object/to_query.rb +93 -0
  459. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/object.rb +17 -0
  460. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/pathname.rb +4 -0
  461. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/range.rb +6 -0
  462. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/string/multibyte.rb +67 -0
  463. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/string/output_safety.rb +235 -0
  464. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/string.rb +15 -0
  465. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/symbol.rb +3 -0
  466. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/time/calculations.rb +379 -0
  467. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/time/compatibility.rb +15 -0
  468. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext/time.rb +7 -0
  469. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/core_ext.rb +5 -0
  470. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/current_attributes/test_helper.rb +13 -0
  471. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/current_attributes.rb +243 -0
  472. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/delegation.rb +183 -0
  473. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/dependencies/interlock.rb +55 -0
  474. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/dependencies.rb +102 -0
  475. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/deprecation/reporting.rb +162 -0
  476. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/deprecation.rb +81 -0
  477. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/editor.rb +70 -0
  478. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/error_reporter.rb +318 -0
  479. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/event_reporter/test_helper.rb +32 -0
  480. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/event_reporter.rb +592 -0
  481. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/evented_file_update_checker.rb +185 -0
  482. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/execution_context.rb +110 -0
  483. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/file_update_checker.rb +166 -0
  484. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/gem_version.rb +17 -0
  485. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/gzip.rb +41 -0
  486. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/hash_with_indifferent_access.rb +464 -0
  487. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/i18n_railtie.rb +140 -0
  488. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/inflector/inflections.rb +290 -0
  489. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/inflector/methods.rb +387 -0
  490. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/inflector/transliterate.rb +147 -0
  491. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/isolated_execution_state.rb +76 -0
  492. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/json/decoding.rb +78 -0
  493. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/json/encoding.rb +256 -0
  494. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/log_subscriber.rb +188 -0
  495. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/message_encryptors.rb +193 -0
  496. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/message_pack/extensions.rb +310 -0
  497. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/message_verifiers.rb +189 -0
  498. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/messages/rotation_coordinator.rb +102 -0
  499. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/messages/rotator.rb +69 -0
  500. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/multibyte/chars.rb +188 -0
  501. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/multibyte.rb +27 -0
  502. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/notifications/fanout.rb +467 -0
  503. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/railtie.rb +180 -0
  504. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/structured_event_subscriber.rb +99 -0
  505. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/subscriber.rb +141 -0
  506. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/syntax_error_proxy.rb +67 -0
  507. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/test_case.rb +365 -0
  508. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/assertions.rb +369 -0
  509. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/autorun.rb +10 -0
  510. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/error_reporter_assertions.rb +124 -0
  511. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/event_reporter_assertions.rb +227 -0
  512. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/notification_assertions.rb +92 -0
  513. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/parallelization/worker.rb +107 -0
  514. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/parallelization.rb +79 -0
  515. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/tests_without_assertions.rb +19 -0
  516. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/testing/time_helpers.rb +273 -0
  517. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/time_with_zone.rb +613 -0
  518. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/values/time_zone.rb +621 -0
  519. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support/xml_mini.rb +212 -0
  520. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.1.2/lib/active_support.rb +148 -0
  521. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/CHANGELOG.md +215 -0
  522. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/minitest/rails_plugin.rb +183 -0
  523. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/application/bootstrap.rb +120 -0
  524. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/application/configuration.rb +669 -0
  525. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/application/default_middleware_stack.rb +140 -0
  526. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/application/finisher.rb +238 -0
  527. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/application/routes_reloader.rb +82 -0
  528. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/application.rb +663 -0
  529. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/code_statistics.rb +162 -0
  530. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/command/base.rb +183 -0
  531. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/command/environment_argument.rb +55 -0
  532. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/command.rb +166 -0
  533. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/commands/app/update_command.rb +99 -0
  534. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/commands/console/irb_console.rb +130 -0
  535. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/commands/credentials/credentials_command.rb +159 -0
  536. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/commands/devcontainer/devcontainer_command.rb +41 -0
  537. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/commands/encrypted/encrypted_command.rb +97 -0
  538. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/engine.rb +758 -0
  539. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/gem_version.rb +17 -0
  540. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/actions.rb +531 -0
  541. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/app_base.rb +828 -0
  542. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/database.rb +287 -0
  543. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/erb/authentication/authentication_generator.rb +17 -0
  544. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/erb/scaffold/templates/partial.html.erb.tt +17 -0
  545. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/generated_attribute.rb +274 -0
  546. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/migration.rb +70 -0
  547. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/app_generator.rb +700 -0
  548. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/Dockerfile.tt +131 -0
  549. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/Gemfile.tt +88 -0
  550. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +11 -0
  551. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +34 -0
  552. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/bin/bundler-audit.tt +5 -0
  553. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/bin/ci.tt +5 -0
  554. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/bin/rubocop.tt +7 -0
  555. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/bin/setup.tt +45 -0
  556. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/bundler-audit.yml.tt +5 -0
  557. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/ci.rb.tt +40 -0
  558. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +90 -0
  559. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +122 -0
  560. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +81 -0
  561. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/databases/trilogy.yml.tt +92 -0
  562. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/deploy.yml.tt +135 -0
  563. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +94 -0
  564. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +107 -0
  565. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt +29 -0
  566. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_1.rb.tt +74 -0
  567. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/puma.rb.tt +44 -0
  568. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/config/storage.yml.tt +27 -0
  569. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/docker-entrypoint.tt +10 -0
  570. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/github/ci.yml.tt +232 -0
  571. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/github/dependabot.yml +12 -0
  572. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/kamal-secrets.tt +20 -0
  573. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/public/400.html +135 -0
  574. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/public/404.html +135 -0
  575. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/public/406-unsupported-browser.html +135 -0
  576. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/public/422.html +135 -0
  577. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/public/500.html +135 -0
  578. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/app/templates/ruby-version.tt +1 -0
  579. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/authentication/authentication_generator.rb +62 -0
  580. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/authentication/templates/app/controllers/passwords_controller.rb.tt +39 -0
  581. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/authentication/templates/app/controllers/sessions_controller.rb.tt +21 -0
  582. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/authentication/templates/app/views/passwords_mailer/reset.html.erb.tt +6 -0
  583. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/authentication/templates/app/views/passwords_mailer/reset.text.erb.tt +4 -0
  584. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/benchmark/USAGE +19 -0
  585. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/benchmark/templates/benchmark.rb.tt +13 -0
  586. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/db/system/change/change_generator.rb +206 -0
  587. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/devcontainer/devcontainer_generator.rb +183 -0
  588. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/devcontainer/templates/devcontainer/Dockerfile.tt +7 -0
  589. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/devcontainer/templates/devcontainer/compose.yaml.tt +47 -0
  590. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/encryption_key_file/encryption_key_file_generator.rb +69 -0
  591. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/master_key/master_key_generator.rb +41 -0
  592. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/plugin/plugin_generator.rb +502 -0
  593. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/plugin/templates/Rakefile.tt +10 -0
  594. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/plugin/templates/github/ci.yml.tt +115 -0
  595. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/plugin/templates/github/dependabot.yml +12 -0
  596. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/rails/script/USAGE +18 -0
  597. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/authentication/authentication_generator.rb +31 -0
  598. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/authentication/templates/test/controllers/passwords_controller_test.rb.tt +67 -0
  599. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/authentication/templates/test/controllers/sessions_controller_test.rb +33 -0
  600. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/authentication/templates/test/models/user_test.rb.tt +8 -0
  601. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/authentication/templates/test/test_helpers/session_test_helper.rb.tt +19 -0
  602. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/model/templates/fixtures.yml.tt +29 -0
  603. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +88 -0
  604. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/test_unit/system/templates/application_system_test_case.rb.tt +5 -0
  605. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators/testing/behavior.rb +113 -0
  606. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/generators.rb +330 -0
  607. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/health_controller.rb +63 -0
  608. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/info.rb +105 -0
  609. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/info_controller.rb +70 -0
  610. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/initializable.rb +139 -0
  611. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/rack/silence_request.rb +36 -0
  612. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/railtie/configurable.rb +35 -0
  613. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/railtie.rb +301 -0
  614. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/source_annotation_extractor.rb +218 -0
  615. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/tasks/statistics.rake +5 -0
  616. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/tasks.rb +15 -0
  617. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/templates/rails/info/notes.html.erb +88 -0
  618. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/templates/rails/mailers/email.html.erb +202 -0
  619. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/templates/rails/welcome/index.html.erb +109 -0
  620. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/test_unit/line_filtering.rb +34 -0
  621. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/test_unit/reporter.rb +127 -0
  622. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails/test_unit/runner.rb +217 -0
  623. data/vendor/bundle/ruby/3.4.0/gems/railties-8.1.2/lib/rails.rb +137 -0
  624. data/vendor/bundle/ruby/3.4.0/specifications/action_text-trix-2.1.16.gemspec +23 -0
  625. data/vendor/bundle/ruby/3.4.0/specifications/actioncable-8.1.2.gemspec +30 -0
  626. data/vendor/bundle/ruby/3.4.0/specifications/actionmailbox-8.1.2.gemspec +31 -0
  627. data/vendor/bundle/ruby/3.4.0/specifications/actionmailer-8.1.2.gemspec +32 -0
  628. data/vendor/bundle/ruby/3.4.0/specifications/actionpack-8.1.2.gemspec +36 -0
  629. data/vendor/bundle/ruby/3.4.0/specifications/actiontext-8.1.2.gemspec +32 -0
  630. data/vendor/bundle/ruby/3.4.0/specifications/actionview-8.1.2.gemspec +33 -0
  631. data/vendor/bundle/ruby/3.4.0/specifications/activejob-8.1.2.gemspec +27 -0
  632. data/vendor/bundle/ruby/3.4.0/specifications/activemodel-8.1.2.gemspec +26 -0
  633. data/vendor/bundle/ruby/3.4.0/specifications/activerecord-8.1.2.gemspec +31 -0
  634. data/vendor/bundle/ruby/3.4.0/specifications/activestorage-8.1.2.gemspec +30 -0
  635. data/vendor/bundle/ruby/3.4.0/specifications/activesupport-8.1.2.gemspec +38 -0
  636. data/vendor/bundle/ruby/3.4.0/specifications/rails-8.1.2.gemspec +38 -0
  637. data/vendor/bundle/ruby/3.4.0/specifications/railties-8.1.2.gemspec +38 -0
  638. metadata +1855 -1830
  639. data/vendor/bundle/ruby/3.4.0/cache/actioncable-8.0.4.gem +0 -0
  640. data/vendor/bundle/ruby/3.4.0/cache/actionmailbox-8.0.4.gem +0 -0
  641. data/vendor/bundle/ruby/3.4.0/cache/actionmailer-8.0.4.gem +0 -0
  642. data/vendor/bundle/ruby/3.4.0/cache/actionpack-8.0.4.gem +0 -0
  643. data/vendor/bundle/ruby/3.4.0/cache/actiontext-8.0.4.gem +0 -0
  644. data/vendor/bundle/ruby/3.4.0/cache/actionview-8.0.4.gem +0 -0
  645. data/vendor/bundle/ruby/3.4.0/cache/activejob-8.0.4.gem +0 -0
  646. data/vendor/bundle/ruby/3.4.0/cache/activemodel-8.0.4.gem +0 -0
  647. data/vendor/bundle/ruby/3.4.0/cache/activerecord-8.0.4.gem +0 -0
  648. data/vendor/bundle/ruby/3.4.0/cache/activestorage-8.0.4.gem +0 -0
  649. data/vendor/bundle/ruby/3.4.0/cache/activesupport-8.0.4.gem +0 -0
  650. data/vendor/bundle/ruby/3.4.0/cache/benchmark-0.5.0.gem +0 -0
  651. data/vendor/bundle/ruby/3.4.0/cache/rails-8.0.4.gem +0 -0
  652. data/vendor/bundle/ruby/3.4.0/cache/railties-8.0.4.gem +0 -0
  653. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/CHANGELOG.md +0 -63
  654. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/channel/base.rb +0 -340
  655. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/channel/broadcasting.rb +0 -50
  656. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/channel/callbacks.rb +0 -76
  657. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/channel/streams.rb +0 -217
  658. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/connection/stream_event_loop.rb +0 -136
  659. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/gem_version.rb +0 -19
  660. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/server/broadcasting.rb +0 -62
  661. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/server/worker.rb +0 -75
  662. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/action_cable/subscription_adapter/base.rb +0 -36
  663. data/vendor/bundle/ruby/3.4.0/gems/actioncable-8.0.4/lib/rails/generators/channel/channel_generator.rb +0 -127
  664. data/vendor/bundle/ruby/3.4.0/gems/actionmailbox-8.0.4/CHANGELOG.md +0 -49
  665. data/vendor/bundle/ruby/3.4.0/gems/actionmailbox-8.0.4/lib/action_mailbox/gem_version.rb +0 -17
  666. data/vendor/bundle/ruby/3.4.0/gems/actionmailbox-8.0.4/lib/action_mailbox/mail_ext/addresses.rb +0 -44
  667. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/CHANGELOG.md +0 -49
  668. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/base.rb +0 -1071
  669. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/callbacks.rb +0 -31
  670. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/form_builder.rb +0 -37
  671. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/gem_version.rb +0 -17
  672. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/log_subscriber.rb +0 -44
  673. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/message_delivery.rb +0 -156
  674. data/vendor/bundle/ruby/3.4.0/gems/actionmailer-8.0.4/lib/action_mailer/railtie.rb +0 -94
  675. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/CHANGELOG.md +0 -292
  676. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/abstract_controller/asset_paths.rb +0 -14
  677. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/abstract_controller/base.rb +0 -288
  678. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/abstract_controller/caching.rb +0 -68
  679. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/abstract_controller/callbacks.rb +0 -265
  680. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/abstract_controller/logger.rb +0 -16
  681. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/api.rb +0 -155
  682. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/base.rb +0 -332
  683. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/caching.rb +0 -49
  684. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/form_builder.rb +0 -55
  685. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/log_subscriber.rb +0 -96
  686. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/allow_browser.rb +0 -133
  687. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/conditional_get.rb +0 -340
  688. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/data_streaming.rb +0 -156
  689. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/exceptions.rb +0 -106
  690. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/flash.rb +0 -67
  691. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/head.rb +0 -67
  692. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/live.rb +0 -400
  693. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/permissions_policy.rb +0 -38
  694. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/rate_limiting.rb +0 -71
  695. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/redirecting.rb +0 -252
  696. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/renderers.rb +0 -180
  697. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/rendering.rb +0 -260
  698. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/request_forgery_protection.rb +0 -669
  699. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/metal/rescue.rb +0 -33
  700. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_controller/railtie.rb +0 -143
  701. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/cache.rb +0 -249
  702. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/filter_parameters.rb +0 -85
  703. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/mime_negotiation.rb +0 -192
  704. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/mime_types.rb +0 -54
  705. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/param_builder.rb +0 -186
  706. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/parameters.rb +0 -119
  707. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/permissions_policy.rb +0 -189
  708. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/query_parser.rb +0 -53
  709. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/request.rb +0 -541
  710. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/response.rb +0 -591
  711. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/http/url.rb +0 -344
  712. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/gtg/simulator.rb +0 -50
  713. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/gtg/transition_table.rb +0 -217
  714. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/nodes/node.rb +0 -208
  715. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/route.rb +0 -189
  716. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/router/utils.rb +0 -105
  717. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/router.rb +0 -151
  718. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/routes.rb +0 -82
  719. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/visitors.rb +0 -267
  720. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/journey/visualizer/fsm.js +0 -159
  721. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/log_subscriber.rb +0 -25
  722. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/cookies.rb +0 -719
  723. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/debug_exceptions.rb +0 -208
  724. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/debug_view.rb +0 -68
  725. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/exception_wrapper.rb +0 -344
  726. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/executor.rb +0 -35
  727. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/public_exceptions.rb +0 -68
  728. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/remote_ip.rb +0 -198
  729. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/session/cache_store.rb +0 -66
  730. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/_source.html.erb +0 -33
  731. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb +0 -62
  732. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +0 -12
  733. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb +0 -35
  734. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +0 -24
  735. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +0 -16
  736. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/layout.erb +0 -284
  737. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.html.erb +0 -23
  738. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb +0 -11
  739. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb +0 -32
  740. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb +0 -20
  741. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb +0 -6
  742. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/railtie.rb +0 -83
  743. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/routing/inspector.rb +0 -323
  744. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/routing/mapper.rb +0 -2394
  745. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/routing/redirection.rb +0 -218
  746. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/routing/route_set.rb +0 -957
  747. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/system_test_case.rb +0 -206
  748. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb +0 -164
  749. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/testing/assertions/response.rb +0 -124
  750. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch/testing/assertions/routing.rb +0 -347
  751. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_dispatch.rb +0 -153
  752. data/vendor/bundle/ruby/3.4.0/gems/actionpack-8.0.4/lib/action_pack/gem_version.rb +0 -19
  753. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/CHANGELOG.md +0 -97
  754. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/assets/javascripts/actiontext.esm.js +0 -911
  755. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/assets/javascripts/actiontext.js +0 -884
  756. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/assets/javascripts/trix.js +0 -13743
  757. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/helpers/action_text/tag_helper.rb +0 -106
  758. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/javascript/actiontext/attachment_upload.js +0 -62
  759. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/javascript/actiontext/index.js +0 -10
  760. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/app/models/action_text/rich_text.rb +0 -93
  761. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/content.rb +0 -197
  762. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/engine.rb +0 -94
  763. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/fixture_set.rb +0 -68
  764. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/gem_version.rb +0 -19
  765. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/plain_text_conversion.rb +0 -119
  766. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/rendering.rb +0 -35
  767. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/action_text/system_test_helper.rb +0 -61
  768. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/lib/generators/action_text/install/install_generator.rb +0 -84
  769. data/vendor/bundle/ruby/3.4.0/gems/actiontext-8.0.4/package.json +0 -40
  770. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/CHANGELOG.md +0 -136
  771. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/base.rb +0 -313
  772. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/buffers.rb +0 -165
  773. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/dependency_tracker/erb_tracker.rb +0 -163
  774. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/dependency_tracker.rb +0 -41
  775. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/gem_version.rb +0 -17
  776. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/asset_tag_helper.rb +0 -680
  777. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/capture_helper.rb +0 -236
  778. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/controller_helper.rb +0 -42
  779. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/date_helper.rb +0 -1273
  780. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/form_helper.rb +0 -2767
  781. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/form_options_helper.rb +0 -931
  782. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/form_tag_helper.rb +0 -1089
  783. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/javascript_helper.rb +0 -96
  784. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/number_helper.rb +0 -165
  785. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tag_helper.rb +0 -605
  786. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tags/check_box.rb +0 -65
  787. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tags/datetime_field.rb +0 -39
  788. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tags/file_field.rb +0 -26
  789. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tags/hidden_field.rb +0 -14
  790. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tags/select.rb +0 -45
  791. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/tags/select_renderer.rb +0 -56
  792. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/translation_helper.rb +0 -161
  793. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/helpers/url_helper.rb +0 -812
  794. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/locale/en.yml +0 -56
  795. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/log_subscriber.rb +0 -132
  796. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/railtie.rb +0 -132
  797. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/record_identifier.rb +0 -118
  798. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/renderer/partial_renderer.rb +0 -267
  799. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/template/error.rb +0 -275
  800. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/template/handlers/erb.rb +0 -165
  801. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/template.rb +0 -590
  802. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view/test_case.rb +0 -448
  803. data/vendor/bundle/ruby/3.4.0/gems/actionview-8.0.4/lib/action_view.rb +0 -105
  804. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/CHANGELOG.md +0 -71
  805. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/README.md +0 -131
  806. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/arguments.rb +0 -197
  807. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/base.rb +0 -79
  808. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/configured_job.rb +0 -18
  809. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/core.rb +0 -210
  810. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/enqueue_after_transaction_commit.rb +0 -44
  811. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/enqueuing.rb +0 -140
  812. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/exceptions.rb +0 -207
  813. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/gem_version.rb +0 -17
  814. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/instrumentation.rb +0 -52
  815. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/log_subscriber.rb +0 -216
  816. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/queue_adapters/abstract_adapter.rb +0 -19
  817. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/queue_adapters/async_adapter.rb +0 -116
  818. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/queue_adapters/sidekiq_adapter.rb +0 -75
  819. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/queue_adapters/sucker_punch_adapter.rb +0 -56
  820. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/queue_adapters/test_adapter.rb +0 -86
  821. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/queue_adapters.rb +0 -140
  822. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/railtie.rb +0 -123
  823. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/big_decimal_serializer.rb +0 -22
  824. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/date_serializer.rb +0 -20
  825. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/date_time_serializer.rb +0 -16
  826. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/duration_serializer.rb +0 -25
  827. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/module_serializer.rb +0 -21
  828. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/object_serializer.rb +0 -55
  829. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/range_serializer.rb +0 -23
  830. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/symbol_serializer.rb +0 -20
  831. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/time_serializer.rb +0 -16
  832. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers/time_with_zone_serializer.rb +0 -25
  833. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/serializers.rb +0 -70
  834. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/timezones.rb +0 -13
  835. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job/translation.rb +0 -13
  836. data/vendor/bundle/ruby/3.4.0/gems/activejob-8.0.4/lib/active_job.rb +0 -59
  837. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/CHANGELOG.md +0 -134
  838. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/attribute/user_provided_default.rb +0 -55
  839. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/attribute.rb +0 -277
  840. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/attribute_methods.rb +0 -592
  841. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/attribute_mutation_tracker.rb +0 -189
  842. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/attribute_set.rb +0 -118
  843. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/dirty.rb +0 -422
  844. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/error.rb +0 -208
  845. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/errors.rb +0 -547
  846. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/gem_version.rb +0 -17
  847. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/lint.rb +0 -118
  848. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/naming.rb +0 -359
  849. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/nested_error.rb +0 -22
  850. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/railtie.rb +0 -24
  851. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/secure_password.rb +0 -231
  852. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/big_integer.rb +0 -36
  853. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/boolean.rb +0 -48
  854. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/date.rb +0 -78
  855. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/date_time.rb +0 -88
  856. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/decimal.rb +0 -107
  857. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/float.rb +0 -64
  858. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/helpers.rb +0 -7
  859. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/immutable_string.rb +0 -71
  860. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/integer.rb +0 -113
  861. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/string.rb +0 -43
  862. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/type/value.rb +0 -157
  863. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/validations/callbacks.rb +0 -119
  864. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model/validations.rb +0 -510
  865. data/vendor/bundle/ruby/3.4.0/gems/activemodel-8.0.4/lib/active_model.rb +0 -84
  866. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/CHANGELOG.md +0 -848
  867. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/README.rdoc +0 -219
  868. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/association_relation.rb +0 -51
  869. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/association.rb +0 -421
  870. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/builder/association.rb +0 -170
  871. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/builder/belongs_to.rb +0 -160
  872. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/builder/collection_association.rb +0 -80
  873. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/builder/has_one.rb +0 -61
  874. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/builder/singular_association.rb +0 -48
  875. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/collection_proxy.rb +0 -1163
  876. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/errors.rb +0 -265
  877. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/join_dependency.rb +0 -301
  878. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/preloader/batch.rb +0 -48
  879. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations/preloader/branch.rb +0 -153
  880. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/associations.rb +0 -1909
  881. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/attribute_methods/serialization.rb +0 -232
  882. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/attribute_methods/time_zone_conversion.rb +0 -84
  883. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/attributes.rb +0 -317
  884. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/base.rb +0 -338
  885. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/coders/json.rb +0 -15
  886. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/connection_handler.rb +0 -293
  887. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +0 -210
  888. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +0 -78
  889. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/connection_pool.rb +0 -958
  890. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/database_statements.rb +0 -747
  891. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/query_cache.rb +0 -332
  892. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/quoting.rb +0 -239
  893. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/schema_creation.rb +0 -189
  894. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/schema_definitions.rb +0 -970
  895. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/schema_dumper.rb +0 -106
  896. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/schema_statements.rb +0 -1902
  897. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract/transaction.rb +0 -676
  898. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract_adapter.rb +0 -1236
  899. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +0 -1027
  900. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/column.rb +0 -122
  901. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/mysql/database_statements.rb +0 -95
  902. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/mysql/schema_creation.rb +0 -106
  903. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/mysql/schema_definitions.rb +0 -106
  904. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/mysql/schema_statements.rb +0 -307
  905. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/mysql2/database_statements.rb +0 -142
  906. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/mysql2_adapter.rb +0 -203
  907. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/column.rb +0 -82
  908. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/database_statements.rb +0 -238
  909. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/oid/array.rb +0 -91
  910. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +0 -125
  911. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/quoting.rb +0 -238
  912. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/schema_creation.rb +0 -160
  913. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +0 -388
  914. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +0 -128
  915. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql/schema_statements.rb +0 -1163
  916. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/postgresql_adapter.rb +0 -1189
  917. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/schema_cache.rb +0 -478
  918. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/sqlite3/database_statements.rb +0 -149
  919. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/sqlite3/quoting.rb +0 -129
  920. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +0 -47
  921. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +0 -223
  922. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/sqlite3_adapter.rb +0 -849
  923. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/trilogy/database_statements.rb +0 -69
  924. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters/trilogy_adapter.rb +0 -212
  925. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_adapters.rb +0 -120
  926. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/connection_handling.rb +0 -417
  927. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/core.rb +0 -896
  928. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/counter_cache.rb +0 -230
  929. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/database_configurations/database_config.rb +0 -108
  930. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/database_configurations/hash_config.rb +0 -186
  931. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/database_configurations/url_config.rb +0 -78
  932. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/database_configurations.rb +0 -309
  933. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/delegated_type.rb +0 -279
  934. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/dynamic_matchers.rb +0 -121
  935. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/encryption/encryptable_record.rb +0 -230
  936. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/encryption/encrypted_attribute_type.rb +0 -184
  937. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/encryption/encryptor.rb +0 -179
  938. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/encryption/scheme.rb +0 -107
  939. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/enum.rb +0 -412
  940. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/errors.rb +0 -614
  941. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/explain.rb +0 -63
  942. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/explain_registry.rb +0 -37
  943. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/explain_subscriber.rb +0 -34
  944. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/fixtures.rb +0 -849
  945. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/gem_version.rb +0 -17
  946. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/inheritance.rb +0 -366
  947. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/insert_all.rb +0 -328
  948. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/locking/optimistic.rb +0 -228
  949. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/locking/pessimistic.rb +0 -102
  950. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/log_subscriber.rb +0 -143
  951. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/middleware/shard_selector.rb +0 -62
  952. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/migration/command_recorder.rb +0 -409
  953. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/migration/compatibility.rb +0 -490
  954. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/migration.rb +0 -1621
  955. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/model_schema.rb +0 -633
  956. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/nested_attributes.rb +0 -633
  957. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/normalization.rb +0 -163
  958. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/persistence.rb +0 -968
  959. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/query_cache.rb +0 -55
  960. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/query_logs.rb +0 -245
  961. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/railtie.rb +0 -417
  962. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/railties/controller_runtime.rb +0 -65
  963. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/railties/databases.rake +0 -618
  964. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/railties/job_runtime.rb +0 -23
  965. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/reflection.rb +0 -1282
  966. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/batches.rb +0 -491
  967. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/calculations.rb +0 -680
  968. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/delegation.rb +0 -154
  969. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/finder_methods.rb +0 -662
  970. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/predicate_builder/association_query_value.rb +0 -78
  971. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +0 -60
  972. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/predicate_builder.rb +0 -189
  973. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/query_attribute.rb +0 -68
  974. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/query_methods.rb +0 -2280
  975. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation/where_clause.rb +0 -224
  976. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/relation.rb +0 -1512
  977. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/result.rb +0 -250
  978. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/runtime_registry.rb +0 -82
  979. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/sanitization.rb +0 -254
  980. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/schema_dumper.rb +0 -382
  981. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/scoping.rb +0 -136
  982. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/signed_id.rb +0 -138
  983. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/statement_cache.rb +0 -164
  984. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/store.rb +0 -299
  985. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/table_metadata.rb +0 -83
  986. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/tasks/database_tasks.rb +0 -681
  987. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/tasks/mysql_database_tasks.rb +0 -120
  988. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/tasks/postgresql_database_tasks.rb +0 -155
  989. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/tasks/sqlite_database_tasks.rb +0 -89
  990. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/test_databases.rb +0 -24
  991. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/test_fixtures.rb +0 -321
  992. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/testing/query_assertions.rb +0 -121
  993. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/timestamp.rb +0 -177
  994. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/transaction.rb +0 -132
  995. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/transactions.rb +0 -524
  996. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/type/hash_lookup_type_map.rb +0 -57
  997. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/type/internal/timezone.rb +0 -22
  998. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/type/json.rb +0 -30
  999. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/type/serialized.rb +0 -76
  1000. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/type/type_map.rb +0 -58
  1001. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/type_caster/connection.rb +0 -33
  1002. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record/validations/associated.rb +0 -65
  1003. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/active_record.rb +0 -574
  1004. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/alias_predication.rb +0 -9
  1005. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/crud.rb +0 -50
  1006. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/nodes/count.rb +0 -12
  1007. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/nodes/function.rb +0 -45
  1008. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/nodes/named_function.rb +0 -23
  1009. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/nodes/node.rb +0 -161
  1010. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/nodes.rb +0 -75
  1011. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/select_manager.rb +0 -280
  1012. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/visitors/dot.rb +0 -301
  1013. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/visitors/postgresql.rb +0 -99
  1014. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/visitors/sqlite.rb +0 -63
  1015. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel/visitors/to_sql.rb +0 -1035
  1016. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/arel.rb +0 -73
  1017. data/vendor/bundle/ruby/3.4.0/gems/activerecord-8.0.4/lib/rails/generators/active_record/application_record/USAGE +0 -8
  1018. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/CHANGELOG.md +0 -87
  1019. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/README.md +0 -208
  1020. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/app/assets/javascripts/activestorage.esm.js +0 -848
  1021. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/app/assets/javascripts/activestorage.js +0 -830
  1022. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/app/javascript/activestorage/direct_upload_controller.js +0 -67
  1023. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/app/models/active_storage/filename.rb +0 -75
  1024. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/app/models/active_storage/variant.rb +0 -118
  1025. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/app/models/active_storage/variation.rb +0 -87
  1026. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/analyzer/image_analyzer/image_magick.rb +0 -41
  1027. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/analyzer/image_analyzer/vips.rb +0 -47
  1028. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/analyzer/image_analyzer.rb +0 -29
  1029. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/attached.rb +0 -27
  1030. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/engine.rb +0 -208
  1031. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/gem_version.rb +0 -17
  1032. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/log_subscriber.rb +0 -76
  1033. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/service/azure_storage_service.rb +0 -201
  1034. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/service/configurator.rb +0 -36
  1035. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/service/gcs_service.rb +0 -232
  1036. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/service/mirror_service.rb +0 -93
  1037. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/service/registry.rb +0 -32
  1038. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/service.rb +0 -180
  1039. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage/transformers/image_processing_transformer.rb +0 -110
  1040. data/vendor/bundle/ruby/3.4.0/gems/activestorage-8.0.4/lib/active_storage.rb +0 -371
  1041. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/CHANGELOG.md +0 -336
  1042. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/backtrace_cleaner.rb +0 -163
  1043. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/cache/mem_cache_store.rb +0 -288
  1044. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/cache/memory_store.rb +0 -262
  1045. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/cache/redis_cache_store.rb +0 -492
  1046. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/cache/strategy/local_cache.rb +0 -237
  1047. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/cache/strategy/local_cache_middleware.rb +0 -45
  1048. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/cache.rb +0 -1107
  1049. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/callbacks.rb +0 -948
  1050. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/concurrency/load_interlock_aware_monitor.rb +0 -72
  1051. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/configurable.rb +0 -159
  1052. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/array.rb +0 -9
  1053. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/benchmark.rb +0 -14
  1054. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/big_decimal.rb +0 -3
  1055. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/class.rb +0 -4
  1056. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/date.rb +0 -7
  1057. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/date_and_time/compatibility.rb +0 -58
  1058. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/date_time/compatibility.rb +0 -18
  1059. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/date_time.rb +0 -7
  1060. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/digest.rb +0 -3
  1061. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/erb/util.rb +0 -201
  1062. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/file.rb +0 -3
  1063. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/hash.rb +0 -10
  1064. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/integer.rb +0 -5
  1065. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/kernel.rb +0 -5
  1066. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/module.rb +0 -13
  1067. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/numeric.rb +0 -5
  1068. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/object/json.rb +0 -260
  1069. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/object/to_query.rb +0 -88
  1070. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/object.rb +0 -17
  1071. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/pathname.rb +0 -4
  1072. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/range/each.rb +0 -24
  1073. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/range.rb +0 -7
  1074. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/string/multibyte.rb +0 -58
  1075. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/string/output_safety.rb +0 -228
  1076. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/string.rb +0 -15
  1077. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/symbol.rb +0 -3
  1078. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/time/calculations.rb +0 -386
  1079. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/time/compatibility.rb +0 -40
  1080. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext/time.rb +0 -7
  1081. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/core_ext.rb +0 -5
  1082. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/current_attributes/test_helper.rb +0 -13
  1083. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/current_attributes.rb +0 -240
  1084. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/delegation.rb +0 -200
  1085. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/dependencies/interlock.rb +0 -49
  1086. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/dependencies.rb +0 -97
  1087. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/deprecation/reporting.rb +0 -160
  1088. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/deprecation.rb +0 -81
  1089. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/error_reporter.rb +0 -274
  1090. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/evented_file_update_checker.rb +0 -181
  1091. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/execution_context.rb +0 -53
  1092. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/file_update_checker.rb +0 -164
  1093. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/gem_version.rb +0 -17
  1094. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/gzip.rb +0 -40
  1095. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/hash_with_indifferent_access.rb +0 -444
  1096. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/i18n_railtie.rb +0 -140
  1097. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/inflector/inflections.rb +0 -273
  1098. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/inflector/methods.rb +0 -387
  1099. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/inflector/transliterate.rb +0 -149
  1100. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/isolated_execution_state.rb +0 -74
  1101. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/json/decoding.rb +0 -78
  1102. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/json/encoding.rb +0 -138
  1103. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/log_subscriber.rb +0 -192
  1104. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/message_encryptors.rb +0 -141
  1105. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/message_pack/extensions.rb +0 -305
  1106. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/message_verifiers.rb +0 -137
  1107. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/messages/rotation_coordinator.rb +0 -93
  1108. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/messages/rotator.rb +0 -64
  1109. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/multibyte/chars.rb +0 -181
  1110. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/multibyte.rb +0 -23
  1111. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/notifications/fanout.rb +0 -445
  1112. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/railtie.rb +0 -163
  1113. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/subscriber.rb +0 -146
  1114. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/syntax_error_proxy.rb +0 -60
  1115. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/test_case.rb +0 -304
  1116. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/assertions.rb +0 -339
  1117. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/autorun.rb +0 -5
  1118. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/error_reporter_assertions.rb +0 -107
  1119. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/parallelization/worker.rb +0 -103
  1120. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/parallelization.rb +0 -66
  1121. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/tests_without_assertions.rb +0 -19
  1122. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/testing/time_helpers.rb +0 -269
  1123. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/time_with_zone.rb +0 -609
  1124. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/values/time_zone.rb +0 -614
  1125. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support/xml_mini.rb +0 -213
  1126. data/vendor/bundle/ruby/3.4.0/gems/activesupport-8.0.4/lib/active_support.rb +0 -143
  1127. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/BSDL +0 -22
  1128. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/COPYING +0 -56
  1129. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/Gemfile +0 -9
  1130. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/README.md +0 -138
  1131. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/Rakefile +0 -8
  1132. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/benchmark.gemspec +0 -32
  1133. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/bin/console +0 -14
  1134. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/bin/setup +0 -8
  1135. data/vendor/bundle/ruby/3.4.0/gems/benchmark-0.5.0/lib/benchmark.rb +0 -608
  1136. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/CHANGELOG.md +0 -294
  1137. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/minitest/rails_plugin.rb +0 -140
  1138. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/application/bootstrap.rb +0 -115
  1139. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/application/configuration.rb +0 -647
  1140. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/application/default_middleware_stack.rb +0 -140
  1141. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/application/finisher.rb +0 -237
  1142. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/application/routes_reloader.rb +0 -83
  1143. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/application.rb +0 -665
  1144. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/code_statistics.rb +0 -159
  1145. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/command/base.rb +0 -185
  1146. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/command/environment_argument.rb +0 -56
  1147. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/command.rb +0 -166
  1148. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/commands/app/update_command.rb +0 -98
  1149. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/commands/console/irb_console.rb +0 -130
  1150. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/commands/credentials/credentials_command.rb +0 -139
  1151. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/commands/devcontainer/devcontainer_command.rb +0 -40
  1152. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/commands/encrypted/encrypted_command.rb +0 -98
  1153. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/console/methods.rb +0 -7
  1154. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/engine.rb +0 -759
  1155. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/gem_version.rb +0 -17
  1156. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/actions.rb +0 -532
  1157. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/app_base.rb +0 -794
  1158. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/database.rb +0 -287
  1159. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/erb/authentication/authentication_generator.rb +0 -15
  1160. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/erb/scaffold/templates/partial.html.erb.tt +0 -17
  1161. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/generated_attribute.rb +0 -274
  1162. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/migration.rb +0 -71
  1163. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/app_generator.rb +0 -687
  1164. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/Dockerfile.tt +0 -126
  1165. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/Gemfile.tt +0 -83
  1166. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +0 -6
  1167. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +0 -33
  1168. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/bin/setup.tt +0 -44
  1169. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +0 -82
  1170. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +0 -114
  1171. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +0 -82
  1172. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/databases/trilogy.yml.tt +0 -84
  1173. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/deploy.yml.tt +0 -128
  1174. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +0 -86
  1175. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +0 -99
  1176. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt +0 -25
  1177. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_0.rb.tt +0 -30
  1178. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/puma.rb.tt +0 -43
  1179. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/config/storage.yml.tt +0 -34
  1180. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/docker-entrypoint.tt +0 -16
  1181. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/github/ci.yml.tt +0 -146
  1182. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/github/dependabot.yml +0 -12
  1183. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/kamal-secrets.tt +0 -17
  1184. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/public/400.html +0 -114
  1185. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/public/404.html +0 -114
  1186. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/public/406-unsupported-browser.html +0 -114
  1187. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/public/422.html +0 -114
  1188. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/public/500.html +0 -114
  1189. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/app/templates/ruby-version.tt +0 -1
  1190. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/authentication/authentication_generator.rb +0 -60
  1191. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/authentication/templates/app/controllers/passwords_controller.rb.tt +0 -33
  1192. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/authentication/templates/app/controllers/sessions_controller.rb.tt +0 -21
  1193. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/authentication/templates/app/views/passwords_mailer/reset.html.erb.tt +0 -4
  1194. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/authentication/templates/app/views/passwords_mailer/reset.text.erb.tt +0 -2
  1195. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/benchmark/USAGE +0 -19
  1196. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/benchmark/templates/benchmark.rb.tt +0 -15
  1197. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/db/system/change/change_generator.rb +0 -206
  1198. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/devcontainer/devcontainer_generator.rb +0 -176
  1199. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/devcontainer/templates/devcontainer/Dockerfile.tt +0 -3
  1200. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/devcontainer/templates/devcontainer/compose.yaml.tt +0 -47
  1201. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/encryption_key_file/encryption_key_file_generator.rb +0 -57
  1202. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/master_key/master_key_generator.rb +0 -53
  1203. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/plugin/plugin_generator.rb +0 -501
  1204. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/plugin/templates/Rakefile.tt +0 -14
  1205. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/plugin/templates/bin/rubocop.tt +0 -7
  1206. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/plugin/templates/github/ci.yml.tt +0 -104
  1207. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/plugin/templates/github/dependabot.yml +0 -12
  1208. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/rails/script/USAGE +0 -18
  1209. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/authentication/authentication_generator.rb +0 -18
  1210. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/authentication/templates/test/models/user_test.rb.tt +0 -7
  1211. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/model/templates/fixtures.yml.tt +0 -29
  1212. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/plugin/plugin_generator.rb +0 -15
  1213. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +0 -7
  1214. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +0 -2
  1215. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +0 -82
  1216. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators/testing/behavior.rb +0 -116
  1217. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/generators.rb +0 -328
  1218. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/health_controller.rb +0 -57
  1219. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/info.rb +0 -106
  1220. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/info_controller.rb +0 -71
  1221. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/initializable.rb +0 -95
  1222. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/rack/silence_request.rb +0 -33
  1223. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/railtie/configurable.rb +0 -36
  1224. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/railtie.rb +0 -302
  1225. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/source_annotation_extractor.rb +0 -214
  1226. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/tasks/statistics.rake +0 -23
  1227. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/tasks.rb +0 -17
  1228. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/templates/rails/info/notes.html.erb +0 -65
  1229. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/templates/rails/mailers/email.html.erb +0 -201
  1230. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/templates/rails/welcome/index.html.erb +0 -93
  1231. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/test_unit/line_filtering.rb +0 -13
  1232. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/test_unit/reporter.rb +0 -121
  1233. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails/test_unit/runner.rb +0 -214
  1234. data/vendor/bundle/ruby/3.4.0/gems/railties-8.0.4/lib/rails.rb +0 -130
  1235. data/vendor/bundle/ruby/3.4.0/specifications/actioncable-8.0.4.gemspec +0 -30
  1236. data/vendor/bundle/ruby/3.4.0/specifications/actionmailbox-8.0.4.gemspec +0 -31
  1237. data/vendor/bundle/ruby/3.4.0/specifications/actionmailer-8.0.4.gemspec +0 -32
  1238. data/vendor/bundle/ruby/3.4.0/specifications/actionpack-8.0.4.gemspec +0 -36
  1239. data/vendor/bundle/ruby/3.4.0/specifications/actiontext-8.0.4.gemspec +0 -31
  1240. data/vendor/bundle/ruby/3.4.0/specifications/actionview-8.0.4.gemspec +0 -33
  1241. data/vendor/bundle/ruby/3.4.0/specifications/activejob-8.0.4.gemspec +0 -27
  1242. data/vendor/bundle/ruby/3.4.0/specifications/activemodel-8.0.4.gemspec +0 -26
  1243. data/vendor/bundle/ruby/3.4.0/specifications/activerecord-8.0.4.gemspec +0 -31
  1244. data/vendor/bundle/ruby/3.4.0/specifications/activestorage-8.0.4.gemspec +0 -30
  1245. data/vendor/bundle/ruby/3.4.0/specifications/activesupport-8.0.4.gemspec +0 -38
  1246. data/vendor/bundle/ruby/3.4.0/specifications/benchmark-0.5.0.gemspec +0 -23
  1247. data/vendor/bundle/ruby/3.4.0/specifications/rails-8.0.4.gemspec +0 -38
  1248. data/vendor/bundle/ruby/3.4.0/specifications/railties-8.0.4.gemspec +0 -38
  1249. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → action_text-trix-2.1.16}/app/assets/stylesheets/trix.css +0 -0
  1250. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/MIT-LICENSE +0 -0
  1251. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/README.md +0 -0
  1252. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/app/assets/javascripts/action_cable.js +0 -0
  1253. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/app/assets/javascripts/actioncable.esm.js +0 -0
  1254. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/app/assets/javascripts/actioncable.js +0 -0
  1255. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/channel/naming.rb +0 -0
  1256. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/channel/periodic_timers.rb +0 -0
  1257. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/channel/test_case.rb +0 -0
  1258. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/authorization.rb +0 -0
  1259. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/base.rb +0 -0
  1260. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/callbacks.rb +0 -0
  1261. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/client_socket.rb +0 -0
  1262. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/identification.rb +0 -0
  1263. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/internal_channel.rb +0 -0
  1264. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/message_buffer.rb +0 -0
  1265. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/stream.rb +0 -0
  1266. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/subscriptions.rb +0 -0
  1267. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/tagged_logger_proxy.rb +0 -0
  1268. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/test_case.rb +0 -0
  1269. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/connection/web_socket.rb +0 -0
  1270. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/deprecator.rb +0 -0
  1271. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/engine.rb +0 -0
  1272. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/helpers/action_cable_helper.rb +0 -0
  1273. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/remote_connections.rb +0 -0
  1274. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/server/base.rb +0 -0
  1275. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/server/configuration.rb +0 -0
  1276. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/server/connections.rb +0 -0
  1277. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/server/worker/active_record_connection_management.rb +0 -0
  1278. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/async.rb +0 -0
  1279. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/channel_prefix.rb +0 -0
  1280. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/inline.rb +0 -0
  1281. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/postgresql.rb +0 -0
  1282. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/redis.rb +0 -0
  1283. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/subscriber_map.rb +0 -0
  1284. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/subscription_adapter/test.rb +0 -0
  1285. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/test_case.rb +0 -0
  1286. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/test_helper.rb +0 -0
  1287. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable/version.rb +0 -0
  1288. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/action_cable.rb +0 -0
  1289. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/USAGE +0 -0
  1290. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/templates/application_cable/channel.rb.tt +0 -0
  1291. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/templates/application_cable/connection.rb.tt +0 -0
  1292. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/templates/channel.rb.tt +0 -0
  1293. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/templates/javascript/channel.js.tt +0 -0
  1294. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/templates/javascript/consumer.js.tt +0 -0
  1295. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/channel/templates/javascript/index.js.tt +0 -0
  1296. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/test_unit/channel_generator.rb +0 -0
  1297. /data/vendor/bundle/ruby/3.4.0/gems/{actioncable-8.0.4 → actioncable-8.1.2}/lib/rails/generators/test_unit/templates/channel_test.rb.tt +0 -0
  1298. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/MIT-LICENSE +0 -0
  1299. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/README.md +0 -0
  1300. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/action_mailbox/base_controller.rb +0 -0
  1301. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/action_mailbox/ingresses/mailgun/inbound_emails_controller.rb +0 -0
  1302. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/action_mailbox/ingresses/mandrill/inbound_emails_controller.rb +0 -0
  1303. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/action_mailbox/ingresses/postmark/inbound_emails_controller.rb +0 -0
  1304. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/action_mailbox/ingresses/relay/inbound_emails_controller.rb +0 -0
  1305. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/action_mailbox/ingresses/sendgrid/inbound_emails_controller.rb +0 -0
  1306. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/rails/conductor/action_mailbox/inbound_emails/sources_controller.rb +0 -0
  1307. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb +0 -0
  1308. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/rails/conductor/action_mailbox/incinerates_controller.rb +0 -0
  1309. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb +0 -0
  1310. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/controllers/rails/conductor/base_controller.rb +0 -0
  1311. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/jobs/action_mailbox/incineration_job.rb +0 -0
  1312. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/jobs/action_mailbox/routing_job.rb +0 -0
  1313. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/models/action_mailbox/inbound_email/incineratable/incineration.rb +0 -0
  1314. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/models/action_mailbox/inbound_email/incineratable.rb +0 -0
  1315. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/models/action_mailbox/inbound_email/message_id.rb +0 -0
  1316. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/models/action_mailbox/inbound_email/routable.rb +0 -0
  1317. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/models/action_mailbox/inbound_email.rb +0 -0
  1318. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/models/action_mailbox/record.rb +0 -0
  1319. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/views/layouts/rails/conductor.html.erb +0 -0
  1320. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/views/rails/conductor/action_mailbox/inbound_emails/index.html.erb +0 -0
  1321. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/views/rails/conductor/action_mailbox/inbound_emails/new.html.erb +0 -0
  1322. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/views/rails/conductor/action_mailbox/inbound_emails/show.html.erb +0 -0
  1323. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/app/views/rails/conductor/action_mailbox/inbound_emails/sources/new.html.erb +0 -0
  1324. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/config/routes.rb +0 -0
  1325. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/db/migrate/20180917164000_create_action_mailbox_tables.rb +0 -0
  1326. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/base.rb +0 -0
  1327. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/callbacks.rb +0 -0
  1328. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/deprecator.rb +0 -0
  1329. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/engine.rb +0 -0
  1330. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/mail_ext/address_equality.rb +0 -0
  1331. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/mail_ext/address_wrapping.rb +0 -0
  1332. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/mail_ext/from_source.rb +0 -0
  1333. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/mail_ext/recipients.rb +0 -0
  1334. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/mail_ext.rb +0 -0
  1335. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/relayer.rb +0 -0
  1336. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/router/route.rb +0 -0
  1337. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/router.rb +0 -0
  1338. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/routing.rb +0 -0
  1339. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/test_case.rb +0 -0
  1340. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/test_helper.rb +0 -0
  1341. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox/version.rb +0 -0
  1342. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/action_mailbox.rb +0 -0
  1343. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/generators/action_mailbox/install/install_generator.rb +0 -0
  1344. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/rails/generators/mailbox/USAGE +0 -0
  1345. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/rails/generators/mailbox/mailbox_generator.rb +0 -0
  1346. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/rails/generators/mailbox/templates/application_mailbox.rb.tt +0 -0
  1347. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/rails/generators/mailbox/templates/mailbox.rb.tt +0 -0
  1348. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/rails/generators/test_unit/mailbox_generator.rb +0 -0
  1349. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/rails/generators/test_unit/templates/mailbox_test.rb.tt +0 -0
  1350. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/tasks/ingress.rake +0 -0
  1351. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailbox-8.0.4 → actionmailbox-8.1.2}/lib/tasks/install.rake +0 -0
  1352. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/MIT-LICENSE +0 -0
  1353. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/README.rdoc +0 -0
  1354. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/collector.rb +0 -0
  1355. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/delivery_methods.rb +0 -0
  1356. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/deprecator.rb +0 -0
  1357. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/inline_preview_interceptor.rb +0 -0
  1358. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/mail_delivery_job.rb +0 -0
  1359. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/mail_helper.rb +0 -0
  1360. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/parameterized.rb +0 -0
  1361. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/preview.rb +0 -0
  1362. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/queued_delivery.rb +0 -0
  1363. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/rescuable.rb +0 -0
  1364. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/test_case.rb +0 -0
  1365. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/test_helper.rb +0 -0
  1366. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer/version.rb +0 -0
  1367. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/action_mailer.rb +0 -0
  1368. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/rails/generators/mailer/USAGE +0 -0
  1369. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/rails/generators/mailer/mailer_generator.rb +0 -0
  1370. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/rails/generators/mailer/templates/application_mailer.rb.tt +0 -0
  1371. /data/vendor/bundle/ruby/3.4.0/gems/{actionmailer-8.0.4 → actionmailer-8.1.2}/lib/rails/generators/mailer/templates/mailer.rb.tt +0 -0
  1372. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/MIT-LICENSE +0 -0
  1373. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/README.rdoc +0 -0
  1374. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/caching/fragments.rb +0 -0
  1375. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/collector.rb +0 -0
  1376. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/deprecator.rb +0 -0
  1377. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/error.rb +0 -0
  1378. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/helpers.rb +0 -0
  1379. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/railties/routes_helpers.rb +0 -0
  1380. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/rendering.rb +0 -0
  1381. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/translation.rb +0 -0
  1382. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller/url_for.rb +0 -0
  1383. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/abstract_controller.rb +0 -0
  1384. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/api/api_rendering.rb +0 -0
  1385. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/deprecator.rb +0 -0
  1386. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/basic_implicit_render.rb +0 -0
  1387. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/content_security_policy.rb +0 -0
  1388. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/cookies.rb +0 -0
  1389. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/default_headers.rb +0 -0
  1390. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/etag_with_flash.rb +0 -0
  1391. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/etag_with_template_digest.rb +0 -0
  1392. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/helpers.rb +0 -0
  1393. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/http_authentication.rb +0 -0
  1394. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/implicit_render.rb +0 -0
  1395. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/instrumentation.rb +0 -0
  1396. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/logging.rb +0 -0
  1397. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/mime_responds.rb +0 -0
  1398. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/parameter_encoding.rb +0 -0
  1399. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/params_wrapper.rb +0 -0
  1400. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/streaming.rb +0 -0
  1401. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/strong_parameters.rb +0 -0
  1402. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/testing.rb +0 -0
  1403. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal/url_for.rb +0 -0
  1404. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/metal.rb +0 -0
  1405. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/railties/helpers.rb +0 -0
  1406. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/renderer.rb +0 -0
  1407. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/template_assertions.rb +0 -0
  1408. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller/test_case.rb +0 -0
  1409. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_controller.rb +0 -0
  1410. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/constants.rb +0 -0
  1411. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/deprecator.rb +0 -0
  1412. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/content_disposition.rb +0 -0
  1413. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/content_security_policy.rb +0 -0
  1414. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/filter_redirect.rb +0 -0
  1415. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/headers.rb +0 -0
  1416. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/mime_type.rb +0 -0
  1417. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/param_error.rb +0 -0
  1418. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/rack_cache.rb +0 -0
  1419. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/http/upload.rb +0 -0
  1420. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/formatter.rb +0 -0
  1421. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/gtg/builder.rb +0 -0
  1422. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/nfa/dot.rb +0 -0
  1423. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/parser.rb +0 -0
  1424. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/path/pattern.rb +0 -0
  1425. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/scanner.rb +0 -0
  1426. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/visualizer/fsm.css +0 -0
  1427. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey/visualizer/index.html.erb +0 -0
  1428. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/journey.rb +0 -0
  1429. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/actionable_exceptions.rb +0 -0
  1430. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/assume_ssl.rb +0 -0
  1431. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/callbacks.rb +0 -0
  1432. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/debug_locks.rb +0 -0
  1433. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/flash.rb +0 -0
  1434. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/host_authorization.rb +0 -0
  1435. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/reloader.rb +0 -0
  1436. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/request_id.rb +0 -0
  1437. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/server_timing.rb +0 -0
  1438. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/session/abstract_store.rb +0 -0
  1439. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/session/cookie_store.rb +0 -0
  1440. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/session/mem_cache_store.rb +0 -0
  1441. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/show_exceptions.rb +0 -0
  1442. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/ssl.rb +0 -0
  1443. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/stack.rb +0 -0
  1444. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/static.rb +0 -0
  1445. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb +0 -0
  1446. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_actions.text.erb +0 -0
  1447. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_message_and_suggestions.html.erb +0 -0
  1448. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb +0 -0
  1449. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb +0 -0
  1450. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_source.text.erb +0 -0
  1451. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb +0 -0
  1452. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb +0 -0
  1453. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb +0 -0
  1454. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/missing_exact_template.text.erb +0 -0
  1455. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb +0 -0
  1456. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb +0 -0
  1457. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb +0 -0
  1458. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb +0 -0
  1459. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/routes/_route.html.erb +0 -0
  1460. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/middleware/templates/routes/_table.html.erb +0 -0
  1461. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/request/session.rb +0 -0
  1462. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/request/utils.rb +0 -0
  1463. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/routing/endpoint.rb +0 -0
  1464. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/routing/polymorphic_routes.rb +0 -0
  1465. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/routing/routes_proxy.rb +0 -0
  1466. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/routing/url_for.rb +0 -0
  1467. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/routing.rb +0 -0
  1468. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/system_testing/browser.rb +0 -0
  1469. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/system_testing/driver.rb +0 -0
  1470. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/system_testing/server.rb +0 -0
  1471. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb +0 -0
  1472. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/assertion_response.rb +0 -0
  1473. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/assertions.rb +0 -0
  1474. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/integration.rb +0 -0
  1475. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/request_encoder.rb +0 -0
  1476. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/test_helpers/page_dump_helper.rb +0 -0
  1477. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/test_process.rb +0 -0
  1478. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/test_request.rb +0 -0
  1479. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_dispatch/testing/test_response.rb +0 -0
  1480. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_pack/version.rb +0 -0
  1481. /data/vendor/bundle/ruby/3.4.0/gems/{actionpack-8.0.4 → actionpack-8.1.2}/lib/action_pack.rb +0 -0
  1482. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/MIT-LICENSE +0 -0
  1483. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/README.md +0 -0
  1484. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/helpers/action_text/content_helper.rb +0 -0
  1485. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/models/action_text/encrypted_rich_text.rb +0 -0
  1486. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/models/action_text/record.rb +0 -0
  1487. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/action_text/attachables/_content_attachment.html.erb +0 -0
  1488. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/action_text/attachables/_missing_attachable.html.erb +0 -0
  1489. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/action_text/attachables/_remote_image.html.erb +0 -0
  1490. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/action_text/attachment_galleries/_attachment_gallery.html.erb +0 -0
  1491. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/action_text/contents/_content.html.erb +0 -0
  1492. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/active_storage/blobs/_blob.html.erb +0 -0
  1493. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/app/views/layouts/action_text/contents/_content.html.erb +0 -0
  1494. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/db/migrate/20180528164100_create_action_text_tables.rb +0 -0
  1495. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachable.rb +0 -0
  1496. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachables/content_attachment.rb +0 -0
  1497. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachables/missing_attachable.rb +0 -0
  1498. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachables/remote_image.rb +0 -0
  1499. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachment.rb +0 -0
  1500. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachment_gallery.rb +0 -0
  1501. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachments/caching.rb +0 -0
  1502. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachments/minification.rb +0 -0
  1503. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attachments/trix_conversion.rb +0 -0
  1504. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/attribute.rb +0 -0
  1505. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/deprecator.rb +0 -0
  1506. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/encryption.rb +0 -0
  1507. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/fragment.rb +0 -0
  1508. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/html_conversion.rb +0 -0
  1509. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/serialization.rb +0 -0
  1510. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/trix_attachment.rb +0 -0
  1511. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text/version.rb +0 -0
  1512. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/action_text.rb +0 -0
  1513. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/generators/action_text/install/templates/actiontext.css +0 -0
  1514. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/rails/generators/test_unit/install_generator.rb +0 -0
  1515. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/rails/generators/test_unit/templates/fixtures.yml +0 -0
  1516. /data/vendor/bundle/ruby/3.4.0/gems/{actiontext-8.0.4 → actiontext-8.1.2}/lib/tasks/actiontext.rake +0 -0
  1517. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/MIT-LICENSE +0 -0
  1518. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/README.rdoc +0 -0
  1519. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/app/assets/javascripts/rails-ujs.esm.js +0 -0
  1520. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/app/assets/javascripts/rails-ujs.js +0 -0
  1521. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/cache_expiry.rb +0 -0
  1522. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/context.rb +0 -0
  1523. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/dependency_tracker/ruby_tracker.rb +0 -0
  1524. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/dependency_tracker/wildcard_resolver.rb +0 -0
  1525. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/deprecator.rb +0 -0
  1526. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/digestor.rb +0 -0
  1527. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/flows.rb +0 -0
  1528. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/active_model_helper.rb +0 -0
  1529. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/asset_url_helper.rb +0 -0
  1530. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/atom_feed_helper.rb +0 -0
  1531. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/cache_helper.rb +0 -0
  1532. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/content_exfiltration_prevention_helper.rb +0 -0
  1533. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/csp_helper.rb +0 -0
  1534. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/csrf_helper.rb +0 -0
  1535. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/debug_helper.rb +0 -0
  1536. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/output_safety_helper.rb +0 -0
  1537. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/rendering_helper.rb +0 -0
  1538. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/sanitize_helper.rb +0 -0
  1539. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/base.rb +0 -0
  1540. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/checkable.rb +0 -0
  1541. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/collection_check_boxes.rb +0 -0
  1542. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/collection_helpers.rb +0 -0
  1543. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/collection_radio_buttons.rb +0 -0
  1544. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/collection_select.rb +0 -0
  1545. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/color_field.rb +0 -0
  1546. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/date_field.rb +0 -0
  1547. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/date_select.rb +0 -0
  1548. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/datetime_local_field.rb +0 -0
  1549. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/datetime_select.rb +0 -0
  1550. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/email_field.rb +0 -0
  1551. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/grouped_collection_select.rb +0 -0
  1552. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/label.rb +0 -0
  1553. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/month_field.rb +0 -0
  1554. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/number_field.rb +0 -0
  1555. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/password_field.rb +0 -0
  1556. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/placeholderable.rb +0 -0
  1557. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/radio_button.rb +0 -0
  1558. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/range_field.rb +0 -0
  1559. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/search_field.rb +0 -0
  1560. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/tel_field.rb +0 -0
  1561. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/text_area.rb +0 -0
  1562. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/text_field.rb +0 -0
  1563. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/time_field.rb +0 -0
  1564. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/time_select.rb +0 -0
  1565. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/time_zone_select.rb +0 -0
  1566. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/translator.rb +0 -0
  1567. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/url_field.rb +0 -0
  1568. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/week_field.rb +0 -0
  1569. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags/weekday_select.rb +0 -0
  1570. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/tags.rb +0 -0
  1571. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers/text_helper.rb +0 -0
  1572. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/helpers.rb +0 -0
  1573. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/layouts.rb +0 -0
  1574. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/lookup_context.rb +0 -0
  1575. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/model_naming.rb +0 -0
  1576. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/path_registry.rb +0 -0
  1577. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/path_set.rb +0 -0
  1578. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/render_parser/prism_render_parser.rb +0 -0
  1579. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/render_parser/ripper_render_parser.rb +0 -0
  1580. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/render_parser.rb +0 -0
  1581. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/abstract_renderer.rb +0 -0
  1582. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/collection_renderer.rb +0 -0
  1583. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/object_renderer.rb +0 -0
  1584. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/partial_renderer/collection_caching.rb +0 -0
  1585. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/renderer.rb +0 -0
  1586. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/streaming_template_renderer.rb +0 -0
  1587. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/renderer/template_renderer.rb +0 -0
  1588. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/rendering.rb +0 -0
  1589. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/routing_url_for.rb +0 -0
  1590. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/tasks/cache_digests.rake +0 -0
  1591. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/handlers/builder.rb +0 -0
  1592. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/handlers/erb/erubi.rb +0 -0
  1593. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/handlers/html.rb +0 -0
  1594. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/handlers/raw.rb +0 -0
  1595. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/handlers.rb +0 -0
  1596. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/html.rb +0 -0
  1597. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/inline.rb +0 -0
  1598. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/raw_file.rb +0 -0
  1599. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/renderable.rb +0 -0
  1600. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/resolver.rb +0 -0
  1601. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/sources/file.rb +0 -0
  1602. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/sources.rb +0 -0
  1603. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/text.rb +0 -0
  1604. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template/types.rb +0 -0
  1605. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template_details.rb +0 -0
  1606. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/template_path.rb +0 -0
  1607. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/testing/resolvers.rb +0 -0
  1608. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/unbound_template.rb +0 -0
  1609. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/version.rb +0 -0
  1610. /data/vendor/bundle/ruby/3.4.0/gems/{actionview-8.0.4 → actionview-8.1.2}/lib/action_view/view_paths.rb +0 -0
  1611. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/MIT-LICENSE +0 -0
  1612. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/callbacks.rb +0 -0
  1613. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/deprecator.rb +0 -0
  1614. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/execution.rb +0 -0
  1615. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/logging.rb +0 -0
  1616. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapter.rb +0 -0
  1617. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapters/backburner_adapter.rb +0 -0
  1618. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapters/delayed_job_adapter.rb +0 -0
  1619. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapters/inline_adapter.rb +0 -0
  1620. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapters/queue_classic_adapter.rb +0 -0
  1621. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapters/resque_adapter.rb +0 -0
  1622. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_adapters/sneakers_adapter.rb +0 -0
  1623. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_name.rb +0 -0
  1624. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/queue_priority.rb +0 -0
  1625. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/serializers/time_object_serializer.rb +0 -0
  1626. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/test_case.rb +0 -0
  1627. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/test_helper.rb +0 -0
  1628. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/active_job/version.rb +0 -0
  1629. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/rails/generators/job/USAGE +0 -0
  1630. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/rails/generators/job/job_generator.rb +0 -0
  1631. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/rails/generators/job/templates/application_job.rb.tt +0 -0
  1632. /data/vendor/bundle/ruby/3.4.0/gems/{activejob-8.0.4 → activejob-8.1.2}/lib/rails/generators/job/templates/job.rb.tt +0 -0
  1633. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/MIT-LICENSE +0 -0
  1634. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/README.rdoc +0 -0
  1635. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/access.rb +0 -0
  1636. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/api.rb +0 -0
  1637. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/attribute_assignment.rb +0 -0
  1638. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/attribute_registration.rb +0 -0
  1639. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/attribute_set/builder.rb +0 -0
  1640. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/attribute_set/yaml_encoder.rb +0 -0
  1641. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/attributes.rb +0 -0
  1642. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/callbacks.rb +0 -0
  1643. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/conversion.rb +0 -0
  1644. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/deprecator.rb +0 -0
  1645. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/forbidden_attributes_protection.rb +0 -0
  1646. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/locale/en.yml +0 -0
  1647. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/model.rb +0 -0
  1648. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/serialization.rb +0 -0
  1649. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/serializers/json.rb +0 -0
  1650. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/translation.rb +0 -0
  1651. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/binary.rb +0 -0
  1652. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/helpers/accepts_multiparameter_time.rb +0 -0
  1653. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/helpers/mutable.rb +0 -0
  1654. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/helpers/numeric.rb +0 -0
  1655. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/helpers/time_value.rb +0 -0
  1656. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/helpers/timezone.rb +0 -0
  1657. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/registry.rb +0 -0
  1658. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/serialize_cast_value.rb +0 -0
  1659. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type/time.rb +0 -0
  1660. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/type.rb +0 -0
  1661. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/absence.rb +0 -0
  1662. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/acceptance.rb +0 -0
  1663. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/clusivity.rb +0 -0
  1664. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/comparability.rb +0 -0
  1665. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/comparison.rb +0 -0
  1666. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/confirmation.rb +0 -0
  1667. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/exclusion.rb +0 -0
  1668. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/format.rb +0 -0
  1669. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/helper_methods.rb +0 -0
  1670. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/inclusion.rb +0 -0
  1671. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/length.rb +0 -0
  1672. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/numericality.rb +0 -0
  1673. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/presence.rb +0 -0
  1674. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/resolve_value.rb +0 -0
  1675. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/validates.rb +0 -0
  1676. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validations/with.rb +0 -0
  1677. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/validator.rb +0 -0
  1678. /data/vendor/bundle/ruby/3.4.0/gems/{activemodel-8.0.4 → activemodel-8.1.2}/lib/active_model/version.rb +0 -0
  1679. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/MIT-LICENSE +0 -0
  1680. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/examples/performance.rb +0 -0
  1681. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/examples/simple.rb +0 -0
  1682. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/aggregations.rb +0 -0
  1683. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/alias_tracker.rb +0 -0
  1684. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/association_scope.rb +0 -0
  1685. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/belongs_to_association.rb +0 -0
  1686. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/belongs_to_polymorphic_association.rb +0 -0
  1687. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/builder/has_and_belongs_to_many.rb +0 -0
  1688. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/builder/has_many.rb +0 -0
  1689. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/collection_association.rb +0 -0
  1690. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/disable_joins_association_scope.rb +0 -0
  1691. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/foreign_association.rb +0 -0
  1692. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/has_many_association.rb +0 -0
  1693. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/has_many_through_association.rb +0 -0
  1694. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/has_one_association.rb +0 -0
  1695. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/has_one_through_association.rb +0 -0
  1696. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/join_dependency/join_association.rb +0 -0
  1697. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/join_dependency/join_base.rb +0 -0
  1698. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/join_dependency/join_part.rb +0 -0
  1699. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/nested_error.rb +0 -0
  1700. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/preloader/association.rb +0 -0
  1701. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/preloader/through_association.rb +0 -0
  1702. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/preloader.rb +0 -0
  1703. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/singular_association.rb +0 -0
  1704. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/associations/through_association.rb +0 -0
  1705. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/asynchronous_queries_tracker.rb +0 -0
  1706. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_assignment.rb +0 -0
  1707. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/before_type_cast.rb +0 -0
  1708. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/composite_primary_key.rb +0 -0
  1709. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/dirty.rb +0 -0
  1710. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/primary_key.rb +0 -0
  1711. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/query.rb +0 -0
  1712. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/read.rb +0 -0
  1713. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods/write.rb +0 -0
  1714. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/attribute_methods.rb +0 -0
  1715. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/autosave_association.rb +0 -0
  1716. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/callbacks.rb +0 -0
  1717. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/coders/column_serializer.rb +0 -0
  1718. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/coders/yaml_column.rb +0 -0
  1719. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/abstract/database_limits.rb +0 -0
  1720. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/abstract/savepoints.rb +0 -0
  1721. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/deduplicable.rb +0 -0
  1722. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/mysql/column.rb +0 -0
  1723. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +0 -0
  1724. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/mysql/quoting.rb +0 -0
  1725. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/mysql/schema_dumper.rb +0 -0
  1726. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/mysql/type_metadata.rb +0 -0
  1727. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/pool_config.rb +0 -0
  1728. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/pool_manager.rb +0 -0
  1729. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +0 -0
  1730. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/bit.rb +0 -0
  1731. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +0 -0
  1732. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +0 -0
  1733. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +0 -0
  1734. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/date.rb +0 -0
  1735. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +0 -0
  1736. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +0 -0
  1737. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/enum.rb +0 -0
  1738. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +0 -0
  1739. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/inet.rb +0 -0
  1740. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/interval.rb +0 -0
  1741. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +0 -0
  1742. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +0 -0
  1743. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +0 -0
  1744. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/money.rb +0 -0
  1745. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/oid.rb +0 -0
  1746. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/point.rb +0 -0
  1747. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/range.rb +0 -0
  1748. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +0 -0
  1749. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +0 -0
  1750. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +0 -0
  1751. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +0 -0
  1752. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/vector.rb +0 -0
  1753. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid/xml.rb +0 -0
  1754. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/oid.rb +0 -0
  1755. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +0 -0
  1756. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/type_metadata.rb +0 -0
  1757. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/postgresql/utils.rb +0 -0
  1758. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/sql_type_metadata.rb +0 -0
  1759. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/sqlite3/column.rb +0 -0
  1760. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +0 -0
  1761. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +0 -0
  1762. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +0 -0
  1763. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/connection_adapters/statement_pool.rb +0 -0
  1764. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/database_configurations/connection_url_resolver.rb +0 -0
  1765. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/deprecator.rb +0 -0
  1766. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/destroy_association_async_job.rb +0 -0
  1767. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/disable_joins_association_relation.rb +0 -0
  1768. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/auto_filtered_parameters.rb +0 -0
  1769. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/cipher/aes256_gcm.rb +0 -0
  1770. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/cipher.rb +0 -0
  1771. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/config.rb +0 -0
  1772. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/configurable.rb +0 -0
  1773. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/context.rb +0 -0
  1774. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/contexts.rb +0 -0
  1775. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/derived_secret_key_provider.rb +0 -0
  1776. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/deterministic_key_provider.rb +0 -0
  1777. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/encrypted_fixtures.rb +0 -0
  1778. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/encrypting_only_encryptor.rb +0 -0
  1779. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/envelope_encryption_key_provider.rb +0 -0
  1780. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/errors.rb +0 -0
  1781. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/extended_deterministic_queries.rb +0 -0
  1782. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +0 -0
  1783. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/key.rb +0 -0
  1784. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/key_generator.rb +0 -0
  1785. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/key_provider.rb +0 -0
  1786. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/message.rb +0 -0
  1787. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/message_pack_message_serializer.rb +0 -0
  1788. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/message_serializer.rb +0 -0
  1789. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/null_encryptor.rb +0 -0
  1790. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/properties.rb +0 -0
  1791. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption/read_only_null_encryptor.rb +0 -0
  1792. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/encryption.rb +0 -0
  1793. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/fixture_set/file.rb +0 -0
  1794. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/fixture_set/model_metadata.rb +0 -0
  1795. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/fixture_set/render_context.rb +0 -0
  1796. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/fixture_set/table_row.rb +0 -0
  1797. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/fixture_set/table_rows.rb +0 -0
  1798. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/future_result.rb +0 -0
  1799. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/integration.rb +0 -0
  1800. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/internal_metadata.rb +0 -0
  1801. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/legacy_yaml_adapter.rb +0 -0
  1802. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/locale/en.yml +0 -0
  1803. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/marshalling.rb +0 -0
  1804. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/message_pack.rb +0 -0
  1805. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/middleware/database_selector/resolver/session.rb +0 -0
  1806. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/middleware/database_selector/resolver.rb +0 -0
  1807. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/middleware/database_selector.rb +0 -0
  1808. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/migration/default_strategy.rb +0 -0
  1809. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/migration/execution_strategy.rb +0 -0
  1810. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/migration/join_table.rb +0 -0
  1811. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/migration/pending_migration_connection.rb +0 -0
  1812. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/no_touching.rb +0 -0
  1813. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/promise.rb +0 -0
  1814. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/query_logs_formatter.rb +0 -0
  1815. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/querying.rb +0 -0
  1816. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/railties/console_sandbox.rb +0 -0
  1817. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/readonly_attributes.rb +0 -0
  1818. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/batches/batch_enumerator.rb +0 -0
  1819. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/from_clause.rb +0 -0
  1820. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/merger.rb +0 -0
  1821. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/predicate_builder/array_handler.rb +0 -0
  1822. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/predicate_builder/basic_object_handler.rb +0 -0
  1823. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/predicate_builder/range_handler.rb +0 -0
  1824. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/predicate_builder/relation_handler.rb +0 -0
  1825. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/relation/spawn_methods.rb +0 -0
  1826. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/schema.rb +0 -0
  1827. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/schema_migration.rb +0 -0
  1828. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/scoping/default.rb +0 -0
  1829. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/scoping/named.rb +0 -0
  1830. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/secure_password.rb +0 -0
  1831. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/secure_token.rb +0 -0
  1832. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/serialization.rb +0 -0
  1833. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/suppressor.rb +0 -0
  1834. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/token_for.rb +0 -0
  1835. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/touch_later.rb +0 -0
  1836. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/translation.rb +0 -0
  1837. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/adapter_specific_registry.rb +0 -0
  1838. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/date.rb +0 -0
  1839. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/date_time.rb +0 -0
  1840. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/decimal_without_scale.rb +0 -0
  1841. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/text.rb +0 -0
  1842. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/time.rb +0 -0
  1843. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type/unsigned_integer.rb +0 -0
  1844. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type.rb +0 -0
  1845. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type_caster/map.rb +0 -0
  1846. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/type_caster.rb +0 -0
  1847. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/validations/absence.rb +0 -0
  1848. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/validations/length.rb +0 -0
  1849. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/validations/numericality.rb +0 -0
  1850. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/validations/presence.rb +0 -0
  1851. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/validations/uniqueness.rb +0 -0
  1852. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/validations.rb +0 -0
  1853. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/active_record/version.rb +0 -0
  1854. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/attributes/attribute.rb +0 -0
  1855. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/collectors/bind.rb +0 -0
  1856. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/collectors/composite.rb +0 -0
  1857. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/collectors/plain_string.rb +0 -0
  1858. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/collectors/sql_string.rb +0 -0
  1859. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/collectors/substitute_binds.rb +0 -0
  1860. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/delete_manager.rb +0 -0
  1861. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/errors.rb +0 -0
  1862. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/expressions.rb +0 -0
  1863. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/factory_methods.rb +0 -0
  1864. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/filter_predications.rb +0 -0
  1865. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/insert_manager.rb +0 -0
  1866. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/math.rb +0 -0
  1867. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/ascending.rb +0 -0
  1868. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/binary.rb +0 -0
  1869. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/bind_param.rb +0 -0
  1870. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/bound_sql_literal.rb +0 -0
  1871. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/case.rb +0 -0
  1872. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/casted.rb +0 -0
  1873. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/comment.rb +0 -0
  1874. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/cte.rb +0 -0
  1875. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/delete_statement.rb +0 -0
  1876. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/descending.rb +0 -0
  1877. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/equality.rb +0 -0
  1878. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/extract.rb +0 -0
  1879. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/false.rb +0 -0
  1880. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/filter.rb +0 -0
  1881. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/fragments.rb +0 -0
  1882. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/full_outer_join.rb +0 -0
  1883. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/grouping.rb +0 -0
  1884. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/homogeneous_in.rb +0 -0
  1885. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/in.rb +0 -0
  1886. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/infix_operation.rb +0 -0
  1887. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/inner_join.rb +0 -0
  1888. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/insert_statement.rb +0 -0
  1889. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/join_source.rb +0 -0
  1890. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/leading_join.rb +0 -0
  1891. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/matches.rb +0 -0
  1892. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/nary.rb +0 -0
  1893. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/node_expression.rb +0 -0
  1894. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/ordering.rb +0 -0
  1895. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/outer_join.rb +0 -0
  1896. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/over.rb +0 -0
  1897. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/regexp.rb +0 -0
  1898. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/right_outer_join.rb +0 -0
  1899. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/select_core.rb +0 -0
  1900. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/select_statement.rb +0 -0
  1901. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/sql_literal.rb +0 -0
  1902. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/string_join.rb +0 -0
  1903. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/table_alias.rb +0 -0
  1904. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/terminal.rb +0 -0
  1905. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/true.rb +0 -0
  1906. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/unary.rb +0 -0
  1907. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/unary_operation.rb +0 -0
  1908. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/unqualified_column.rb +0 -0
  1909. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/update_statement.rb +0 -0
  1910. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/values_list.rb +0 -0
  1911. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/window.rb +0 -0
  1912. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/nodes/with.rb +0 -0
  1913. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/order_predications.rb +0 -0
  1914. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/predications.rb +0 -0
  1915. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/table.rb +0 -0
  1916. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/tree_manager.rb +0 -0
  1917. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/update_manager.rb +0 -0
  1918. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/visitors/mysql.rb +0 -0
  1919. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/visitors/visitor.rb +0 -0
  1920. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/visitors.rb +0 -0
  1921. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/arel/window_predications.rb +0 -0
  1922. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/application_record/application_record_generator.rb +0 -0
  1923. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +0 -0
  1924. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/migration/migration_generator.rb +0 -0
  1925. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +0 -0
  1926. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/migration/templates/migration.rb.tt +0 -0
  1927. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/migration.rb +0 -0
  1928. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/model/USAGE +0 -0
  1929. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/model/model_generator.rb +0 -0
  1930. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +0 -0
  1931. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/model/templates/model.rb.tt +0 -0
  1932. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/model/templates/module.rb.tt +0 -0
  1933. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +0 -0
  1934. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +0 -0
  1935. /data/vendor/bundle/ruby/3.4.0/gems/{activerecord-8.0.4 → activerecord-8.1.2}/lib/rails/generators/active_record.rb +0 -0
  1936. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/MIT-LICENSE +0 -0
  1937. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/base_controller.rb +0 -0
  1938. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/blobs/proxy_controller.rb +0 -0
  1939. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/blobs/redirect_controller.rb +0 -0
  1940. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/direct_uploads_controller.rb +0 -0
  1941. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/disk_controller.rb +0 -0
  1942. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/representations/base_controller.rb +0 -0
  1943. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/representations/proxy_controller.rb +0 -0
  1944. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/active_storage/representations/redirect_controller.rb +0 -0
  1945. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/concerns/active_storage/disable_session.rb +0 -0
  1946. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/concerns/active_storage/file_server.rb +0 -0
  1947. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/concerns/active_storage/set_blob.rb +0 -0
  1948. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/concerns/active_storage/set_current.rb +0 -0
  1949. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/controllers/concerns/active_storage/streaming.rb +0 -0
  1950. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/blob_record.js +0 -0
  1951. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/blob_upload.js +0 -0
  1952. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/direct_upload.js +0 -0
  1953. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/direct_uploads_controller.js +0 -0
  1954. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/file_checksum.js +0 -0
  1955. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/helpers.js +0 -0
  1956. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/index.js +0 -0
  1957. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/javascript/activestorage/ujs.js +0 -0
  1958. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/jobs/active_storage/analyze_job.rb +0 -0
  1959. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/jobs/active_storage/base_job.rb +0 -0
  1960. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/jobs/active_storage/mirror_job.rb +0 -0
  1961. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/jobs/active_storage/preview_image_job.rb +0 -0
  1962. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/jobs/active_storage/purge_job.rb +0 -0
  1963. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/jobs/active_storage/transform_job.rb +0 -0
  1964. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/attachment.rb +0 -0
  1965. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/blob/analyzable.rb +0 -0
  1966. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/blob/identifiable.rb +0 -0
  1967. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/blob/representable.rb +0 -0
  1968. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/blob/servable.rb +0 -0
  1969. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/blob.rb +0 -0
  1970. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/current.rb +0 -0
  1971. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/named_variant.rb +0 -0
  1972. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/preview.rb +0 -0
  1973. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/record.rb +0 -0
  1974. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/variant_record.rb +0 -0
  1975. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/app/models/active_storage/variant_with_record.rb +0 -0
  1976. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/config/routes.rb +0 -0
  1977. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/db/migrate/20170806125915_create_active_storage_tables.rb +0 -0
  1978. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/db/update_migrate/20190112182829_add_service_name_to_active_storage_blobs.rb +0 -0
  1979. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/db/update_migrate/20191206030411_create_active_storage_variant_records.rb +0 -0
  1980. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/db/update_migrate/20211119233751_remove_not_null_on_active_storage_blobs_checksum.rb +0 -0
  1981. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/analyzer/audio_analyzer.rb +0 -0
  1982. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/analyzer/null_analyzer.rb +0 -0
  1983. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/analyzer/video_analyzer.rb +0 -0
  1984. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/analyzer.rb +0 -0
  1985. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/create_many.rb +0 -0
  1986. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/create_one.rb +0 -0
  1987. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/create_one_of_many.rb +0 -0
  1988. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/delete_many.rb +0 -0
  1989. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/delete_one.rb +0 -0
  1990. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/detach_many.rb +0 -0
  1991. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/detach_one.rb +0 -0
  1992. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/purge_many.rb +0 -0
  1993. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes/purge_one.rb +0 -0
  1994. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/changes.rb +0 -0
  1995. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/many.rb +0 -0
  1996. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/model.rb +0 -0
  1997. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/attached/one.rb +0 -0
  1998. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/deprecator.rb +0 -0
  1999. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/downloader.rb +0 -0
  2000. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/errors.rb +0 -0
  2001. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/fixture_set.rb +0 -0
  2002. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/previewer/mupdf_previewer.rb +0 -0
  2003. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/previewer/poppler_pdf_previewer.rb +0 -0
  2004. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/previewer/video_previewer.rb +0 -0
  2005. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/previewer.rb +0 -0
  2006. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/reflection.rb +0 -0
  2007. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/service/disk_service.rb +0 -0
  2008. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/service/s3_service.rb +0 -0
  2009. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/transformers/transformer.rb +0 -0
  2010. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/active_storage/version.rb +0 -0
  2011. /data/vendor/bundle/ruby/3.4.0/gems/{activestorage-8.0.4 → activestorage-8.1.2}/lib/tasks/activestorage.rake +0 -0
  2012. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/MIT-LICENSE +0 -0
  2013. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/README.rdoc +0 -0
  2014. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/actionable_error.rb +0 -0
  2015. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/all.rb +0 -0
  2016. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/array_inquirer.rb +0 -0
  2017. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/benchmark.rb +0 -0
  2018. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/benchmarkable.rb +0 -0
  2019. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/broadcast_logger.rb +0 -0
  2020. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/builder.rb +0 -0
  2021. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/cache/coder.rb +0 -0
  2022. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/cache/entry.rb +0 -0
  2023. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/cache/file_store.rb +0 -0
  2024. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/cache/null_store.rb +0 -0
  2025. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/cache/serializer_with_fallback.rb +0 -0
  2026. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/class_attribute.rb +0 -0
  2027. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/code_generator.rb +0 -0
  2028. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/concern.rb +0 -0
  2029. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/concurrency/null_lock.rb +0 -0
  2030. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/concurrency/share_lock.rb +0 -0
  2031. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/configuration_file.rb +0 -0
  2032. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/access.rb +0 -0
  2033. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/conversions.rb +0 -0
  2034. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/extract.rb +0 -0
  2035. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/extract_options.rb +0 -0
  2036. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/grouping.rb +0 -0
  2037. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/inquiry.rb +0 -0
  2038. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/array/wrap.rb +0 -0
  2039. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/big_decimal/conversions.rb +0 -0
  2040. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/class/attribute.rb +0 -0
  2041. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/class/attribute_accessors.rb +0 -0
  2042. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/class/subclasses.rb +0 -0
  2043. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date/acts_like.rb +0 -0
  2044. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date/blank.rb +0 -0
  2045. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date/calculations.rb +0 -0
  2046. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date/conversions.rb +0 -0
  2047. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date/zones.rb +0 -0
  2048. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date_and_time/calculations.rb +0 -0
  2049. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date_and_time/zones.rb +0 -0
  2050. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date_time/acts_like.rb +0 -0
  2051. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date_time/blank.rb +0 -0
  2052. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date_time/calculations.rb +0 -0
  2053. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/date_time/conversions.rb +0 -0
  2054. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/digest/uuid.rb +0 -0
  2055. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/enumerable.rb +0 -0
  2056. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/file/atomic.rb +0 -0
  2057. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/conversions.rb +0 -0
  2058. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/deep_merge.rb +0 -0
  2059. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/deep_transform_values.rb +0 -0
  2060. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/except.rb +0 -0
  2061. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/indifferent_access.rb +0 -0
  2062. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/keys.rb +0 -0
  2063. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/reverse_merge.rb +0 -0
  2064. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/hash/slice.rb +0 -0
  2065. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/integer/inflections.rb +0 -0
  2066. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/integer/multiple.rb +0 -0
  2067. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/integer/time.rb +0 -0
  2068. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/kernel/concern.rb +0 -0
  2069. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/kernel/reporting.rb +0 -0
  2070. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/kernel/singleton_class.rb +0 -0
  2071. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/load_error.rb +0 -0
  2072. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/aliasing.rb +0 -0
  2073. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/anonymous.rb +0 -0
  2074. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/attr_internal.rb +0 -0
  2075. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/attribute_accessors.rb +0 -0
  2076. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +0 -0
  2077. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/concerning.rb +0 -0
  2078. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/delegation.rb +0 -0
  2079. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/deprecation.rb +0 -0
  2080. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/introspection.rb +0 -0
  2081. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/redefine_method.rb +0 -0
  2082. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/module/remove_method.rb +0 -0
  2083. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/name_error.rb +0 -0
  2084. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/numeric/bytes.rb +0 -0
  2085. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/numeric/conversions.rb +0 -0
  2086. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/numeric/time.rb +0 -0
  2087. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/acts_like.rb +0 -0
  2088. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/blank.rb +0 -0
  2089. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/conversions.rb +0 -0
  2090. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/deep_dup.rb +0 -0
  2091. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/duplicable.rb +0 -0
  2092. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/inclusion.rb +0 -0
  2093. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/instance_variables.rb +0 -0
  2094. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/to_param.rb +0 -0
  2095. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/try.rb +0 -0
  2096. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/with.rb +0 -0
  2097. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/object/with_options.rb +0 -0
  2098. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/pathname/blank.rb +0 -0
  2099. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/pathname/existence.rb +0 -0
  2100. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/range/compare_range.rb +0 -0
  2101. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/range/conversions.rb +0 -0
  2102. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/range/overlap.rb +0 -0
  2103. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/range/sole.rb +0 -0
  2104. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/regexp.rb +0 -0
  2105. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/securerandom.rb +0 -0
  2106. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/access.rb +0 -0
  2107. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/behavior.rb +0 -0
  2108. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/conversions.rb +0 -0
  2109. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/exclude.rb +0 -0
  2110. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/filters.rb +0 -0
  2111. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/indent.rb +0 -0
  2112. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/inflections.rb +0 -0
  2113. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/inquiry.rb +0 -0
  2114. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/starts_ends_with.rb +0 -0
  2115. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/strip.rb +0 -0
  2116. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/string/zones.rb +0 -0
  2117. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/symbol/starts_ends_with.rb +0 -0
  2118. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/thread/backtrace/location.rb +0 -0
  2119. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/time/acts_like.rb +0 -0
  2120. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/time/conversions.rb +0 -0
  2121. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/core_ext/time/zones.rb +0 -0
  2122. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deep_mergeable.rb +0 -0
  2123. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/dependencies/autoload.rb +0 -0
  2124. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/dependencies/require_dependency.rb +0 -0
  2125. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecation/behaviors.rb +0 -0
  2126. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecation/constant_accessor.rb +0 -0
  2127. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecation/deprecators.rb +0 -0
  2128. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecation/disallowed.rb +0 -0
  2129. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecation/method_wrappers.rb +0 -0
  2130. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecation/proxy_wrappers.rb +0 -0
  2131. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/deprecator.rb +0 -0
  2132. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/descendants_tracker.rb +0 -0
  2133. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/digest.rb +0 -0
  2134. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/duration/iso8601_parser.rb +0 -0
  2135. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/duration/iso8601_serializer.rb +0 -0
  2136. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/duration.rb +0 -0
  2137. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/encrypted_configuration.rb +0 -0
  2138. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/encrypted_file.rb +0 -0
  2139. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/environment_inquirer.rb +0 -0
  2140. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/error_reporter/test_helper.rb +0 -0
  2141. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/execution_context/test_helper.rb +0 -0
  2142. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/execution_wrapper.rb +0 -0
  2143. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/executor/test_helper.rb +0 -0
  2144. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/executor.rb +0 -0
  2145. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/fork_tracker.rb +0 -0
  2146. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/html_safe_translation.rb +0 -0
  2147. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/i18n.rb +0 -0
  2148. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/inflections.rb +0 -0
  2149. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/inflector.rb +0 -0
  2150. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/json.rb +0 -0
  2151. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/key_generator.rb +0 -0
  2152. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/lazy_load_hooks.rb +0 -0
  2153. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/locale/en.rb +0 -0
  2154. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/locale/en.yml +0 -0
  2155. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/log_subscriber/test_helper.rb +0 -0
  2156. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/logger.rb +0 -0
  2157. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/logger_silence.rb +0 -0
  2158. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/logger_thread_safe_level.rb +0 -0
  2159. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/message_encryptor.rb +0 -0
  2160. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/message_pack/cache_serializer.rb +0 -0
  2161. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/message_pack/serializer.rb +0 -0
  2162. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/message_pack.rb +0 -0
  2163. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/message_verifier.rb +0 -0
  2164. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/messages/codec.rb +0 -0
  2165. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/messages/metadata.rb +0 -0
  2166. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/messages/rotation_configuration.rb +0 -0
  2167. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/messages/serializer_with_fallback.rb +0 -0
  2168. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/multibyte/unicode.rb +0 -0
  2169. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/notifications/instrumenter.rb +0 -0
  2170. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/notifications.rb +0 -0
  2171. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_converter.rb +0 -0
  2172. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_currency_converter.rb +0 -0
  2173. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_delimited_converter.rb +0 -0
  2174. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_human_converter.rb +0 -0
  2175. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_human_size_converter.rb +0 -0
  2176. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_percentage_converter.rb +0 -0
  2177. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_phone_converter.rb +0 -0
  2178. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/number_to_rounded_converter.rb +0 -0
  2179. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper/rounding_helper.rb +0 -0
  2180. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/number_helper.rb +0 -0
  2181. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/option_merger.rb +0 -0
  2182. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/ordered_hash.rb +0 -0
  2183. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/ordered_options.rb +0 -0
  2184. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/parameter_filter.rb +0 -0
  2185. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/rails.rb +0 -0
  2186. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/reloader.rb +0 -0
  2187. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/rescuable.rb +0 -0
  2188. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/secure_compare_rotator.rb +0 -0
  2189. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/security_utils.rb +0 -0
  2190. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/string_inquirer.rb +0 -0
  2191. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/tagged_logging.rb +0 -0
  2192. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/constant_lookup.rb +0 -0
  2193. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/constant_stubbing.rb +0 -0
  2194. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/declarative.rb +0 -0
  2195. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/deprecation.rb +0 -0
  2196. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/file_fixtures.rb +0 -0
  2197. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/isolation.rb +0 -0
  2198. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/method_call_assertions.rb +0 -0
  2199. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/parallelization/server.rb +0 -0
  2200. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/parallelize_executor.rb +0 -0
  2201. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/setup_and_teardown.rb +0 -0
  2202. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/stream.rb +0 -0
  2203. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/testing/tagged_logging.rb +0 -0
  2204. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/time.rb +0 -0
  2205. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/version.rb +0 -0
  2206. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/xml_mini/jdom.rb +0 -0
  2207. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/xml_mini/libxml.rb +0 -0
  2208. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/xml_mini/libxmlsax.rb +0 -0
  2209. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/xml_mini/nokogiri.rb +0 -0
  2210. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/xml_mini/nokogirisax.rb +0 -0
  2211. /data/vendor/bundle/ruby/3.4.0/gems/{activesupport-8.0.4 → activesupport-8.1.2}/lib/active_support/xml_mini/rexml.rb +0 -0
  2212. /data/vendor/bundle/ruby/3.4.0/gems/{rails-8.0.4 → rails-8.1.2}/MIT-LICENSE +0 -0
  2213. /data/vendor/bundle/ruby/3.4.0/gems/{rails-8.0.4 → rails-8.1.2}/README.md +0 -0
  2214. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/MIT-LICENSE +0 -0
  2215. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/RDOC_MAIN.md +0 -0
  2216. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/README.rdoc +0 -0
  2217. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/exe/rails +0 -0
  2218. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/all.rb +0 -0
  2219. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/api/generator.rb +0 -0
  2220. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/api/task.rb +0 -0
  2221. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/app_loader.rb +0 -0
  2222. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/application/dummy_config.rb +0 -0
  2223. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/application_controller.rb +0 -0
  2224. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/autoloaders/inflector.rb +0 -0
  2225. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/autoloaders.rb +0 -0
  2226. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/backtrace_cleaner.rb +0 -0
  2227. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/cli.rb +0 -0
  2228. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/code_statistics_calculator.rb +0 -0
  2229. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/command/actions.rb +0 -0
  2230. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/command/behavior.rb +0 -0
  2231. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/command/helpers/editor.rb +0 -0
  2232. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/about/about_command.rb +0 -0
  2233. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/application/application_command.rb +0 -0
  2234. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/boot/boot_command.rb +0 -0
  2235. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/console/console_command.rb +0 -0
  2236. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/credentials/USAGE +0 -0
  2237. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/credentials/credentials_command/diffing.rb +0 -0
  2238. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/db/system/change/change_command.rb +0 -0
  2239. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/dbconsole/dbconsole_command.rb +0 -0
  2240. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/destroy/destroy_command.rb +0 -0
  2241. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/dev/dev_command.rb +0 -0
  2242. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/encrypted/USAGE +0 -0
  2243. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/gem_help/USAGE +0 -0
  2244. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/gem_help/gem_help_command.rb +0 -0
  2245. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/generate/generate_command.rb +0 -0
  2246. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/help/USAGE +0 -0
  2247. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/help/help_command.rb +0 -0
  2248. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/initializers/initializers_command.rb +0 -0
  2249. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/middleware/middleware_command.rb +0 -0
  2250. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/new/new_command.rb +0 -0
  2251. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/notes/notes_command.rb +0 -0
  2252. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/plugin/plugin_command.rb +0 -0
  2253. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/rake/rake_command.rb +0 -0
  2254. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/restart/restart_command.rb +0 -0
  2255. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/routes/routes_command.rb +0 -0
  2256. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/runner/USAGE +0 -0
  2257. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/runner/runner_command.rb +0 -0
  2258. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/secret/secret_command.rb +0 -0
  2259. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/server/server_command.rb +0 -0
  2260. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/stats/stats_command.rb +0 -0
  2261. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/test/USAGE +0 -0
  2262. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/test/test_command.rb +0 -0
  2263. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/unused_routes/unused_routes_command.rb +0 -0
  2264. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands/version/version_command.rb +0 -0
  2265. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/commands.rb +0 -0
  2266. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/configuration.rb +0 -0
  2267. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/deprecator.rb +0 -0
  2268. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/dev_caching.rb +0 -0
  2269. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/engine/commands.rb +0 -0
  2270. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/engine/configuration.rb +0 -0
  2271. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/engine/lazy_route_set.rb +0 -0
  2272. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/engine/railties.rb +0 -0
  2273. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/engine/updater.rb +0 -0
  2274. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/actions/create_migration.rb +0 -0
  2275. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/active_model.rb +0 -0
  2276. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/app_name.rb +0 -0
  2277. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/base.rb +0 -0
  2278. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/bundle_helper.rb +0 -0
  2279. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/authentication/templates/app/views/passwords/edit.html.erb +0 -0
  2280. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/authentication/templates/app/views/passwords/new.html.erb +0 -0
  2281. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/authentication/templates/app/views/sessions/new.html.erb +0 -0
  2282. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/controller/controller_generator.rb +0 -0
  2283. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/controller/templates/view.html.erb.tt +0 -0
  2284. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/mailer/mailer_generator.rb +0 -0
  2285. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/mailer/templates/layout.html.erb.tt +0 -0
  2286. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/mailer/templates/layout.text.erb.tt +0 -0
  2287. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/mailer/templates/view.html.erb.tt +0 -0
  2288. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/mailer/templates/view.text.erb.tt +0 -0
  2289. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/scaffold/scaffold_generator.rb +0 -0
  2290. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/scaffold/templates/_form.html.erb.tt +0 -0
  2291. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/scaffold/templates/edit.html.erb.tt +0 -0
  2292. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/scaffold/templates/index.html.erb.tt +0 -0
  2293. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/scaffold/templates/new.html.erb.tt +0 -0
  2294. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb/scaffold/templates/show.html.erb.tt +0 -0
  2295. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/erb.rb +0 -0
  2296. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/model_helpers.rb +0 -0
  2297. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/named_base.rb +0 -0
  2298. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/USAGE +0 -0
  2299. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/README.md.tt +0 -0
  2300. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/Rakefile.tt +0 -0
  2301. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css.tt +0 -0
  2302. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/helpers/application_helper.rb.tt +0 -0
  2303. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/jobs/application_job.rb.tt +0 -0
  2304. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/mailers/application_mailer.rb.tt +0 -0
  2305. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/models/application_record.rb.tt +0 -0
  2306. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.html.erb.tt +0 -0
  2307. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/views/layouts/mailer.text.erb.tt +0 -0
  2308. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/views/pwa/manifest.json.erb.tt +0 -0
  2309. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/app/views/pwa/service-worker.js +0 -0
  2310. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/bin/brakeman.tt +0 -0
  2311. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/bin/dev.tt +0 -0
  2312. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/bin/rails.tt +0 -0
  2313. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/bin/rake.tt +0 -0
  2314. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/bin/thrust.tt +0 -0
  2315. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/application.rb.tt +0 -0
  2316. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/boot.rb.tt +0 -0
  2317. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/cable.yml.tt +0 -0
  2318. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/environment.rb.tt +0 -0
  2319. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +0 -0
  2320. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +0 -0
  2321. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/initializers/cors.rb.tt +0 -0
  2322. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/initializers/filter_parameter_logging.rb.tt +0 -0
  2323. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb.tt +0 -0
  2324. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/locales/en.yml +0 -0
  2325. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config/routes.rb.tt +0 -0
  2326. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/config.ru.tt +0 -0
  2327. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +0 -0
  2328. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/dockerignore.tt +0 -0
  2329. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/gitattributes.tt +0 -0
  2330. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/gitignore.tt +0 -0
  2331. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/node-version.tt +0 -0
  2332. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/public/icon.png +0 -0
  2333. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/public/icon.svg +0 -0
  2334. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/public/robots.txt +0 -0
  2335. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/rubocop.yml.tt +0 -0
  2336. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/test/application_system_test_case.rb.tt +0 -0
  2337. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/app/templates/test/test_helper.rb.tt +0 -0
  2338. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/application_record/application_record_generator.rb +0 -0
  2339. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/USAGE +0 -0
  2340. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/templates/app/channels/application_cable/connection.rb.tt +0 -0
  2341. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/templates/app/controllers/concerns/authentication.rb.tt +0 -0
  2342. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/templates/app/mailers/passwords_mailer.rb.tt +0 -0
  2343. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/templates/app/models/current.rb.tt +0 -0
  2344. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/templates/app/models/session.rb.tt +0 -0
  2345. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/authentication/templates/app/models/user.rb.tt +0 -0
  2346. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/benchmark/benchmark_generator.rb +0 -0
  2347. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/controller/USAGE +0 -0
  2348. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/controller/controller_generator.rb +0 -0
  2349. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/controller/templates/controller.rb.tt +0 -0
  2350. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/credentials/credentials_generator.rb +0 -0
  2351. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/credentials/templates/credentials.yml.tt +0 -0
  2352. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/devcontainer/templates/devcontainer/devcontainer.json.tt +0 -0
  2353. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/encrypted_file/encrypted_file_generator.rb +0 -0
  2354. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/generator/USAGE +0 -0
  2355. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/generator/generator_generator.rb +0 -0
  2356. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +0 -0
  2357. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/generator/templates/USAGE.tt +0 -0
  2358. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/helper/USAGE +0 -0
  2359. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/helper/helper_generator.rb +0 -0
  2360. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/helper/templates/helper.rb.tt +0 -0
  2361. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/integration_test/USAGE +0 -0
  2362. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/integration_test/integration_test_generator.rb +0 -0
  2363. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/migration/USAGE +0 -0
  2364. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/migration/migration_generator.rb +0 -0
  2365. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/model/model_generator.rb +0 -0
  2366. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/USAGE +0 -0
  2367. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt +0 -0
  2368. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/Gemfile.tt +0 -0
  2369. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/MIT-LICENSE.tt +0 -0
  2370. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/README.md.tt +0 -0
  2371. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/app/controllers/%namespaced_name%/application_controller.rb.tt +0 -0
  2372. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/app/helpers/%namespaced_name%/application_helper.rb.tt +0 -0
  2373. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/app/jobs/%namespaced_name%/application_job.rb.tt +0 -0
  2374. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/app/mailers/%namespaced_name%/application_mailer.rb.tt +0 -0
  2375. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/app/models/%namespaced_name%/application_record.rb.tt +0 -0
  2376. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +0 -0
  2377. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/bin/rails.tt +0 -0
  2378. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4/lib/rails/generators/rails/app → railties-8.1.2/lib/rails/generators/rails/plugin}/templates/bin/rubocop.tt +0 -0
  2379. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/bin/test.tt +0 -0
  2380. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/config/routes.rb.tt +0 -0
  2381. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/gitignore.tt +0 -0
  2382. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/engine.rb.tt +0 -0
  2383. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/railtie.rb.tt +0 -0
  2384. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/version.rb.tt +0 -0
  2385. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%.rb.tt +0 -0
  2386. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/lib/tasks/%namespaced_name%_tasks.rake.tt +0 -0
  2387. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/rails/boot.rb.tt +0 -0
  2388. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/rails/routes.rb.tt +0 -0
  2389. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/rails/stylesheets.css +0 -0
  2390. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/rubocop.yml.tt +0 -0
  2391. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/test/%namespaced_name%_test.rb.tt +0 -0
  2392. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/test/application_system_test_case.rb.tt +0 -0
  2393. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/test/integration/navigation_test.rb.tt +0 -0
  2394. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt +0 -0
  2395. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/resource/USAGE +0 -0
  2396. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/resource/resource_generator.rb +0 -0
  2397. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/resource_route/resource_route_generator.rb +0 -0
  2398. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/scaffold/USAGE +0 -0
  2399. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/scaffold/scaffold_generator.rb +0 -0
  2400. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/scaffold_controller/USAGE +0 -0
  2401. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +0 -0
  2402. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb.tt +0 -0
  2403. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/scaffold_controller/templates/controller.rb.tt +0 -0
  2404. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/script/script_generator.rb +0 -0
  2405. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/script/templates/script.rb.tt +0 -0
  2406. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/system_test/USAGE +0 -0
  2407. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/system_test/system_test_generator.rb +0 -0
  2408. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/task/USAGE +0 -0
  2409. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/task/task_generator.rb +0 -0
  2410. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/rails/task/templates/task.rb.tt +0 -0
  2411. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/resource_helpers.rb +0 -0
  2412. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_case.rb +0 -0
  2413. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/authentication/templates/test/fixtures/users.yml.tt +0 -0
  2414. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/authentication/templates/test/mailers/previews/passwords_mailer_preview.rb.tt +0 -0
  2415. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/controller/controller_generator.rb +0 -0
  2416. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/controller/templates/functional_test.rb.tt +0 -0
  2417. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/generator/generator_generator.rb +0 -0
  2418. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/generator/templates/generator_test.rb.tt +0 -0
  2419. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/helper/helper_generator.rb +0 -0
  2420. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/integration/integration_generator.rb +0 -0
  2421. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/integration/templates/integration_test.rb.tt +0 -0
  2422. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/job/job_generator.rb +0 -0
  2423. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/job/templates/unit_test.rb.tt +0 -0
  2424. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/mailer/mailer_generator.rb +0 -0
  2425. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/mailer/templates/functional_test.rb.tt +0 -0
  2426. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/mailer/templates/preview.rb.tt +0 -0
  2427. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/model/model_generator.rb +0 -0
  2428. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/model/templates/unit_test.rb.tt +0 -0
  2429. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb.tt +0 -0
  2430. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4/lib/rails/generators/test_unit/system → railties-8.1.2/lib/rails/generators/test_unit/scaffold}/templates/application_system_test_case.rb.tt +0 -0
  2431. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb.tt +0 -0
  2432. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt +0 -0
  2433. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/system/system_generator.rb +0 -0
  2434. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit/system/templates/system_test.rb.tt +0 -0
  2435. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/test_unit.rb +0 -0
  2436. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/testing/assertions.rb +0 -0
  2437. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/generators/testing/setup_and_teardown.rb +0 -0
  2438. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/mailers_controller.rb +0 -0
  2439. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/paths.rb +0 -0
  2440. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/plugin/test.rb +0 -0
  2441. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/pwa_controller.rb +0 -0
  2442. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/rack/logger.rb +0 -0
  2443. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/rack.rb +0 -0
  2444. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/rackup/server.rb +0 -0
  2445. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/railtie/configuration.rb +0 -0
  2446. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/engine.rake +0 -0
  2447. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/framework.rake +0 -0
  2448. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/log.rake +0 -0
  2449. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/misc.rake +0 -0
  2450. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/tmp.rake +0 -0
  2451. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/yarn.rake +0 -0
  2452. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/tasks/zeitwerk.rake +0 -0
  2453. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/templates/layouts/application.html.erb +0 -0
  2454. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/templates/rails/info/properties.html.erb +0 -0
  2455. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/templates/rails/info/routes.html.erb +0 -0
  2456. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/templates/rails/mailers/index.html.erb +0 -0
  2457. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/templates/rails/mailers/mailer.html.erb +0 -0
  2458. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/test_help.rb +0 -0
  2459. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/test_unit/railtie.rb +0 -0
  2460. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/test_unit/test_parser.rb +0 -0
  2461. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/test_unit/testing.rake +0 -0
  2462. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/testing/maintain_test_schema.rb +0 -0
  2463. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/version.rb +0 -0
  2464. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/welcome_controller.rb +0 -0
  2465. /data/vendor/bundle/ruby/3.4.0/gems/{railties-8.0.4 → railties-8.1.2}/lib/rails/zeitwerk_checker.rb +0 -0
@@ -0,0 +1,2546 @@
1
+ # frozen_string_literal: true
2
+
3
+ # :markup: markdown
4
+
5
+ require "active_support/core_ext/hash/slice"
6
+ require "active_support/core_ext/enumerable"
7
+ require "active_support/core_ext/array/extract_options"
8
+ require "active_support/core_ext/regexp"
9
+ require "action_dispatch/routing/redirection"
10
+ require "action_dispatch/routing/endpoint"
11
+
12
+ module ActionDispatch
13
+ module Routing
14
+ class Mapper
15
+ class BacktraceCleaner < ActiveSupport::BacktraceCleaner # :nodoc:
16
+ def initialize
17
+ super
18
+ remove_silencers!
19
+ add_core_silencer
20
+ add_stdlib_silencer
21
+ end
22
+ end
23
+
24
+ URL_OPTIONS = [:protocol, :subdomain, :domain, :host, :port]
25
+
26
+ cattr_accessor :route_source_locations, instance_accessor: false, default: false
27
+ cattr_accessor :backtrace_cleaner, instance_accessor: false, default: BacktraceCleaner.new
28
+
29
+ class Constraints < Routing::Endpoint # :nodoc:
30
+ attr_reader :app, :constraints
31
+
32
+ SERVE = ->(app, req) { app.serve req }
33
+ CALL = ->(app, req) { app.call req.env }
34
+
35
+ def initialize(app, constraints, strategy)
36
+ # Unwrap Constraints objects. I don't actually think it's possible to pass a
37
+ # Constraints object to this constructor, but there were multiple places that
38
+ # kept testing children of this object. I **think** they were just being
39
+ # defensive, but I have no idea.
40
+ if app.is_a?(self.class)
41
+ constraints += app.constraints
42
+ app = app.app
43
+ end
44
+
45
+ @strategy = strategy
46
+
47
+ @app, @constraints, = app, constraints
48
+ end
49
+
50
+ def dispatcher?; @strategy == SERVE; end
51
+
52
+ def matches?(req)
53
+ @constraints.all? do |constraint|
54
+ (constraint.respond_to?(:matches?) && constraint.matches?(req)) ||
55
+ (constraint.respond_to?(:call) && constraint.call(*constraint_args(constraint, req)))
56
+ end
57
+ end
58
+
59
+ def serve(req)
60
+ return [ 404, { Constants::X_CASCADE => "pass" }, [] ] unless matches?(req)
61
+
62
+ @strategy.call @app, req
63
+ end
64
+
65
+ private
66
+ def constraint_args(constraint, request)
67
+ arity = if constraint.respond_to?(:arity)
68
+ constraint.arity
69
+ else
70
+ constraint.method(:call).arity
71
+ end
72
+
73
+ if arity < 1
74
+ []
75
+ elsif arity == 1
76
+ [request]
77
+ else
78
+ [request.path_parameters, request]
79
+ end
80
+ end
81
+ end
82
+
83
+ class Mapping # :nodoc:
84
+ ANCHOR_CHARACTERS_REGEX = %r{\A(\\A|\^)|(\\Z|\\z|\$)\Z}
85
+ OPTIONAL_FORMAT_REGEX = %r{(?:\(\.:format\)+|\.:format|/)\Z}
86
+
87
+ attr_reader :path, :requirements, :defaults, :to, :default_controller,
88
+ :default_action, :required_defaults, :ast, :scope_options
89
+
90
+ def self.build(scope, set, ast, controller, default_action, to, via, formatted, options_constraints, anchor, internal, options)
91
+ scope_params = {
92
+ blocks: scope[:blocks] || [],
93
+ constraints: scope[:constraints] || {},
94
+ defaults: (scope[:defaults] || {}).dup,
95
+ module: scope[:module],
96
+ options: scope[:options] || {}
97
+ }
98
+
99
+ new set: set, ast: ast, controller: controller, default_action: default_action,
100
+ to: to, formatted: formatted, via: via, options_constraints: options_constraints,
101
+ anchor: anchor, scope_params: scope_params, internal: internal, options: scope_params[:options].merge(options)
102
+ end
103
+
104
+ def self.check_via(via)
105
+ if via.empty?
106
+ msg = "You should not use the `match` method in your router without specifying an HTTP method.\n" \
107
+ "If you want to expose your action to both GET and POST, add `via: [:get, :post]` option.\n" \
108
+ "If you want to expose your action to GET, use `get` in the router:\n" \
109
+ " Instead of: match \"controller#action\"\n" \
110
+ " Do: get \"controller#action\""
111
+ raise ArgumentError, msg
112
+ end
113
+ via
114
+ end
115
+
116
+ def self.normalize_path(path, format)
117
+ path = Mapper.normalize_path(path)
118
+
119
+ if format == true
120
+ "#{path}.:format"
121
+ elsif optional_format?(path, format)
122
+ "#{path}(.:format)"
123
+ else
124
+ path
125
+ end
126
+ end
127
+
128
+ def self.optional_format?(path, format)
129
+ format != false && !path.match?(OPTIONAL_FORMAT_REGEX)
130
+ end
131
+
132
+ def initialize(set:, ast:, controller:, default_action:, to:, formatted:, via:, options_constraints:, anchor:, scope_params:, internal:, options:)
133
+ @defaults = scope_params[:defaults]
134
+ @set = set
135
+ @to = intern(to)
136
+ @default_controller = intern(controller)
137
+ @default_action = intern(default_action)
138
+ @anchor = anchor
139
+ @via = via
140
+ @internal = internal
141
+ @scope_options = scope_params[:options]
142
+ ast = Journey::Ast.new(ast, formatted)
143
+
144
+ options = ast.wildcard_options.merge!(options)
145
+
146
+ options = normalize_options!(options, ast.path_params, scope_params[:module])
147
+
148
+ split_options = constraints(options, ast.path_params)
149
+
150
+ constraints = scope_params[:constraints].merge Hash[split_options[:constraints] || []]
151
+
152
+ if options_constraints.is_a?(Hash)
153
+ @defaults = Hash[options_constraints.find_all { |key, default|
154
+ URL_OPTIONS.include?(key) && (String === default || Integer === default)
155
+ }].merge @defaults
156
+ @blocks = scope_params[:blocks]
157
+ constraints.merge! options_constraints
158
+ else
159
+ @blocks = blocks(options_constraints)
160
+ end
161
+
162
+ requirements, conditions = split_constraints ast.path_params, constraints
163
+ verify_regexp_requirements requirements, ast.wildcard_options
164
+
165
+ formats = normalize_format(formatted)
166
+
167
+ @requirements = formats[:requirements].merge Hash[requirements]
168
+ @conditions = Hash[conditions]
169
+ @defaults = formats[:defaults].merge(@defaults).merge(normalize_defaults(options))
170
+
171
+ if ast.path_params.include?(:action) && !@requirements.key?(:action)
172
+ @defaults[:action] ||= "index"
173
+ end
174
+
175
+ @required_defaults = (split_options[:required_defaults] || []).map(&:first)
176
+
177
+ ast.requirements = @requirements
178
+ @path = Journey::Path::Pattern.new(ast, @requirements, JOINED_SEPARATORS, @anchor)
179
+ end
180
+
181
+ JOINED_SEPARATORS = SEPARATORS.join # :nodoc:
182
+
183
+ def make_route(name, precedence)
184
+ Journey::Route.new(name: name, app: application, path: path, constraints: conditions,
185
+ required_defaults: required_defaults, defaults: defaults,
186
+ via: @via, precedence: precedence,
187
+ scope_options: scope_options, internal: @internal, source_location: route_source_location)
188
+ end
189
+
190
+ def application
191
+ app(@blocks)
192
+ end
193
+
194
+ def conditions
195
+ build_conditions @conditions, @set.request_class
196
+ end
197
+
198
+ def build_conditions(current_conditions, request_class)
199
+ conditions = current_conditions.dup
200
+
201
+ conditions.keep_if do |k, _|
202
+ request_class.public_method_defined?(k)
203
+ end
204
+ end
205
+ private :build_conditions
206
+
207
+ private
208
+ def intern(object)
209
+ object.is_a?(String) ? -object : object
210
+ end
211
+
212
+ def normalize_options!(options, path_params, modyoule)
213
+ if path_params.include?(:controller)
214
+ raise ArgumentError, ":controller segment is not allowed within a namespace block" if modyoule
215
+
216
+ # Add a default constraint for :controller path segments that matches namespaced
217
+ # controllers with default routes like :controller/:action/:id(.:format), e.g:
218
+ # GET /admin/products/show/1
219
+ # # > { controller: 'admin/products', action: 'show', id: '1' }
220
+ options[:controller] ||= /.+?/
221
+ end
222
+
223
+ if to.respond_to?(:action) || to.respond_to?(:call)
224
+ options
225
+ else
226
+ if to.nil?
227
+ controller = default_controller
228
+ action = default_action
229
+ elsif to.is_a?(String)
230
+ if to.include?("#")
231
+ to_endpoint = to.split("#").map!(&:-@)
232
+ controller = to_endpoint[0]
233
+ action = to_endpoint[1]
234
+ else
235
+ controller = default_controller
236
+ action = to
237
+ end
238
+ else
239
+ raise ArgumentError, ":to must respond to `action` or `call`, or it must be a String that includes '#', or the controller should be implicit"
240
+ end
241
+
242
+ controller = add_controller_module(controller, modyoule)
243
+
244
+ options.merge! check_controller_and_action(path_params, controller, action)
245
+ end
246
+ end
247
+
248
+ def split_constraints(path_params, constraints)
249
+ constraints.partition do |key, requirement|
250
+ path_params.include?(key) || key == :controller
251
+ end
252
+ end
253
+
254
+ def normalize_format(formatted)
255
+ case formatted
256
+ when true
257
+ { requirements: { format: /.+/ },
258
+ defaults: {} }
259
+ when Regexp
260
+ { requirements: { format: formatted },
261
+ defaults: { format: nil } }
262
+ when String
263
+ { requirements: { format: Regexp.compile(formatted) },
264
+ defaults: { format: formatted } }
265
+ else
266
+ { requirements: {}, defaults: {} }
267
+ end
268
+ end
269
+
270
+ def verify_regexp_requirements(requirements, wildcard_options)
271
+ requirements.each do |requirement, regex|
272
+ next unless regex.is_a? Regexp
273
+
274
+ if ANCHOR_CHARACTERS_REGEX.match?(regex.source)
275
+ raise ArgumentError, "Regexp anchor characters are not allowed in routing requirements: #{requirement.inspect}"
276
+ end
277
+
278
+ if regex.multiline?
279
+ next if wildcard_options.key?(requirement)
280
+
281
+ raise ArgumentError, "Regexp multiline option is not allowed in routing requirements: #{regex.inspect}"
282
+ end
283
+ end
284
+ end
285
+
286
+ def normalize_defaults(options)
287
+ Hash[options.reject { |_, default| Regexp === default }]
288
+ end
289
+
290
+ def app(blocks)
291
+ if to.respond_to?(:action)
292
+ Routing::RouteSet::StaticDispatcher.new to
293
+ elsif to.respond_to?(:call)
294
+ Constraints.new(to, blocks, Constraints::CALL)
295
+ elsif blocks.any?
296
+ Constraints.new(dispatcher(defaults.key?(:controller)), blocks, Constraints::SERVE)
297
+ else
298
+ dispatcher(defaults.key?(:controller))
299
+ end
300
+ end
301
+
302
+ def check_controller_and_action(path_params, controller, action)
303
+ hash = check_part(:controller, controller, path_params, {}) do |part|
304
+ translate_controller(part) {
305
+ message = +"'#{part}' is not a supported controller name. This can lead to potential routing problems."
306
+ message << " See https://guides.rubyonrails.org/routing.html#specifying-a-controller-to-use"
307
+
308
+ raise ArgumentError, message
309
+ }
310
+ end
311
+
312
+ check_part(:action, action, path_params, hash) { |part|
313
+ part.is_a?(Regexp) ? part : part.to_s
314
+ }
315
+ end
316
+
317
+ def check_part(name, part, path_params, hash)
318
+ if part
319
+ hash[name] = yield(part)
320
+ else
321
+ unless path_params.include?(name)
322
+ message = "Missing :#{name} key on routes definition, please check your routes."
323
+ raise ArgumentError, message
324
+ end
325
+ end
326
+ hash
327
+ end
328
+
329
+ def add_controller_module(controller, modyoule)
330
+ if modyoule && !controller.is_a?(Regexp)
331
+ if controller&.start_with?("/")
332
+ -controller[1..-1]
333
+ else
334
+ -[modyoule, controller].compact.join("/")
335
+ end
336
+ else
337
+ controller
338
+ end
339
+ end
340
+
341
+ def translate_controller(controller)
342
+ return controller if Regexp === controller
343
+ return controller.to_s if /\A[a-z_0-9][a-z_0-9\/]*\z/.match?(controller)
344
+
345
+ yield
346
+ end
347
+
348
+ def blocks(callable_constraint)
349
+ unless callable_constraint.respond_to?(:call) || callable_constraint.respond_to?(:matches?)
350
+ raise ArgumentError, "Invalid constraint: #{callable_constraint.inspect} must respond to :call or :matches?"
351
+ end
352
+ [callable_constraint]
353
+ end
354
+
355
+ def constraints(options, path_params)
356
+ options.group_by do |key, option|
357
+ if Regexp === option
358
+ :constraints
359
+ else
360
+ if path_params.include?(key)
361
+ :path_params
362
+ else
363
+ :required_defaults
364
+ end
365
+ end
366
+ end
367
+ end
368
+
369
+ def dispatcher(raise_on_name_error)
370
+ Routing::RouteSet::Dispatcher.new raise_on_name_error
371
+ end
372
+
373
+ def route_source_location
374
+ if Mapper.route_source_locations
375
+ action_dispatch_dir = File.expand_path("..", __dir__)
376
+ Thread.each_caller_location do |location|
377
+ next if location.path.start_with?(action_dispatch_dir)
378
+
379
+ cleaned_path = Mapper.backtrace_cleaner.clean_frame(location.path)
380
+ next if cleaned_path.nil?
381
+
382
+ return "#{cleaned_path}:#{location.lineno}"
383
+ end
384
+ nil
385
+ end
386
+ end
387
+ end
388
+
389
+ # Invokes Journey::Router::Utils.normalize_path, then ensures that /(:locale)
390
+ # becomes (/:locale). Except for root cases, where the former is the correct
391
+ # one.
392
+ def self.normalize_path(path)
393
+ path = Journey::Router::Utils.normalize_path(path)
394
+
395
+ # the path for a root URL at this point can be something like
396
+ # "/(/:locale)(/:platform)/(:browser)", and we would want
397
+ # "/(:locale)(/:platform)(/:browser)" reverse "/(", "/((" etc to "(/", "((/" etc
398
+ path.gsub!(%r{/(\(+)/?}, '\1/')
399
+ # if a path is all optional segments, change the leading "(/" back to "/(" so it
400
+ # evaluates to "/" when interpreted with no options. Unless, however, at least
401
+ # one secondary segment consists of a static part, ex.
402
+ # "(/:locale)(/pages/:page)"
403
+ path.sub!(%r{^(\(+)/}, '/\1') if %r{^(\(+[^)]+\))(\(+/:[^)]+\))*$}.match?(path)
404
+ path
405
+ end
406
+
407
+ def self.normalize_name(name)
408
+ normalize_path(name)[1..-1].tr("/", "_")
409
+ end
410
+
411
+ module Base
412
+ # Matches a URL pattern to one or more routes.
413
+ #
414
+ # You should not use the `match` method in your router without specifying an
415
+ # HTTP method.
416
+ #
417
+ # If you want to expose your action to both GET and POST, use:
418
+ #
419
+ # # sets :controller, :action, and :id in params
420
+ # match ':controller/:action/:id', via: [:get, :post]
421
+ #
422
+ # Note that `:controller`, `:action`, and `:id` are interpreted as URL query
423
+ # parameters and thus available through `params` in an action.
424
+ #
425
+ # If you want to expose your action to GET, use `get` in the router:
426
+ #
427
+ # Instead of:
428
+ #
429
+ # match ":controller/:action/:id"
430
+ #
431
+ # Do:
432
+ #
433
+ # get ":controller/:action/:id"
434
+ #
435
+ # Two of these symbols are special, `:controller` maps to the controller and
436
+ # `:action` to the controller's action. A pattern can also map wildcard segments
437
+ # (globs) to params:
438
+ #
439
+ # get 'songs/*category/:title', to: 'songs#show'
440
+ #
441
+ # # 'songs/rock/classic/stairway-to-heaven' sets
442
+ # # params[:category] = 'rock/classic'
443
+ # # params[:title] = 'stairway-to-heaven'
444
+ #
445
+ # To match a wildcard parameter, it must have a name assigned to it. Without a
446
+ # variable name to attach the glob parameter to, the route can't be parsed.
447
+ #
448
+ # When a pattern points to an internal route, the route's `:action` and
449
+ # `:controller` should be set in options or hash shorthand. Examples:
450
+ #
451
+ # match 'photos/:id', to: 'photos#show', via: :get
452
+ # match 'photos/:id', controller: 'photos', action: 'show', via: :get
453
+ #
454
+ # A pattern can also point to a `Rack` endpoint i.e. anything that responds to
455
+ # `call`:
456
+ #
457
+ # match 'photos/:id', to: -> (hash) { [200, {}, ["Coming soon"]] }, via: :get
458
+ # match 'photos/:id', to: PhotoRackApp, via: :get
459
+ # # Yes, controller actions are just rack endpoints
460
+ # match 'photos/:id', to: PhotosController.action(:show), via: :get
461
+ #
462
+ # Because requesting various HTTP verbs with a single action has security
463
+ # implications, you must either specify the actions in the via options or use
464
+ # one of the [HttpHelpers](rdoc-ref:HttpHelpers) instead `match`
465
+ #
466
+ # ### Options
467
+ #
468
+ # Any options not seen here are passed on as params with the URL.
469
+ #
470
+ # :controller
471
+ # : The route's controller.
472
+ #
473
+ # :action
474
+ # : The route's action.
475
+ #
476
+ # :param
477
+ # : Overrides the default resource identifier `:id` (name of the dynamic
478
+ # segment used to generate the routes). You can access that segment from
479
+ # your controller using `params[<:param>]`. In your router:
480
+ #
481
+ # resources :users, param: :name
482
+ #
483
+ # The `users` resource here will have the following routes generated for it:
484
+ #
485
+ # GET /users(.:format)
486
+ # POST /users(.:format)
487
+ # GET /users/new(.:format)
488
+ # GET /users/:name/edit(.:format)
489
+ # GET /users/:name(.:format)
490
+ # PATCH/PUT /users/:name(.:format)
491
+ # DELETE /users/:name(.:format)
492
+ #
493
+ # You can override `ActiveRecord::Base#to_param` of a related model to
494
+ # construct a URL:
495
+ #
496
+ # class User < ActiveRecord::Base
497
+ # def to_param
498
+ # name
499
+ # end
500
+ # end
501
+ #
502
+ # user = User.find_by(name: 'Phusion')
503
+ # user_path(user) # => "/users/Phusion"
504
+ #
505
+ # :path
506
+ # : The path prefix for the routes.
507
+ #
508
+ # :module
509
+ # : The namespace for :controller.
510
+ #
511
+ # match 'path', to: 'c#a', module: 'sekret', controller: 'posts', via: :get
512
+ # # => Sekret::PostsController
513
+ #
514
+ # See `Scoping#namespace` for its scope equivalent.
515
+ #
516
+ # :as
517
+ # : The name used to generate routing helpers.
518
+ #
519
+ # :via
520
+ # : Allowed HTTP verb(s) for route.
521
+ #
522
+ # match 'path', to: 'c#a', via: :get
523
+ # match 'path', to: 'c#a', via: [:get, :post]
524
+ # match 'path', to: 'c#a', via: :all
525
+ #
526
+ # :to
527
+ # : Points to a `Rack` endpoint. Can be an object that responds to `call` or a
528
+ # string representing a controller's action.
529
+ #
530
+ # match 'path', to: 'controller#action', via: :get
531
+ # match 'path', to: -> (env) { [200, {}, ["Success!"]] }, via: :get
532
+ # match 'path', to: RackApp, via: :get
533
+ #
534
+ # :on
535
+ # : Shorthand for wrapping routes in a specific RESTful context. Valid values
536
+ # are `:member`, `:collection`, and `:new`. Only use within `resource(s)`
537
+ # block. For example:
538
+ #
539
+ # resource :bar do
540
+ # match 'foo', to: 'c#a', on: :member, via: [:get, :post]
541
+ # end
542
+ #
543
+ # Is equivalent to:
544
+ #
545
+ # resource :bar do
546
+ # member do
547
+ # match 'foo', to: 'c#a', via: [:get, :post]
548
+ # end
549
+ # end
550
+ #
551
+ # :constraints
552
+ # : Constrains parameters with a hash of regular expressions or an object that
553
+ # responds to `matches?`. In addition, constraints other than path can also
554
+ # be specified with any object that responds to `===` (e.g. String, Array,
555
+ # Range, etc.).
556
+ #
557
+ # match 'path/:id', constraints: { id: /[A-Z]\d{5}/ }, via: :get
558
+ #
559
+ # match 'json_only', constraints: { format: 'json' }, via: :get
560
+ #
561
+ # class PermitList
562
+ # def matches?(request) request.remote_ip == '1.2.3.4' end
563
+ # end
564
+ # match 'path', to: 'c#a', constraints: PermitList.new, via: :get
565
+ #
566
+ # See `Scoping#constraints` for more examples with its scope equivalent.
567
+ #
568
+ # :defaults
569
+ # : Sets defaults for parameters
570
+ #
571
+ # # Sets params[:format] to 'jpg' by default
572
+ # match 'path', to: 'c#a', defaults: { format: 'jpg' }, via: :get
573
+ #
574
+ # See `Scoping#defaults` for its scope equivalent.
575
+ #
576
+ # :anchor
577
+ # : Boolean to anchor a `match` pattern. Default is true. When set to false,
578
+ # the pattern matches any request prefixed with the given path.
579
+ #
580
+ # # Matches any request starting with 'path'
581
+ # match 'path', to: 'c#a', anchor: false, via: :get
582
+ #
583
+ # :format
584
+ # : Allows you to specify the default value for optional `format` segment or
585
+ # disable it by supplying `false`.
586
+ #
587
+ def match(path, options = nil)
588
+ end
589
+
590
+ # Mount a Rack-based application to be used within the application.
591
+ #
592
+ # mount SomeRackApp, at: "some_route"
593
+ #
594
+ # For options, see `match`, as `mount` uses it internally.
595
+ #
596
+ # All mounted applications come with routing helpers to access them. These are
597
+ # named after the class specified, so for the above example the helper is either
598
+ # `some_rack_app_path` or `some_rack_app_url`. To customize this helper's name,
599
+ # use the `:as` option:
600
+ #
601
+ # mount(SomeRackApp, at: "some_route", as: "exciting")
602
+ #
603
+ # This will generate the `exciting_path` and `exciting_url` helpers which can be
604
+ # used to navigate to this mounted app.
605
+ def mount(app = nil, deprecated_options = nil, as: DEFAULT, via: nil, at: nil, defaults: nil, constraints: nil, anchor: false, format: false, path: nil, internal: nil, **mapping, &block)
606
+ if deprecated_options.is_a?(Hash)
607
+ as = assign_deprecated_option(deprecated_options, :as, :mount) if deprecated_options.key?(:as)
608
+ via ||= assign_deprecated_option(deprecated_options, :via, :mount)
609
+ at ||= assign_deprecated_option(deprecated_options, :at, :mount)
610
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :mount)
611
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :mount)
612
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :mount) if deprecated_options.key?(:anchor)
613
+ format = assign_deprecated_option(deprecated_options, :format, :mount) if deprecated_options.key?(:format)
614
+ path ||= assign_deprecated_option(deprecated_options, :path, :mount)
615
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :mount)
616
+ assign_deprecated_options(deprecated_options, mapping, :mount)
617
+ end
618
+
619
+ path_or_action = at
620
+
621
+ if app.nil?
622
+ hash_app, hash_path = mapping.find { |key, _| key.respond_to?(:call) }
623
+ mapping.delete(hash_app) if hash_app
624
+
625
+ app ||= hash_app
626
+ path_or_action ||= hash_path
627
+ end
628
+
629
+ raise ArgumentError, "A rack application must be specified" unless app.respond_to?(:call)
630
+ raise ArgumentError, <<~MSG unless path_or_action
631
+ Must be called with mount point
632
+
633
+ mount SomeRackApp, at: "some_route"
634
+ or
635
+ mount(SomeRackApp => "some_route")
636
+ MSG
637
+
638
+ rails_app = rails_app? app
639
+ as = app_name(app, rails_app) if as == DEFAULT
640
+
641
+ target_as = name_for_action(as, path_or_action)
642
+ via ||= :all
643
+
644
+ match(path_or_action, to: app, as:, via:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, &block)
645
+
646
+ define_generate_prefix(app, target_as) if rails_app
647
+ self
648
+ end
649
+
650
+ def default_url_options=(options)
651
+ @set.default_url_options = options
652
+ end
653
+ alias_method :default_url_options, :default_url_options=
654
+
655
+ def with_default_scope(scope, &block)
656
+ scope(**scope) do
657
+ instance_exec(&block)
658
+ end
659
+ end
660
+
661
+ # Query if the following named route was already defined.
662
+ def has_named_route?(name)
663
+ @set.named_routes.key?(name)
664
+ end
665
+
666
+ private
667
+ def assign_deprecated_option(deprecated_options, key, method_name)
668
+ if (deprecated_value = deprecated_options.delete(key))
669
+ ActionDispatch.deprecator.warn(<<~MSG.squish)
670
+ #{method_name} received a hash argument #{key}. Please use a keyword instead. Support to hash argument will be removed in Rails 8.2.
671
+ MSG
672
+ deprecated_value
673
+ end
674
+ end
675
+
676
+ def assign_deprecated_options(deprecated_options, options, method_name)
677
+ deprecated_options.each do |key, value|
678
+ ActionDispatch.deprecator.warn(<<~MSG.squish)
679
+ #{method_name} received a hash argument #{key}. Please use a keyword instead. Support to hash argument will be removed in Rails 8.2.
680
+ MSG
681
+ options[key] = value
682
+ end
683
+ end
684
+
685
+ def rails_app?(app)
686
+ app.is_a?(Class) && app < Rails::Railtie
687
+ end
688
+
689
+ def app_name(app, rails_app)
690
+ if rails_app
691
+ app.railtie_name
692
+ elsif app.is_a?(Class)
693
+ class_name = app.name
694
+ ActiveSupport::Inflector.underscore(class_name).tr("/", "_")
695
+ end
696
+ end
697
+
698
+ def define_generate_prefix(app, name)
699
+ _route = @set.named_routes.get name
700
+ _routes = @set
701
+ _url_helpers = @set.url_helpers
702
+
703
+ script_namer = ->(options) do
704
+ prefix_options = options.slice(*_route.segment_keys)
705
+ prefix_options[:script_name] = "" if options[:original_script_name]
706
+
707
+ if options[:_recall]
708
+ prefix_options.reverse_merge!(options[:_recall].slice(*_route.segment_keys))
709
+ end
710
+
711
+ # We must actually delete prefix segment keys to avoid passing them to next
712
+ # url_for.
713
+ _route.segment_keys.each { |k| options.delete(k) }
714
+ _url_helpers.public_send("#{name}_path", prefix_options)
715
+ end
716
+
717
+ app.routes.define_mounted_helper(name, script_namer)
718
+
719
+ app.routes.extend Module.new {
720
+ def optimize_routes_generation?; false; end
721
+
722
+ define_method :find_script_name do |options|
723
+ if options.key?(:script_name) && options[:script_name].present?
724
+ super(options)
725
+ else
726
+ script_namer.call(options)
727
+ end
728
+ end
729
+ }
730
+ end
731
+ end
732
+
733
+ module HttpHelpers
734
+ # Define a route that only recognizes HTTP GET. For supported arguments, see
735
+ # [match](rdoc-ref:Base#match)
736
+ #
737
+ # get 'bacon', to: 'food#bacon'
738
+ def get(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: nil, format: nil, path: nil, internal: nil, **mapping, &block)
739
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
740
+ as = assign_deprecated_option(deprecated_options, :as, :get) if deprecated_options.key?(:as)
741
+ to ||= assign_deprecated_option(deprecated_options, :to, :get)
742
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :get)
743
+ action ||= assign_deprecated_option(deprecated_options, :action, :get)
744
+ on ||= assign_deprecated_option(deprecated_options, :on, :get)
745
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :get)
746
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :get)
747
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :get) if deprecated_options.key?(:anchor)
748
+ format = assign_deprecated_option(deprecated_options, :format, :get) if deprecated_options.key?(:format)
749
+ path ||= assign_deprecated_option(deprecated_options, :path, :get)
750
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :get)
751
+ assign_deprecated_options(deprecated_options, mapping, :get)
752
+ end
753
+
754
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: :get, &block)
755
+ self
756
+ end
757
+
758
+ # Define a route that only recognizes HTTP POST. For supported arguments, see
759
+ # [match](rdoc-ref:Base#match)
760
+ #
761
+ # post 'bacon', to: 'food#bacon'
762
+ def post(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: nil, format: nil, path: nil, internal: nil, **mapping, &block)
763
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
764
+ as = assign_deprecated_option(deprecated_options, :as, :post) if deprecated_options.key?(:as)
765
+ to ||= assign_deprecated_option(deprecated_options, :to, :post)
766
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :post)
767
+ action ||= assign_deprecated_option(deprecated_options, :action, :post)
768
+ on ||= assign_deprecated_option(deprecated_options, :on, :post)
769
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :post)
770
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :post)
771
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :post) if deprecated_options.key?(:anchor)
772
+ format = assign_deprecated_option(deprecated_options, :format, :post) if deprecated_options.key?(:format)
773
+ path ||= assign_deprecated_option(deprecated_options, :path, :post)
774
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :post)
775
+ assign_deprecated_options(deprecated_options, mapping, :post)
776
+ end
777
+
778
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: :post, &block)
779
+ self
780
+ end
781
+
782
+ # Define a route that only recognizes HTTP PATCH. For supported arguments, see
783
+ # [match](rdoc-ref:Base#match)
784
+ #
785
+ # patch 'bacon', to: 'food#bacon'
786
+ def patch(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: nil, format: nil, path: nil, internal: nil, **mapping, &block)
787
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
788
+ as = assign_deprecated_option(deprecated_options, :as, :patch) if deprecated_options.key?(:as)
789
+ to ||= assign_deprecated_option(deprecated_options, :to, :patch)
790
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :patch)
791
+ action ||= assign_deprecated_option(deprecated_options, :action, :patch)
792
+ on ||= assign_deprecated_option(deprecated_options, :on, :patch)
793
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :patch)
794
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :patch)
795
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :patch) if deprecated_options.key?(:anchor)
796
+ format = assign_deprecated_option(deprecated_options, :format, :patch) if deprecated_options.key?(:format)
797
+ path ||= assign_deprecated_option(deprecated_options, :path, :patch)
798
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :patch)
799
+ assign_deprecated_options(deprecated_options, mapping, :patch)
800
+ end
801
+
802
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: :patch, &block)
803
+ self
804
+ end
805
+
806
+ # Define a route that only recognizes HTTP PUT. For supported arguments, see
807
+ # [match](rdoc-ref:Base#match)
808
+ #
809
+ # put 'bacon', to: 'food#bacon'
810
+ def put(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: nil, format: nil, path: nil, internal: nil, **mapping, &block)
811
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
812
+ as = assign_deprecated_option(deprecated_options, :as, :put) if deprecated_options.key?(:as)
813
+ to ||= assign_deprecated_option(deprecated_options, :to, :put)
814
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :put)
815
+ action ||= assign_deprecated_option(deprecated_options, :action, :put)
816
+ on ||= assign_deprecated_option(deprecated_options, :on, :put)
817
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :put)
818
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :put)
819
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :put) if deprecated_options.key?(:anchor)
820
+ format = assign_deprecated_option(deprecated_options, :format, :put) if deprecated_options.key?(:format)
821
+ path ||= assign_deprecated_option(deprecated_options, :path, :put)
822
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :put)
823
+ assign_deprecated_options(deprecated_options, mapping, :put)
824
+ end
825
+
826
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: :put, &block)
827
+ self
828
+ end
829
+
830
+ # Define a route that only recognizes HTTP DELETE. For supported arguments, see
831
+ # [match](rdoc-ref:Base#match)
832
+ #
833
+ # delete 'broccoli', to: 'food#broccoli'
834
+ def delete(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: nil, format: nil, path: nil, internal: nil, **mapping, &block)
835
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
836
+ as = assign_deprecated_option(deprecated_options, :as, :delete) if deprecated_options.key?(:as)
837
+ to ||= assign_deprecated_option(deprecated_options, :to, :delete)
838
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :delete)
839
+ action ||= assign_deprecated_option(deprecated_options, :action, :delete)
840
+ on ||= assign_deprecated_option(deprecated_options, :on, :delete)
841
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :delete)
842
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :delete)
843
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :delete) if deprecated_options.key?(:anchor)
844
+ format = assign_deprecated_option(deprecated_options, :format, :delete) if deprecated_options.key?(:format)
845
+ path ||= assign_deprecated_option(deprecated_options, :path, :delete)
846
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :delete)
847
+ assign_deprecated_options(deprecated_options, mapping, :delete)
848
+ end
849
+
850
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: :delete, &block)
851
+ self
852
+ end
853
+
854
+ # Define a route that only recognizes HTTP OPTIONS. For supported arguments, see
855
+ # [match](rdoc-ref:Base#match)
856
+ #
857
+ # options 'carrots', to: 'food#carrots'
858
+ def options(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: false, format: false, path: nil, internal: nil, **mapping, &block)
859
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
860
+ as = assign_deprecated_option(deprecated_options, :as, :options) if deprecated_options.key?(:as)
861
+ to ||= assign_deprecated_option(deprecated_options, :to, :options)
862
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :options)
863
+ action ||= assign_deprecated_option(deprecated_options, :action, :options)
864
+ on ||= assign_deprecated_option(deprecated_options, :on, :options)
865
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :options)
866
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :options)
867
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :options) if deprecated_options.key?(:anchor)
868
+ format = assign_deprecated_option(deprecated_options, :format, :options) if deprecated_options.key?(:format)
869
+ path ||= assign_deprecated_option(deprecated_options, :path, :options)
870
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :options)
871
+ assign_deprecated_options(deprecated_options, mapping, :options)
872
+ end
873
+
874
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: :options, &block)
875
+ self
876
+ end
877
+
878
+ # Define a route that recognizes HTTP CONNECT (and GET) requests. More
879
+ # specifically this recognizes HTTP/1 protocol upgrade requests and HTTP/2
880
+ # CONNECT requests with the protocol pseudo header. For supported arguments,
881
+ # see [match](rdoc-ref:Base#match)
882
+ #
883
+ # connect 'live', to: 'live#index'
884
+ def connect(*path_or_actions, as: DEFAULT, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: false, format: false, path: nil, internal: nil, **mapping, &block)
885
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
886
+ as = assign_deprecated_option(deprecated_options, :as, :connect) if deprecated_options.key?(:as)
887
+ to ||= assign_deprecated_option(deprecated_options, :to, :connect)
888
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :connect)
889
+ action ||= assign_deprecated_option(deprecated_options, :action, :connect)
890
+ on ||= assign_deprecated_option(deprecated_options, :on, :connect)
891
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :connect)
892
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :connect)
893
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :connect) if deprecated_options.key?(:anchor)
894
+ format = assign_deprecated_option(deprecated_options, :format, :connect) if deprecated_options.key?(:format)
895
+ path ||= assign_deprecated_option(deprecated_options, :path, :connect)
896
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :connect)
897
+ assign_deprecated_options(deprecated_options, mapping, :connect)
898
+ end
899
+
900
+ match(*path_or_actions, as:, to:, controller:, action:, on:, defaults:, constraints:, anchor:, format:, path:, internal:, **mapping, via: [:get, :connect], &block)
901
+ self
902
+ end
903
+ end
904
+
905
+ # You may wish to organize groups of controllers under a namespace. Most
906
+ # commonly, you might group a number of administrative controllers under an
907
+ # `admin` namespace. You would place these controllers under the
908
+ # `app/controllers/admin` directory, and you can group them together in your
909
+ # router:
910
+ #
911
+ # namespace "admin" do
912
+ # resources :posts, :comments
913
+ # end
914
+ #
915
+ # This will create a number of routes for each of the posts and comments
916
+ # controller. For `Admin::PostsController`, Rails will create:
917
+ #
918
+ # GET /admin/posts
919
+ # GET /admin/posts/new
920
+ # POST /admin/posts
921
+ # GET /admin/posts/1
922
+ # GET /admin/posts/1/edit
923
+ # PATCH/PUT /admin/posts/1
924
+ # DELETE /admin/posts/1
925
+ #
926
+ # If you want to route /posts (without the prefix /admin) to
927
+ # `Admin::PostsController`, you could use
928
+ #
929
+ # scope module: "admin" do
930
+ # resources :posts
931
+ # end
932
+ #
933
+ # or, for a single case
934
+ #
935
+ # resources :posts, module: "admin"
936
+ #
937
+ # If you want to route /admin/posts to `PostsController` (without the `Admin::`
938
+ # module prefix), you could use
939
+ #
940
+ # scope "/admin" do
941
+ # resources :posts
942
+ # end
943
+ #
944
+ # or, for a single case
945
+ #
946
+ # resources :posts, path: "/admin/posts"
947
+ #
948
+ # In each of these cases, the named routes remain the same as if you did not use
949
+ # scope. In the last case, the following paths map to `PostsController`:
950
+ #
951
+ # GET /admin/posts
952
+ # GET /admin/posts/new
953
+ # POST /admin/posts
954
+ # GET /admin/posts/1
955
+ # GET /admin/posts/1/edit
956
+ # PATCH/PUT /admin/posts/1
957
+ # DELETE /admin/posts/1
958
+ module Scoping
959
+ # Scopes a set of routes to the given default options.
960
+ #
961
+ # Take the following route definition as an example:
962
+ #
963
+ # scope path: ":account_id", as: "account" do
964
+ # resources :projects
965
+ # end
966
+ #
967
+ # This generates helpers such as `account_projects_path`, just like `resources`
968
+ # does. The difference here being that the routes generated are like
969
+ # /:account_id/projects, rather than /accounts/:account_id/projects.
970
+ #
971
+ # ### Options
972
+ #
973
+ # Takes same options as `Base#match` and `Resources#resources`.
974
+ #
975
+ # # route /posts (without the prefix /admin) to Admin::PostsController
976
+ # scope module: "admin" do
977
+ # resources :posts
978
+ # end
979
+ #
980
+ # # prefix the posts resource's requests with '/admin'
981
+ # scope path: "/admin" do
982
+ # resources :posts
983
+ # end
984
+ #
985
+ # # prefix the routing helper name: sekret_posts_path instead of posts_path
986
+ # scope as: "sekret" do
987
+ # resources :posts
988
+ # end
989
+ def scope(*args, only: nil, except: nil, **options)
990
+ if args.grep(Hash).any? && (deprecated_options = args.extract_options!)
991
+ only ||= assign_deprecated_option(deprecated_options, :only, :scope)
992
+ only ||= assign_deprecated_option(deprecated_options, :except, :scope)
993
+ assign_deprecated_options(deprecated_options, options, :scope)
994
+ end
995
+
996
+ scope = {}
997
+
998
+ options[:path] = args.flatten.join("/") if args.any?
999
+ options[:constraints] ||= {}
1000
+
1001
+ unless nested_scope?
1002
+ options[:shallow_path] ||= options[:path] if options.key?(:path)
1003
+ options[:shallow_prefix] ||= options[:as] if options.key?(:as)
1004
+ end
1005
+
1006
+ if options[:constraints].is_a?(Hash)
1007
+ defaults = options[:constraints].select do |k, v|
1008
+ URL_OPTIONS.include?(k) && (v.is_a?(String) || v.is_a?(Integer))
1009
+ end
1010
+
1011
+ options[:defaults] = defaults.merge(options[:defaults] || {})
1012
+ else
1013
+ block, options[:constraints] = options[:constraints], {}
1014
+ end
1015
+
1016
+ if only || except
1017
+ scope[:action_options] = { only:, except: }
1018
+ end
1019
+
1020
+ if options.key? :anchor
1021
+ raise ArgumentError, "anchor is ignored unless passed to `match`"
1022
+ end
1023
+
1024
+ @scope.options.each do |option|
1025
+ if option == :blocks
1026
+ value = block
1027
+ elsif option == :options
1028
+ value = options
1029
+ else
1030
+ value = options.delete(option) { POISON }
1031
+ end
1032
+
1033
+ unless POISON == value
1034
+ scope[option] = send("merge_#{option}_scope", @scope[option], value)
1035
+ end
1036
+ end
1037
+
1038
+ @scope = @scope.new scope
1039
+ yield
1040
+ self
1041
+ ensure
1042
+ @scope = @scope.parent
1043
+ end
1044
+
1045
+ POISON = Object.new # :nodoc:
1046
+
1047
+ # Scopes routes to a specific controller
1048
+ #
1049
+ # controller "food" do
1050
+ # match "bacon", action: :bacon, via: :get
1051
+ # end
1052
+ def controller(controller)
1053
+ @scope = @scope.new(controller: controller)
1054
+ yield
1055
+ ensure
1056
+ @scope = @scope.parent
1057
+ end
1058
+
1059
+ # Scopes routes to a specific namespace. For example:
1060
+ #
1061
+ # namespace :admin do
1062
+ # resources :posts
1063
+ # end
1064
+ #
1065
+ # This generates the following routes:
1066
+ #
1067
+ # admin_posts GET /admin/posts(.:format) admin/posts#index
1068
+ # admin_posts POST /admin/posts(.:format) admin/posts#create
1069
+ # new_admin_post GET /admin/posts/new(.:format) admin/posts#new
1070
+ # edit_admin_post GET /admin/posts/:id/edit(.:format) admin/posts#edit
1071
+ # admin_post GET /admin/posts/:id(.:format) admin/posts#show
1072
+ # admin_post PATCH/PUT /admin/posts/:id(.:format) admin/posts#update
1073
+ # admin_post DELETE /admin/posts/:id(.:format) admin/posts#destroy
1074
+ #
1075
+ # ### Options
1076
+ #
1077
+ # The `:path`, `:as`, `:module`, `:shallow_path`, and `:shallow_prefix` options
1078
+ # all default to the name of the namespace.
1079
+ #
1080
+ # For options, see `Base#match`. For `:shallow_path` option, see
1081
+ # `Resources#resources`.
1082
+ #
1083
+ # # accessible through /sekret/posts rather than /admin/posts
1084
+ # namespace :admin, path: "sekret" do
1085
+ # resources :posts
1086
+ # end
1087
+ #
1088
+ # # maps to Sekret::PostsController rather than Admin::PostsController
1089
+ # namespace :admin, module: "sekret" do
1090
+ # resources :posts
1091
+ # end
1092
+ #
1093
+ # # generates sekret_posts_path rather than admin_posts_path
1094
+ # namespace :admin, as: "sekret" do
1095
+ # resources :posts
1096
+ # end
1097
+ def namespace(name, deprecated_options = nil, as: DEFAULT, path: DEFAULT, shallow_path: DEFAULT, shallow_prefix: DEFAULT, **options, &block)
1098
+ if deprecated_options.is_a?(Hash)
1099
+ as = assign_deprecated_option(deprecated_options, :as, :namespace) if deprecated_options.key?(:as)
1100
+ path ||= assign_deprecated_option(deprecated_options, :path, :namespace) if deprecated_options.key?(:path)
1101
+ shallow_path ||= assign_deprecated_option(deprecated_options, :shallow_path, :namespace) if deprecated_options.key?(:shallow_path)
1102
+ shallow_prefix ||= assign_deprecated_option(deprecated_options, :shallow_prefix, :namespace) if deprecated_options.key?(:shallow_prefix)
1103
+ assign_deprecated_options(deprecated_options, options, :namespace)
1104
+ end
1105
+
1106
+ name = name.to_s
1107
+ options[:module] ||= name
1108
+ as = name if as == DEFAULT
1109
+ path = name if path == DEFAULT
1110
+ shallow_path = path if shallow_path == DEFAULT
1111
+ shallow_prefix = as if shallow_prefix == DEFAULT
1112
+
1113
+ path_scope(path) do
1114
+ scope(**options, as:, shallow_path:, shallow_prefix:, &block)
1115
+ end
1116
+ end
1117
+
1118
+ # ### Parameter Restriction
1119
+ # Allows you to constrain the nested routes based on a set of rules. For
1120
+ # instance, in order to change the routes to allow for a dot character in the
1121
+ # `id` parameter:
1122
+ #
1123
+ # constraints(id: /\d+\.\d+/) do
1124
+ # resources :posts
1125
+ # end
1126
+ #
1127
+ # Now routes such as `/posts/1` will no longer be valid, but `/posts/1.1` will
1128
+ # be. The `id` parameter must match the constraint passed in for this example.
1129
+ #
1130
+ # You may use this to also restrict other parameters:
1131
+ #
1132
+ # resources :posts do
1133
+ # constraints(post_id: /\d+\.\d+/) do
1134
+ # resources :comments
1135
+ # end
1136
+ # end
1137
+ #
1138
+ # ### Restricting based on IP
1139
+ #
1140
+ # Routes can also be constrained to an IP or a certain range of IP addresses:
1141
+ #
1142
+ # constraints(ip: /192\.168\.\d+\.\d+/) do
1143
+ # resources :posts
1144
+ # end
1145
+ #
1146
+ # Any user connecting from the 192.168.* range will be able to see this
1147
+ # resource, where as any user connecting outside of this range will be told
1148
+ # there is no such route.
1149
+ #
1150
+ # ### Dynamic request matching
1151
+ #
1152
+ # Requests to routes can be constrained based on specific criteria:
1153
+ #
1154
+ # constraints(-> (req) { /iPhone/.match?(req.env["HTTP_USER_AGENT"]) }) do
1155
+ # resources :iphones
1156
+ # end
1157
+ #
1158
+ # You are able to move this logic out into a class if it is too complex for
1159
+ # routes. This class must have a `matches?` method defined on it which either
1160
+ # returns `true` if the user should be given access to that route, or `false` if
1161
+ # the user should not.
1162
+ #
1163
+ # class Iphone
1164
+ # def self.matches?(request)
1165
+ # /iPhone/.match?(request.env["HTTP_USER_AGENT"])
1166
+ # end
1167
+ # end
1168
+ #
1169
+ # An expected place for this code would be `lib/constraints`.
1170
+ #
1171
+ # This class is then used like this:
1172
+ #
1173
+ # constraints(Iphone) do
1174
+ # resources :iphones
1175
+ # end
1176
+ def constraints(constraints = {}, &block)
1177
+ scope(constraints: constraints, &block)
1178
+ end
1179
+
1180
+ # Allows you to set default parameters for a route, such as this:
1181
+ #
1182
+ # defaults id: 'home' do
1183
+ # match 'scoped_pages/(:id)', to: 'pages#show'
1184
+ # end
1185
+ #
1186
+ # Using this, the `:id` parameter here will default to 'home'.
1187
+ def defaults(defaults = {})
1188
+ @scope = @scope.new(defaults: merge_defaults_scope(@scope[:defaults], defaults))
1189
+ yield
1190
+ ensure
1191
+ @scope = @scope.parent
1192
+ end
1193
+
1194
+ private
1195
+ def merge_path_scope(parent, child)
1196
+ Mapper.normalize_path("#{parent}/#{child}")
1197
+ end
1198
+
1199
+ def merge_shallow_path_scope(parent, child)
1200
+ Mapper.normalize_path("#{parent}/#{child}")
1201
+ end
1202
+
1203
+ def merge_as_scope(parent, child)
1204
+ parent ? "#{parent}_#{child}" : child
1205
+ end
1206
+
1207
+ def merge_shallow_prefix_scope(parent, child)
1208
+ parent ? "#{parent}_#{child}" : child
1209
+ end
1210
+
1211
+ def merge_module_scope(parent, child)
1212
+ parent ? "#{parent}/#{child}" : child
1213
+ end
1214
+
1215
+ def merge_controller_scope(parent, child)
1216
+ child
1217
+ end
1218
+
1219
+ def merge_action_scope(parent, child)
1220
+ child
1221
+ end
1222
+
1223
+ def merge_via_scope(parent, child)
1224
+ child
1225
+ end
1226
+
1227
+ def merge_format_scope(parent, child)
1228
+ child
1229
+ end
1230
+
1231
+ def merge_path_names_scope(parent, child)
1232
+ merge_options_scope(parent, child)
1233
+ end
1234
+
1235
+ def merge_constraints_scope(parent, child)
1236
+ merge_options_scope(parent, child)
1237
+ end
1238
+
1239
+ def merge_defaults_scope(parent, child)
1240
+ merge_options_scope(parent, child)
1241
+ end
1242
+
1243
+ def merge_blocks_scope(parent, child)
1244
+ merged = parent ? parent.dup : []
1245
+ merged << child if child
1246
+ merged
1247
+ end
1248
+
1249
+ def merge_options_scope(parent, child)
1250
+ (parent || {}).merge(child)
1251
+ end
1252
+
1253
+ def merge_shallow_scope(parent, child)
1254
+ child ? true : false
1255
+ end
1256
+
1257
+ def merge_to_scope(parent, child)
1258
+ child
1259
+ end
1260
+ end
1261
+
1262
+ # Resource routing allows you to quickly declare all of the common routes for a
1263
+ # given resourceful controller. Instead of declaring separate routes for your
1264
+ # `index`, `show`, `new`, `edit`, `create`, `update`, and `destroy` actions, a
1265
+ # resourceful route declares them in a single line of code:
1266
+ #
1267
+ # resources :photos
1268
+ #
1269
+ # Sometimes, you have a resource that clients always look up without referencing
1270
+ # an ID. A common example, /profile always shows the profile of the currently
1271
+ # logged in user. In this case, you can use a singular resource to map /profile
1272
+ # (rather than /profile/:id) to the show action.
1273
+ #
1274
+ # resource :profile
1275
+ #
1276
+ # It's common to have resources that are logically children of other resources:
1277
+ #
1278
+ # resources :magazines do
1279
+ # resources :ads
1280
+ # end
1281
+ #
1282
+ # You may wish to organize groups of controllers under a namespace. Most
1283
+ # commonly, you might group a number of administrative controllers under an
1284
+ # `admin` namespace. You would place these controllers under the
1285
+ # `app/controllers/admin` directory, and you can group them together in your
1286
+ # router:
1287
+ #
1288
+ # namespace "admin" do
1289
+ # resources :posts, :comments
1290
+ # end
1291
+ #
1292
+ # By default the `:id` parameter doesn't accept dots. If you need to use dots as
1293
+ # part of the `:id` parameter add a constraint which overrides this restriction,
1294
+ # e.g:
1295
+ #
1296
+ # resources :articles, id: /[^\/]+/
1297
+ #
1298
+ # This allows any character other than a slash as part of your `:id`.
1299
+ module Resources
1300
+ # CANONICAL_ACTIONS holds all actions that does not need a prefix or a path
1301
+ # appended since they fit properly in their scope level.
1302
+ VALID_ON_OPTIONS = [:new, :collection, :member]
1303
+ RESOURCE_OPTIONS = [:as, :controller, :path, :only, :except, :param, :concerns]
1304
+ CANONICAL_ACTIONS = %w(index create new show update destroy)
1305
+
1306
+ class Resource # :nodoc:
1307
+ class << self
1308
+ def default_actions(api_only)
1309
+ if api_only
1310
+ [:index, :create, :show, :update, :destroy]
1311
+ else
1312
+ [:index, :create, :new, :show, :update, :destroy, :edit]
1313
+ end
1314
+ end
1315
+ end
1316
+
1317
+ attr_reader :controller, :path, :param
1318
+
1319
+ def initialize(entities, api_only, shallow, only: nil, except: nil, **options)
1320
+ if options[:param].to_s.include?(":")
1321
+ raise ArgumentError, ":param option can't contain colons"
1322
+ end
1323
+
1324
+ valid_actions = self.class.default_actions(false) # ignore api_only for this validation
1325
+ if (invalid_actions = invalid_only_except_options(valid_actions, only:, except:).presence)
1326
+ error_prefix = "Route `resource#{"s" unless singleton?} :#{entities}`"
1327
+ raise ArgumentError, "#{error_prefix} - :only and :except must include only #{valid_actions}, but also included #{invalid_actions}"
1328
+ end
1329
+
1330
+ @name = entities.to_s
1331
+ @path = (options[:path] || @name).to_s
1332
+ @controller = (options[:controller] || @name).to_s
1333
+ @as = options[:as]
1334
+ @param = (options[:param] || :id).to_sym
1335
+ @options = options
1336
+ @shallow = shallow
1337
+ @api_only = api_only
1338
+ @only = only
1339
+ @except = except
1340
+ end
1341
+
1342
+ def default_actions
1343
+ self.class.default_actions(@api_only)
1344
+ end
1345
+
1346
+ def actions
1347
+ if @except
1348
+ available_actions - Array(@except).map(&:to_sym)
1349
+ else
1350
+ available_actions
1351
+ end
1352
+ end
1353
+
1354
+ def available_actions
1355
+ if @only
1356
+ Array(@only).map(&:to_sym)
1357
+ else
1358
+ default_actions
1359
+ end
1360
+ end
1361
+
1362
+ def name
1363
+ @as || @name
1364
+ end
1365
+
1366
+ def plural
1367
+ @plural ||= name.to_s
1368
+ end
1369
+
1370
+ def singular
1371
+ @singular ||= name.to_s.singularize
1372
+ end
1373
+
1374
+ alias :member_name :singular
1375
+
1376
+ # Checks for uncountable plurals, and appends "_index" if the plural and
1377
+ # singular form are the same.
1378
+ def collection_name
1379
+ singular == plural ? "#{plural}_index" : plural
1380
+ end
1381
+
1382
+ def resource_scope
1383
+ controller
1384
+ end
1385
+
1386
+ alias :collection_scope :path
1387
+
1388
+ def member_scope
1389
+ "#{path}/:#{param}"
1390
+ end
1391
+
1392
+ alias :shallow_scope :member_scope
1393
+
1394
+ def new_scope(new_path)
1395
+ "#{path}/#{new_path}"
1396
+ end
1397
+
1398
+ def nested_param
1399
+ :"#{singular}_#{param}"
1400
+ end
1401
+
1402
+ def nested_scope
1403
+ "#{path}/:#{nested_param}"
1404
+ end
1405
+
1406
+ def shallow?
1407
+ @shallow
1408
+ end
1409
+
1410
+ def singleton?; false; end
1411
+
1412
+ private
1413
+ def invalid_only_except_options(valid_actions, only:, except:)
1414
+ [only, except].flatten.compact.uniq.map(&:to_sym) - valid_actions
1415
+ end
1416
+ end
1417
+
1418
+ class SingletonResource < Resource # :nodoc:
1419
+ class << self
1420
+ def default_actions(api_only)
1421
+ if api_only
1422
+ [:show, :create, :update, :destroy]
1423
+ else
1424
+ [:show, :create, :update, :destroy, :new, :edit]
1425
+ end
1426
+ end
1427
+ end
1428
+
1429
+ def initialize(entities, api_only, shallow, **options)
1430
+ super
1431
+ @as = nil
1432
+ @controller = (options[:controller] || plural).to_s
1433
+ @as = options[:as]
1434
+ end
1435
+
1436
+ def default_actions
1437
+ self.class.default_actions(@api_only)
1438
+ end
1439
+
1440
+ def plural
1441
+ @plural ||= name.to_s.pluralize
1442
+ end
1443
+
1444
+ def singular
1445
+ @singular ||= name.to_s
1446
+ end
1447
+
1448
+ alias :member_name :singular
1449
+ alias :collection_name :singular
1450
+
1451
+ alias :member_scope :path
1452
+ alias :nested_scope :path
1453
+
1454
+ def singleton?; true; end
1455
+ end
1456
+
1457
+ def resources_path_names(options)
1458
+ @scope[:path_names].merge!(options)
1459
+ end
1460
+
1461
+ # Sometimes, you have a resource that clients always look up without referencing
1462
+ # an ID. A common example, /profile always shows the profile of the currently
1463
+ # logged in user. In this case, you can use a singular resource to map /profile
1464
+ # (rather than /profile/:id) to the show action:
1465
+ #
1466
+ # resource :profile
1467
+ #
1468
+ # This creates six different routes in your application, all mapping to the
1469
+ # `Profiles` controller (note that the controller is named after the plural):
1470
+ #
1471
+ # GET /profile/new
1472
+ # GET /profile
1473
+ # GET /profile/edit
1474
+ # PATCH/PUT /profile
1475
+ # DELETE /profile
1476
+ # POST /profile
1477
+ #
1478
+ # If you want instances of a model to work with this resource via record
1479
+ # identification (e.g. in `form_with` or `redirect_to`), you will need to call
1480
+ # [resolve](rdoc-ref:CustomUrls#resolve):
1481
+ #
1482
+ # resource :profile
1483
+ # resolve('Profile') { [:profile] }
1484
+ #
1485
+ # # Enables this to work with singular routes:
1486
+ # form_with(model: @profile) {}
1487
+ #
1488
+ # ### Options
1489
+ # Takes same options as [resources](rdoc-ref:#resources)
1490
+ def resource(*resources, concerns: nil, **options, &block)
1491
+ if resources.grep(Hash).any? && (deprecated_options = resources.extract_options!)
1492
+ concerns = assign_deprecated_option(deprecated_options, :concerns, :resource) if deprecated_options.key?(:concerns)
1493
+ assign_deprecated_options(deprecated_options, options, :resource)
1494
+ end
1495
+
1496
+ if apply_common_behavior_for(:resource, resources, concerns:, **options, &block)
1497
+ return self
1498
+ end
1499
+
1500
+ with_scope_level(:resource) do
1501
+ options = apply_action_options :resource, options
1502
+ resource_scope(SingletonResource.new(resources.pop, api_only?, @scope[:shallow], **options)) do
1503
+ yield if block_given?
1504
+
1505
+ concerns(*concerns) if concerns
1506
+
1507
+ new do
1508
+ get :new
1509
+ end if parent_resource.actions.include?(:new)
1510
+
1511
+ set_member_mappings_for_resource
1512
+
1513
+ collection do
1514
+ post :create
1515
+ end if parent_resource.actions.include?(:create)
1516
+ end
1517
+ end
1518
+
1519
+ self
1520
+ end
1521
+
1522
+ # In Rails, a resourceful route provides a mapping between HTTP verbs and URLs
1523
+ # and controller actions. By convention, each action also maps to particular
1524
+ # CRUD operations in a database. A single entry in the routing file, such as
1525
+ #
1526
+ # resources :photos
1527
+ #
1528
+ # creates seven different routes in your application, all mapping to the
1529
+ # `Photos` controller:
1530
+ #
1531
+ # GET /photos
1532
+ # GET /photos/new
1533
+ # POST /photos
1534
+ # GET /photos/:id
1535
+ # GET /photos/:id/edit
1536
+ # PATCH/PUT /photos/:id
1537
+ # DELETE /photos/:id
1538
+ #
1539
+ # Resources can also be nested infinitely by using this block syntax:
1540
+ #
1541
+ # resources :photos do
1542
+ # resources :comments
1543
+ # end
1544
+ #
1545
+ # This generates the following comments routes:
1546
+ #
1547
+ # GET /photos/:photo_id/comments
1548
+ # GET /photos/:photo_id/comments/new
1549
+ # POST /photos/:photo_id/comments
1550
+ # GET /photos/:photo_id/comments/:id
1551
+ # GET /photos/:photo_id/comments/:id/edit
1552
+ # PATCH/PUT /photos/:photo_id/comments/:id
1553
+ # DELETE /photos/:photo_id/comments/:id
1554
+ #
1555
+ # ### Options
1556
+ # Takes same options as [match](rdoc-ref:Base#match) as well as:
1557
+ #
1558
+ # :path_names
1559
+ # : Allows you to change the segment component of the `edit` and `new`
1560
+ # actions. Actions not specified are not changed.
1561
+ #
1562
+ # resources :posts, path_names: { new: "brand_new" }
1563
+ #
1564
+ # The above example will now change /posts/new to /posts/brand_new.
1565
+ #
1566
+ # :path
1567
+ # : Allows you to change the path prefix for the resource.
1568
+ #
1569
+ # resources :posts, path: 'postings'
1570
+ #
1571
+ # The resource and all segments will now route to /postings instead of
1572
+ # /posts.
1573
+ #
1574
+ # :only
1575
+ # : Only generate routes for the given actions.
1576
+ #
1577
+ # resources :cows, only: :show
1578
+ # resources :cows, only: [:show, :index]
1579
+ #
1580
+ # :except
1581
+ # : Generate all routes except for the given actions.
1582
+ #
1583
+ # resources :cows, except: :show
1584
+ # resources :cows, except: [:show, :index]
1585
+ #
1586
+ # :shallow
1587
+ # : Generates shallow routes for nested resource(s). When placed on a parent
1588
+ # resource, generates shallow routes for all nested resources.
1589
+ #
1590
+ # resources :posts, shallow: true do
1591
+ # resources :comments
1592
+ # end
1593
+ #
1594
+ # Is the same as:
1595
+ #
1596
+ # resources :posts do
1597
+ # resources :comments, except: [:show, :edit, :update, :destroy]
1598
+ # end
1599
+ # resources :comments, only: [:show, :edit, :update, :destroy]
1600
+ #
1601
+ # This allows URLs for resources that otherwise would be deeply nested such
1602
+ # as a comment on a blog post like `/posts/a-long-permalink/comments/1234`
1603
+ # to be shortened to just `/comments/1234`.
1604
+ #
1605
+ # Set `shallow: false` on a child resource to ignore a parent's shallow
1606
+ # parameter.
1607
+ #
1608
+ # :shallow_path
1609
+ # : Prefixes nested shallow routes with the specified path.
1610
+ #
1611
+ # scope shallow_path: "sekret" do
1612
+ # resources :posts do
1613
+ # resources :comments, shallow: true
1614
+ # end
1615
+ # end
1616
+ #
1617
+ # The `comments` resource here will have the following routes generated for
1618
+ # it:
1619
+ #
1620
+ # post_comments GET /posts/:post_id/comments(.:format)
1621
+ # post_comments POST /posts/:post_id/comments(.:format)
1622
+ # new_post_comment GET /posts/:post_id/comments/new(.:format)
1623
+ # edit_comment GET /sekret/comments/:id/edit(.:format)
1624
+ # comment GET /sekret/comments/:id(.:format)
1625
+ # comment PATCH/PUT /sekret/comments/:id(.:format)
1626
+ # comment DELETE /sekret/comments/:id(.:format)
1627
+ #
1628
+ # :shallow_prefix
1629
+ # : Prefixes nested shallow route names with specified prefix.
1630
+ #
1631
+ # scope shallow_prefix: "sekret" do
1632
+ # resources :posts do
1633
+ # resources :comments, shallow: true
1634
+ # end
1635
+ # end
1636
+ #
1637
+ # The `comments` resource here will have the following routes generated for
1638
+ # it:
1639
+ #
1640
+ # post_comments GET /posts/:post_id/comments(.:format)
1641
+ # post_comments POST /posts/:post_id/comments(.:format)
1642
+ # new_post_comment GET /posts/:post_id/comments/new(.:format)
1643
+ # edit_sekret_comment GET /comments/:id/edit(.:format)
1644
+ # sekret_comment GET /comments/:id(.:format)
1645
+ # sekret_comment PATCH/PUT /comments/:id(.:format)
1646
+ # sekret_comment DELETE /comments/:id(.:format)
1647
+ #
1648
+ # :format
1649
+ # : Allows you to specify the default value for optional `format` segment or
1650
+ # disable it by supplying `false`.
1651
+ #
1652
+ # :param
1653
+ # : Allows you to override the default param name of `:id` in the URL.
1654
+ #
1655
+ #
1656
+ # ### Examples
1657
+ #
1658
+ # # routes call Admin::PostsController
1659
+ # resources :posts, module: "admin"
1660
+ #
1661
+ # # resource actions are at /admin/posts.
1662
+ # resources :posts, path: "admin/posts"
1663
+ def resources(*resources, concerns: nil, **options, &block)
1664
+ if resources.grep(Hash).any? && (deprecated_options = resources.extract_options!)
1665
+ concerns = assign_deprecated_option(deprecated_options, :concerns, :resources) if deprecated_options.key?(:concerns)
1666
+ assign_deprecated_options(deprecated_options, options, :resources)
1667
+ end
1668
+
1669
+ if apply_common_behavior_for(:resources, resources, concerns:, **options, &block)
1670
+ return self
1671
+ end
1672
+
1673
+ with_scope_level(:resources) do
1674
+ options = apply_action_options :resources, options
1675
+ resource_scope(Resource.new(resources.pop, api_only?, @scope[:shallow], **options)) do
1676
+ yield if block_given?
1677
+
1678
+ concerns(*concerns) if concerns
1679
+
1680
+ collection do
1681
+ get :index if parent_resource.actions.include?(:index)
1682
+ post :create if parent_resource.actions.include?(:create)
1683
+ end
1684
+
1685
+ new do
1686
+ get :new
1687
+ end if parent_resource.actions.include?(:new)
1688
+
1689
+ set_member_mappings_for_resource
1690
+ end
1691
+ end
1692
+
1693
+ self
1694
+ end
1695
+
1696
+ # To add a route to the collection:
1697
+ #
1698
+ # resources :photos do
1699
+ # collection do
1700
+ # get 'search'
1701
+ # end
1702
+ # end
1703
+ #
1704
+ # This will enable Rails to recognize paths such as `/photos/search` with GET,
1705
+ # and route to the search action of `PhotosController`. It will also create the
1706
+ # `search_photos_url` and `search_photos_path` route helpers.
1707
+ def collection(&block)
1708
+ unless resource_scope?
1709
+ raise ArgumentError, "can't use collection outside resource(s) scope"
1710
+ end
1711
+
1712
+ with_scope_level(:collection) do
1713
+ path_scope(parent_resource.collection_scope, &block)
1714
+ end
1715
+ end
1716
+
1717
+ # To add a member route, add a member block into the resource block:
1718
+ #
1719
+ # resources :photos do
1720
+ # member do
1721
+ # get 'preview'
1722
+ # end
1723
+ # end
1724
+ #
1725
+ # This will recognize `/photos/1/preview` with GET, and route to the preview
1726
+ # action of `PhotosController`. It will also create the `preview_photo_url` and
1727
+ # `preview_photo_path` helpers.
1728
+ def member(&block)
1729
+ unless resource_scope?
1730
+ raise ArgumentError, "can't use member outside resource(s) scope"
1731
+ end
1732
+
1733
+ with_scope_level(:member) do
1734
+ if shallow?
1735
+ shallow_scope {
1736
+ path_scope(parent_resource.member_scope, &block)
1737
+ }
1738
+ else
1739
+ path_scope(parent_resource.member_scope, &block)
1740
+ end
1741
+ end
1742
+ end
1743
+
1744
+ def new(&block)
1745
+ unless resource_scope?
1746
+ raise ArgumentError, "can't use new outside resource(s) scope"
1747
+ end
1748
+
1749
+ with_scope_level(:new) do
1750
+ path_scope(parent_resource.new_scope(action_path(:new)), &block)
1751
+ end
1752
+ end
1753
+
1754
+ def nested(&block)
1755
+ unless resource_scope?
1756
+ raise ArgumentError, "can't use nested outside resource(s) scope"
1757
+ end
1758
+
1759
+ with_scope_level(:nested) do
1760
+ if shallow? && shallow_nesting_depth >= 1
1761
+ shallow_scope do
1762
+ path_scope(parent_resource.nested_scope) do
1763
+ scope(**nested_options, &block)
1764
+ end
1765
+ end
1766
+ else
1767
+ path_scope(parent_resource.nested_scope) do
1768
+ scope(**nested_options, &block)
1769
+ end
1770
+ end
1771
+ end
1772
+ end
1773
+
1774
+ # See ActionDispatch::Routing::Mapper::Scoping#namespace.
1775
+ def namespace(name, deprecated_options = nil, as: DEFAULT, path: DEFAULT, shallow_path: DEFAULT, shallow_prefix: DEFAULT, **options, &block)
1776
+ if resource_scope?
1777
+ nested { super }
1778
+ else
1779
+ super
1780
+ end
1781
+ end
1782
+
1783
+ def shallow
1784
+ @scope = @scope.new(shallow: true)
1785
+ yield
1786
+ ensure
1787
+ @scope = @scope.parent
1788
+ end
1789
+
1790
+ def shallow?
1791
+ !parent_resource.singleton? && @scope[:shallow]
1792
+ end
1793
+
1794
+ # Loads another routes file with the given `name` located inside the
1795
+ # `config/routes` directory. In that file, you can use the normal routing DSL,
1796
+ # but *do not* surround it with a `Rails.application.routes.draw` block.
1797
+ #
1798
+ # # config/routes.rb
1799
+ # Rails.application.routes.draw do
1800
+ # draw :admin # Loads `config/routes/admin.rb`
1801
+ # draw "third_party/some_gem" # Loads `config/routes/third_party/some_gem.rb`
1802
+ # end
1803
+ #
1804
+ # # config/routes/admin.rb
1805
+ # namespace :admin do
1806
+ # resources :accounts
1807
+ # end
1808
+ #
1809
+ # # config/routes/third_party/some_gem.rb
1810
+ # mount SomeGem::Engine, at: "/some_gem"
1811
+ #
1812
+ # **CAUTION:** Use this feature with care. Having multiple routes files can
1813
+ # negatively impact discoverability and readability. For most applications —
1814
+ # even those with a few hundred routes — it's easier for developers to have a
1815
+ # single routes file.
1816
+ def draw(name)
1817
+ path = @draw_paths.find do |_path|
1818
+ File.exist? "#{_path}/#{name}.rb"
1819
+ end
1820
+
1821
+ unless path
1822
+ msg = "Your router tried to #draw the external file #{name}.rb,\n" \
1823
+ "but the file was not found in:\n\n"
1824
+ msg += @draw_paths.map { |_path| " * #{_path}" }.join("\n")
1825
+ raise ArgumentError, msg
1826
+ end
1827
+
1828
+ route_path = "#{path}/#{name}.rb"
1829
+ instance_eval(File.read(route_path), route_path.to_s)
1830
+ end
1831
+
1832
+ # Matches a URL pattern to one or more routes. For more information, see
1833
+ # [match](rdoc-ref:Base#match).
1834
+ #
1835
+ # match 'path', to: 'controller#action', via: :post
1836
+ # match 'otherpath', on: :member, via: :get
1837
+ def match(*path_or_actions, as: DEFAULT, via: nil, to: nil, controller: nil, action: nil, on: nil, defaults: nil, constraints: nil, anchor: nil, format: nil, path: nil, internal: nil, **mapping, &block)
1838
+ if path_or_actions.grep(Hash).any? && (deprecated_options = path_or_actions.extract_options!)
1839
+ as = assign_deprecated_option(deprecated_options, :as, :match) if deprecated_options.key?(:as)
1840
+ via ||= assign_deprecated_option(deprecated_options, :via, :match)
1841
+ to ||= assign_deprecated_option(deprecated_options, :to, :match)
1842
+ controller ||= assign_deprecated_option(deprecated_options, :controller, :match)
1843
+ action ||= assign_deprecated_option(deprecated_options, :action, :match)
1844
+ on ||= assign_deprecated_option(deprecated_options, :on, :match)
1845
+ defaults ||= assign_deprecated_option(deprecated_options, :defaults, :match)
1846
+ constraints ||= assign_deprecated_option(deprecated_options, :constraints, :match)
1847
+ anchor = assign_deprecated_option(deprecated_options, :anchor, :match) if deprecated_options.key?(:anchor)
1848
+ format = assign_deprecated_option(deprecated_options, :format, :match) if deprecated_options.key?(:format)
1849
+ path ||= assign_deprecated_option(deprecated_options, :path, :match)
1850
+ internal ||= assign_deprecated_option(deprecated_options, :internal, :match)
1851
+ assign_deprecated_options(deprecated_options, mapping, :match)
1852
+ end
1853
+
1854
+ raise ArgumentError, "Wrong number of arguments (expect 1, got #{path_or_actions.count})" if path_or_actions.count > 1
1855
+
1856
+ if path_or_actions.none? && mapping.any?
1857
+ hash_path, hash_to = mapping.find { |key, _| key.is_a?(String) }
1858
+ if hash_path.nil?
1859
+ raise ArgumentError, "Route path not specified"
1860
+ else
1861
+ mapping.delete(hash_path)
1862
+ end
1863
+
1864
+ if hash_path
1865
+ path_or_actions.push hash_path
1866
+ case hash_to
1867
+ when Symbol
1868
+ action ||= hash_to
1869
+ when String
1870
+ if hash_to.include?("#")
1871
+ to ||= hash_to
1872
+ else
1873
+ controller ||= hash_to
1874
+ end
1875
+ else
1876
+ to ||= hash_to
1877
+ end
1878
+ end
1879
+ end
1880
+
1881
+ path_or_actions.each do |path_or_action|
1882
+ if defaults
1883
+ defaults(defaults) { map_match(path_or_action, as:, via:, to:, controller:, action:, on:, constraints:, anchor:, format:, path:, internal:, mapping:, &block) }
1884
+ else
1885
+ map_match(path_or_action, as:, via:, to:, controller:, action:, on:, constraints:, anchor:, format:, path:, internal:, mapping:, &block)
1886
+ end
1887
+ end
1888
+ end
1889
+
1890
+ # You can specify what Rails should route "/" to with the root method:
1891
+ #
1892
+ # root to: 'pages#main'
1893
+ #
1894
+ # For options, see `match`, as `root` uses it internally.
1895
+ #
1896
+ # You can also pass a string which will expand
1897
+ #
1898
+ # root 'pages#main'
1899
+ #
1900
+ # You should put the root route at the top of `config/routes.rb`, because this
1901
+ # means it will be matched first. As this is the most popular route of most
1902
+ # Rails applications, this is beneficial.
1903
+ def root(path, options = {})
1904
+ if path.is_a?(String)
1905
+ options[:to] = path
1906
+ elsif path.is_a?(Hash) && options.empty?
1907
+ options = path
1908
+ else
1909
+ raise ArgumentError, "must be called with a path and/or options"
1910
+ end
1911
+
1912
+ if @scope.resources?
1913
+ with_scope_level(:root) do
1914
+ path_scope(parent_resource.path) do
1915
+ match_root_route(options)
1916
+ end
1917
+ end
1918
+ else
1919
+ match_root_route(options)
1920
+ end
1921
+ end
1922
+
1923
+ private
1924
+ def parent_resource
1925
+ @scope[:scope_level_resource]
1926
+ end
1927
+
1928
+ def apply_common_behavior_for(method, resources, shallow: nil, **options, &block)
1929
+ if resources.length > 1
1930
+ resources.each { |r| public_send(method, r, shallow:, **options, &block) }
1931
+ return true
1932
+ end
1933
+
1934
+ if shallow
1935
+ self.shallow do
1936
+ public_send(method, resources.pop, **options, &block)
1937
+ end
1938
+ return true
1939
+ end
1940
+
1941
+ if resource_scope?
1942
+ nested { public_send(method, resources.pop, shallow:, **options, &block) }
1943
+ return true
1944
+ end
1945
+
1946
+ options.keys.each do |k|
1947
+ (options[:constraints] ||= {})[k] = options.delete(k) if options[k].is_a?(Regexp)
1948
+ end
1949
+
1950
+ scope_options = options.slice!(*RESOURCE_OPTIONS)
1951
+ scope_options[:shallow] = shallow unless shallow.nil?
1952
+
1953
+ unless scope_options.empty?
1954
+ scope(**scope_options) do
1955
+ public_send(method, resources.pop, **options, &block)
1956
+ end
1957
+ return true
1958
+ end
1959
+
1960
+ false
1961
+ end
1962
+
1963
+ def apply_action_options(method, options)
1964
+ return options if action_options? options
1965
+ options.merge scope_action_options(method)
1966
+ end
1967
+
1968
+ def action_options?(options)
1969
+ options[:only] || options[:except]
1970
+ end
1971
+
1972
+ def scope_action_options(method)
1973
+ return {} unless @scope[:action_options]
1974
+
1975
+ actions = applicable_actions_for(method)
1976
+ @scope[:action_options].dup.tap do |options|
1977
+ (options[:only] = Array(options[:only]) & actions) if options[:only]
1978
+ (options[:except] = Array(options[:except]) & actions) if options[:except]
1979
+ end
1980
+ end
1981
+
1982
+ def applicable_actions_for(method)
1983
+ case method
1984
+ when :resource
1985
+ SingletonResource.default_actions(api_only?)
1986
+ when :resources
1987
+ Resource.default_actions(api_only?)
1988
+ end
1989
+ end
1990
+
1991
+ def resource_scope?
1992
+ @scope.resource_scope?
1993
+ end
1994
+
1995
+ def resource_method_scope?
1996
+ @scope.resource_method_scope?
1997
+ end
1998
+
1999
+ def nested_scope?
2000
+ @scope.nested?
2001
+ end
2002
+
2003
+ def with_scope_level(kind) # :doc:
2004
+ @scope = @scope.new_level(kind)
2005
+ yield
2006
+ ensure
2007
+ @scope = @scope.parent
2008
+ end
2009
+
2010
+ def resource_scope(resource, &block)
2011
+ @scope = @scope.new(scope_level_resource: resource)
2012
+
2013
+ controller(resource.resource_scope, &block)
2014
+ ensure
2015
+ @scope = @scope.parent
2016
+ end
2017
+
2018
+ def nested_options
2019
+ options = { as: parent_resource.member_name }
2020
+ options[:constraints] = {
2021
+ parent_resource.nested_param => param_constraint
2022
+ } if param_constraint?
2023
+
2024
+ options
2025
+ end
2026
+
2027
+ def shallow_nesting_depth
2028
+ @scope.find_all { |node|
2029
+ node.frame[:scope_level_resource]
2030
+ }.count { |node| node.frame[:scope_level_resource].shallow? }
2031
+ end
2032
+
2033
+ def param_constraint?
2034
+ @scope[:constraints] && @scope[:constraints][parent_resource.param].is_a?(Regexp)
2035
+ end
2036
+
2037
+ def param_constraint
2038
+ @scope[:constraints][parent_resource.param]
2039
+ end
2040
+
2041
+ def canonical_action?(action)
2042
+ resource_method_scope? && CANONICAL_ACTIONS.include?(action.to_s)
2043
+ end
2044
+
2045
+ def shallow_scope
2046
+ @scope = @scope.new(
2047
+ as: @scope[:shallow_prefix],
2048
+ path: @scope[:shallow_path],
2049
+ )
2050
+
2051
+ yield
2052
+ ensure
2053
+ @scope = @scope.parent
2054
+ end
2055
+
2056
+ def path_for_action(action, path)
2057
+ return "#{@scope[:path]}/#{path}" if path
2058
+
2059
+ if canonical_action?(action)
2060
+ @scope[:path].to_s
2061
+ else
2062
+ "#{@scope[:path]}/#{action_path(action)}"
2063
+ end
2064
+ end
2065
+
2066
+ def action_path(name)
2067
+ @scope[:path_names][name.to_sym] || name
2068
+ end
2069
+
2070
+ def prefix_name_for_action(as, action)
2071
+ if as && as != DEFAULT
2072
+ prefix = as
2073
+ elsif !canonical_action?(action)
2074
+ prefix = action
2075
+ end
2076
+
2077
+ if prefix && prefix != "/" && !prefix.empty?
2078
+ Mapper.normalize_name prefix.to_s.tr("-", "_")
2079
+ end
2080
+ end
2081
+
2082
+ def name_for_action(as, action)
2083
+ prefix = prefix_name_for_action(as, action)
2084
+ name_prefix = @scope[:as]
2085
+
2086
+ if parent_resource
2087
+ return nil unless as != DEFAULT || action
2088
+
2089
+ collection_name = parent_resource.collection_name
2090
+ member_name = parent_resource.member_name
2091
+ end
2092
+
2093
+ action_name = @scope.action_name(name_prefix, prefix, collection_name, member_name)
2094
+ candidate = action_name.select(&:present?).join("_")
2095
+
2096
+ unless candidate.empty?
2097
+ # If a name was not explicitly given, we check if it is valid and return nil in
2098
+ # case it isn't. Otherwise, we pass the invalid name forward so the underlying
2099
+ # router engine treats it and raises an exception.
2100
+ if as == DEFAULT
2101
+ candidate unless !candidate.match?(/\A[_a-z]/i) || has_named_route?(candidate)
2102
+ else
2103
+ candidate
2104
+ end
2105
+ end
2106
+ end
2107
+
2108
+ def set_member_mappings_for_resource # :doc:
2109
+ member do
2110
+ get :edit if parent_resource.actions.include?(:edit)
2111
+ get :show if parent_resource.actions.include?(:show)
2112
+ if parent_resource.actions.include?(:update)
2113
+ patch :update
2114
+ put :update
2115
+ end
2116
+ delete :destroy if parent_resource.actions.include?(:destroy)
2117
+ end
2118
+ end
2119
+
2120
+ def api_only? # :doc:
2121
+ @set.api_only?
2122
+ end
2123
+
2124
+ def path_scope(path)
2125
+ @scope = @scope.new(path: merge_path_scope(@scope[:path], path))
2126
+ yield
2127
+ ensure
2128
+ @scope = @scope.parent
2129
+ end
2130
+
2131
+ def map_match(path_or_action, constraints: nil, anchor: nil, format: nil, path: nil, as: DEFAULT, via: nil, to: nil, controller: nil, action: nil, on: nil, internal: nil, mapping: nil)
2132
+ if on && !VALID_ON_OPTIONS.include?(on)
2133
+ raise ArgumentError, "Unknown scope #{on.inspect} given to :on"
2134
+ end
2135
+
2136
+ if @scope[:to]
2137
+ to ||= @scope[:to]
2138
+ end
2139
+
2140
+ if @scope[:controller] && @scope[:action]
2141
+ to ||= "#{@scope[:controller]}##{@scope[:action]}"
2142
+ end
2143
+
2144
+ controller ||= @scope[:controller]
2145
+ via = Mapping.check_via Array(via || @scope[:via])
2146
+ format ||= @scope[:format] if format.nil?
2147
+ anchor ||= true if anchor.nil?
2148
+ constraints ||= {}
2149
+
2150
+ case path_or_action
2151
+ when String
2152
+ if path_or_action && path
2153
+ raise ArgumentError, "Ambiguous route definition. Both :path and the route path were specified as strings."
2154
+ end
2155
+ path = path_or_action
2156
+ to = get_to_from_path(path_or_action, to, action)
2157
+ decomposed_match(path, controller, as, action, path, to, via, format, anchor, constraints, internal, mapping, on)
2158
+ when Symbol
2159
+ decomposed_match(path_or_action, controller, as, action, path, to, via, format, anchor, constraints, internal, mapping, on)
2160
+ end
2161
+
2162
+ self
2163
+ end
2164
+
2165
+ def get_to_from_path(path, to, action)
2166
+ return to if to || action
2167
+
2168
+ path_without_format = path.sub(/\(\.:format\)$/, "")
2169
+ if using_match_shorthand?(path_without_format)
2170
+ path_without_format.delete_prefix("/").sub(%r{/([^/]*)$}, '#\1').tr("-", "_")
2171
+ else
2172
+ nil
2173
+ end
2174
+ end
2175
+
2176
+ def using_match_shorthand?(path)
2177
+ %r{^/?[-\w]+/[-\w/]+$}.match?(path)
2178
+ end
2179
+
2180
+ def decomposed_match(path, controller, as, action, _path, to, via, formatted, anchor, options_constraints, internal, options_mapping, on = nil)
2181
+ if on
2182
+ send(on) { decomposed_match(path, controller, as, action, _path, to, via, formatted, anchor, options_constraints, internal, options_mapping) }
2183
+ else
2184
+ case @scope.scope_level
2185
+ when :resources
2186
+ nested { decomposed_match(path, controller, as, action, _path, to, via, formatted, anchor, options_constraints, internal, options_mapping) }
2187
+ when :resource
2188
+ member { decomposed_match(path, controller, as, action, _path, to, via, formatted, anchor, options_constraints, internal, options_mapping) }
2189
+ else
2190
+ add_route(path, controller, as, action, _path, to, via, formatted, anchor, options_constraints, internal, options_mapping)
2191
+ end
2192
+ end
2193
+ end
2194
+
2195
+ def add_route(action, controller, as, options_action, _path, to, via, formatted, anchor, options_constraints, internal, options_mapping)
2196
+ path = path_for_action(action, _path)
2197
+ raise ArgumentError, "path is required" if path.blank?
2198
+
2199
+ action = action.to_s
2200
+
2201
+ default_action = options_action || @scope[:action]
2202
+
2203
+ if /^[\w\-\/]+$/.match?(action)
2204
+ default_action ||= action.tr("-", "_") unless action.include?("/")
2205
+ else
2206
+ action = nil
2207
+ end
2208
+
2209
+ as = name_for_action(as, action) if as
2210
+ path = Mapping.normalize_path URI::RFC2396_PARSER.escape(path), formatted
2211
+ ast = Journey::Parser.parse path
2212
+
2213
+ mapping = Mapping.build(@scope, @set, ast, controller, default_action, to, via, formatted, options_constraints, anchor, internal, options_mapping)
2214
+ @set.add_route(mapping, as)
2215
+ end
2216
+
2217
+ def match_root_route(options)
2218
+ match("/", as: :root, via: :get, **options)
2219
+ end
2220
+ end
2221
+
2222
+ # Routing Concerns allow you to declare common routes that can be reused inside
2223
+ # others resources and routes.
2224
+ #
2225
+ # concern :commentable do
2226
+ # resources :comments
2227
+ # end
2228
+ #
2229
+ # concern :image_attachable do
2230
+ # resources :images, only: :index
2231
+ # end
2232
+ #
2233
+ # These concerns are used in Resources routing:
2234
+ #
2235
+ # resources :messages, concerns: [:commentable, :image_attachable]
2236
+ #
2237
+ # or in a scope or namespace:
2238
+ #
2239
+ # namespace :posts do
2240
+ # concerns :commentable
2241
+ # end
2242
+ module Concerns
2243
+ # Define a routing concern using a name.
2244
+ #
2245
+ # Concerns may be defined inline, using a block, or handled by another object,
2246
+ # by passing that object as the second parameter.
2247
+ #
2248
+ # The concern object, if supplied, should respond to `call`, which will receive
2249
+ # two parameters:
2250
+ #
2251
+ # * The current mapper
2252
+ # * A hash of options which the concern object may use
2253
+ #
2254
+ # Options may also be used by concerns defined in a block by accepting a block
2255
+ # parameter. So, using a block, you might do something as simple as limit the
2256
+ # actions available on certain resources, passing standard resource options
2257
+ # through the concern:
2258
+ #
2259
+ # concern :commentable do |options|
2260
+ # resources :comments, options
2261
+ # end
2262
+ #
2263
+ # resources :posts, concerns: :commentable
2264
+ # resources :archived_posts do
2265
+ # # Don't allow comments on archived posts
2266
+ # concerns :commentable, only: [:index, :show]
2267
+ # end
2268
+ #
2269
+ # Or, using a callable object, you might implement something more specific to
2270
+ # your application, which would be out of place in your routes file.
2271
+ #
2272
+ # # purchasable.rb
2273
+ # class Purchasable
2274
+ # def initialize(defaults = {})
2275
+ # @defaults = defaults
2276
+ # end
2277
+ #
2278
+ # def call(mapper, options = {})
2279
+ # options = @defaults.merge(options)
2280
+ # mapper.resources :purchases
2281
+ # mapper.resources :receipts
2282
+ # mapper.resources :returns if options[:returnable]
2283
+ # end
2284
+ # end
2285
+ #
2286
+ # # routes.rb
2287
+ # concern :purchasable, Purchasable.new(returnable: true)
2288
+ #
2289
+ # resources :toys, concerns: :purchasable
2290
+ # resources :electronics, concerns: :purchasable
2291
+ # resources :pets do
2292
+ # concerns :purchasable, returnable: false
2293
+ # end
2294
+ #
2295
+ # Any routing helpers can be used inside a concern. If using a callable, they're
2296
+ # accessible from the Mapper that's passed to `call`.
2297
+ def concern(name, callable = nil, &block)
2298
+ callable ||= lambda { |mapper, options| mapper.instance_exec(options, &block) }
2299
+ @concerns[name] = callable
2300
+ end
2301
+
2302
+ # Use the named concerns
2303
+ #
2304
+ # resources :posts do
2305
+ # concerns :commentable
2306
+ # end
2307
+ #
2308
+ # Concerns also work in any routes helper that you want to use:
2309
+ #
2310
+ # namespace :posts do
2311
+ # concerns :commentable
2312
+ # end
2313
+ def concerns(*args, **options)
2314
+ args.flatten.each do |name|
2315
+ if concern = @concerns[name]
2316
+ concern.call(self, options)
2317
+ else
2318
+ raise ArgumentError, "No concern named #{name} was found!"
2319
+ end
2320
+ end
2321
+ end
2322
+ end
2323
+
2324
+ module CustomUrls
2325
+ # Define custom URL helpers that will be added to the application's routes. This
2326
+ # allows you to override and/or replace the default behavior of routing helpers,
2327
+ # e.g:
2328
+ #
2329
+ # direct :homepage do
2330
+ # "https://rubyonrails.org"
2331
+ # end
2332
+ #
2333
+ # direct :commentable do |model|
2334
+ # [ model, anchor: model.dom_id ]
2335
+ # end
2336
+ #
2337
+ # direct :main do
2338
+ # { controller: "pages", action: "index", subdomain: "www" }
2339
+ # end
2340
+ #
2341
+ # The return value from the block passed to `direct` must be a valid set of
2342
+ # arguments for `url_for` which will actually build the URL string. This can be
2343
+ # one of the following:
2344
+ #
2345
+ # * A string, which is treated as a generated URL
2346
+ # * A hash, e.g. `{ controller: "pages", action: "index" }`
2347
+ # * An array, which is passed to `polymorphic_url`
2348
+ # * An Active Model instance
2349
+ # * An Active Model class
2350
+ #
2351
+ #
2352
+ # NOTE: Other URL helpers can be called in the block but be careful not to
2353
+ # invoke your custom URL helper again otherwise it will result in a stack
2354
+ # overflow error.
2355
+ #
2356
+ # You can also specify default options that will be passed through to your URL
2357
+ # helper definition, e.g:
2358
+ #
2359
+ # direct :browse, page: 1, size: 10 do |options|
2360
+ # [ :products, options.merge(params.permit(:page, :size).to_h.symbolize_keys) ]
2361
+ # end
2362
+ #
2363
+ # In this instance the `params` object comes from the context in which the block
2364
+ # is executed, e.g. generating a URL inside a controller action or a view. If
2365
+ # the block is executed where there isn't a `params` object such as this:
2366
+ #
2367
+ # Rails.application.routes.url_helpers.browse_path
2368
+ #
2369
+ # then it will raise a `NameError`. Because of this you need to be aware of the
2370
+ # context in which you will use your custom URL helper when defining it.
2371
+ #
2372
+ # NOTE: The `direct` method can't be used inside of a scope block such as
2373
+ # `namespace` or `scope` and will raise an error if it detects that it is.
2374
+ def direct(name, options = {}, &block)
2375
+ unless @scope.root?
2376
+ raise RuntimeError, "The direct method can't be used inside a routes scope block"
2377
+ end
2378
+
2379
+ @set.add_url_helper(name, options, &block)
2380
+ end
2381
+
2382
+ # Define custom polymorphic mappings of models to URLs. This alters the behavior
2383
+ # of `polymorphic_url` and consequently the behavior of `link_to`, `form_with`
2384
+ # and `form_for` when passed a model instance, e.g:
2385
+ #
2386
+ # resource :basket
2387
+ #
2388
+ # resolve "Basket" do
2389
+ # [:basket]
2390
+ # end
2391
+ #
2392
+ # This will now generate "/basket" when a `Basket` instance is passed to
2393
+ # `link_to`, `form_with` or `form_for` instead of the standard "/baskets/:id".
2394
+ #
2395
+ # NOTE: This custom behavior only applies to simple polymorphic URLs where a
2396
+ # single model instance is passed and not more complicated forms, e.g:
2397
+ #
2398
+ # # config/routes.rb
2399
+ # resource :profile
2400
+ # namespace :admin do
2401
+ # resources :users
2402
+ # end
2403
+ #
2404
+ # resolve("User") { [:profile] }
2405
+ #
2406
+ # # app/views/application/_menu.html.erb
2407
+ # link_to "Profile", @current_user
2408
+ # link_to "Profile", [:admin, @current_user]
2409
+ #
2410
+ # The first `link_to` will generate "/profile" but the second will generate the
2411
+ # standard polymorphic URL of "/admin/users/1".
2412
+ #
2413
+ # You can pass options to a polymorphic mapping - the arity for the block needs
2414
+ # to be two as the instance is passed as the first argument, e.g:
2415
+ #
2416
+ # resolve "Basket", anchor: "items" do |basket, options|
2417
+ # [:basket, options]
2418
+ # end
2419
+ #
2420
+ # This generates the URL "/basket#items" because when the last item in an array
2421
+ # passed to `polymorphic_url` is a hash then it's treated as options to the URL
2422
+ # helper that gets called.
2423
+ #
2424
+ # NOTE: The `resolve` method can't be used inside of a scope block such as
2425
+ # `namespace` or `scope` and will raise an error if it detects that it is.
2426
+ def resolve(*args, &block)
2427
+ unless @scope.root?
2428
+ raise RuntimeError, "The resolve method can't be used inside a routes scope block"
2429
+ end
2430
+
2431
+ options = args.extract_options!
2432
+ args = args.flatten(1)
2433
+
2434
+ args.each do |klass|
2435
+ @set.add_polymorphic_mapping(klass, options, &block)
2436
+ end
2437
+ end
2438
+ end
2439
+
2440
+ class Scope # :nodoc:
2441
+ OPTIONS = [:path, :shallow_path, :as, :shallow_prefix, :module,
2442
+ :controller, :action, :path_names, :constraints,
2443
+ :shallow, :blocks, :defaults, :via, :format, :options, :to]
2444
+
2445
+ RESOURCE_SCOPES = [:resource, :resources]
2446
+ RESOURCE_METHOD_SCOPES = [:collection, :member, :new]
2447
+
2448
+ attr_reader :parent, :scope_level
2449
+
2450
+ def initialize(hash, parent = ROOT, scope_level = nil)
2451
+ @parent = parent
2452
+ @hash = parent ? parent.frame.merge(hash) : hash
2453
+ @scope_level = scope_level
2454
+ end
2455
+
2456
+ def nested?
2457
+ scope_level == :nested
2458
+ end
2459
+
2460
+ def null?
2461
+ @hash.nil? && @parent.nil?
2462
+ end
2463
+
2464
+ def root?
2465
+ @parent == ROOT
2466
+ end
2467
+
2468
+ def resources?
2469
+ scope_level == :resources
2470
+ end
2471
+
2472
+ def resource_method_scope?
2473
+ RESOURCE_METHOD_SCOPES.include? scope_level
2474
+ end
2475
+
2476
+ def action_name(name_prefix, prefix, collection_name, member_name)
2477
+ case scope_level
2478
+ when :nested
2479
+ [name_prefix, prefix]
2480
+ when :collection
2481
+ [prefix, name_prefix, collection_name]
2482
+ when :new
2483
+ [prefix, :new, name_prefix, member_name]
2484
+ when :member
2485
+ [prefix, name_prefix, member_name]
2486
+ when :root
2487
+ [name_prefix, collection_name, prefix]
2488
+ else
2489
+ [name_prefix, member_name, prefix]
2490
+ end
2491
+ end
2492
+
2493
+ def resource_scope?
2494
+ RESOURCE_SCOPES.include? scope_level
2495
+ end
2496
+
2497
+ def options
2498
+ OPTIONS
2499
+ end
2500
+
2501
+ def new(hash)
2502
+ self.class.new hash, self, scope_level
2503
+ end
2504
+
2505
+ def new_level(level)
2506
+ self.class.new(frame, self, level)
2507
+ end
2508
+
2509
+ def [](key)
2510
+ frame[key]
2511
+ end
2512
+
2513
+ def frame; @hash; end
2514
+
2515
+ include Enumerable
2516
+
2517
+ def each
2518
+ node = self
2519
+ until node.equal? ROOT
2520
+ yield node
2521
+ node = node.parent
2522
+ end
2523
+ end
2524
+
2525
+ ROOT = Scope.new({}, nil)
2526
+ end
2527
+
2528
+ DEFAULT = Object.new # :nodoc:
2529
+
2530
+ def initialize(set) # :nodoc:
2531
+ @set = set
2532
+ @draw_paths = set.draw_paths
2533
+ @scope = Scope.new(path_names: @set.resources_path_names)
2534
+ @concerns = {}
2535
+ end
2536
+
2537
+ include Base
2538
+ include HttpHelpers
2539
+ include Redirection
2540
+ include Scoping
2541
+ include Concerns
2542
+ include Resources
2543
+ include CustomUrls
2544
+ end
2545
+ end
2546
+ end