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
@@ -1,2767 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "cgi/escape"
4
- require "cgi/util" if RUBY_VERSION < "3.5"
5
- require "action_view/helpers/date_helper"
6
- require "action_view/helpers/url_helper"
7
- require "action_view/helpers/form_tag_helper"
8
- require "action_view/helpers/active_model_helper"
9
- require "action_view/model_naming"
10
- require "action_view/record_identifier"
11
- require "active_support/code_generator"
12
- require "active_support/core_ext/module/attribute_accessors"
13
- require "active_support/core_ext/hash/slice"
14
- require "active_support/core_ext/string/output_safety"
15
- require "active_support/core_ext/string/inflections"
16
-
17
- module ActionView
18
- module Helpers # :nodoc:
19
- # = Action View Form \Helpers
20
- #
21
- # Form helpers are designed to make working with resources much easier
22
- # compared to using vanilla HTML.
23
- #
24
- # Typically, a form designed to create or update a resource reflects the
25
- # identity of the resource in several ways: (i) the URL that the form is
26
- # sent to (the form element's +action+ attribute) should result in a request
27
- # being routed to the appropriate controller action (with the appropriate <tt>:id</tt>
28
- # parameter in the case of an existing resource), (ii) input fields should
29
- # be named in such a way that in the controller their values appear in the
30
- # appropriate places within the +params+ hash, and (iii) for an existing record,
31
- # when the form is initially displayed, input fields corresponding to attributes
32
- # of the resource should show the current values of those attributes.
33
- #
34
- # In \Rails, this is usually achieved by creating the form using either
35
- # #form_with or #form_for and a number of related helper methods. These
36
- # methods generate an appropriate <tt>form</tt> tag and yield a form
37
- # builder object that knows the model the form is about. Input fields are
38
- # created by calling methods defined on the form builder, which means they
39
- # are able to generate the appropriate names and default values
40
- # corresponding to the model attributes, as well as convenient IDs, etc.
41
- # Conventions in the generated field names allow controllers to receive form
42
- # data nicely structured in +params+ with no effort on your side.
43
- #
44
- # For example, to create a new person you typically set up a new instance of
45
- # +Person+ in the <tt>PeopleController#new</tt> action, <tt>@person</tt>, and
46
- # in the view template pass that object to #form_with or #form_for:
47
- #
48
- # <%= form_with model: @person do |f| %>
49
- # <%= f.label :first_name %>:
50
- # <%= f.text_field :first_name %><br />
51
- #
52
- # <%= f.label :last_name %>:
53
- # <%= f.text_field :last_name %><br />
54
- #
55
- # <%= f.submit %>
56
- # <% end %>
57
- #
58
- # The HTML generated for this would be (modulus formatting):
59
- #
60
- # <form action="/people" class="new_person" id="new_person" method="post">
61
- # <input name="authenticity_token" type="hidden" value="NrOp5bsjoLRuK8IW5+dQEYjKGUJDe7TQoZVvq95Wteg=" />
62
- # <label for="person_first_name">First name</label>:
63
- # <input id="person_first_name" name="person[first_name]" type="text" /><br />
64
- #
65
- # <label for="person_last_name">Last name</label>:
66
- # <input id="person_last_name" name="person[last_name]" type="text" /><br />
67
- #
68
- # <input name="commit" type="submit" value="Create Person" />
69
- # </form>
70
- #
71
- # As you see, the HTML reflects knowledge about the resource in several spots,
72
- # like the path the form should be submitted to, or the names of the input fields.
73
- #
74
- # In particular, thanks to the conventions followed in the generated field names, the
75
- # controller gets a nested hash <tt>params[:person]</tt> with the person attributes
76
- # set in the form. That hash is ready to be passed to <tt>Person.new</tt>:
77
- #
78
- # @person = Person.new(params[:person])
79
- # if @person.save
80
- # # success
81
- # else
82
- # # error handling
83
- # end
84
- #
85
- # Interestingly, the exact same view code in the previous example can be used to edit
86
- # a person. If <tt>@person</tt> is an existing record with name "John Smith" and ID 256,
87
- # the code above as is would yield instead:
88
- #
89
- # <form action="/people/256" class="edit_person" id="edit_person_256" method="post">
90
- # <input name="_method" type="hidden" value="patch" />
91
- # <input name="authenticity_token" type="hidden" value="NrOp5bsjoLRuK8IW5+dQEYjKGUJDe7TQoZVvq95Wteg=" />
92
- # <label for="person_first_name">First name</label>:
93
- # <input id="person_first_name" name="person[first_name]" type="text" value="John" /><br />
94
- #
95
- # <label for="person_last_name">Last name</label>:
96
- # <input id="person_last_name" name="person[last_name]" type="text" value="Smith" /><br />
97
- #
98
- # <input name="commit" type="submit" value="Update Person" />
99
- # </form>
100
- #
101
- # Note that the endpoint, default values, and submit button label are tailored for <tt>@person</tt>.
102
- # That works that way because the involved helpers know whether the resource is a new record or not,
103
- # and generate HTML accordingly.
104
- #
105
- # The controller would receive the form data again in <tt>params[:person]</tt>, ready to be
106
- # passed to <tt>Person#update</tt>:
107
- #
108
- # if @person.update(params[:person])
109
- # # success
110
- # else
111
- # # error handling
112
- # end
113
- #
114
- # That's how you typically work with resources.
115
- module FormHelper
116
- extend ActiveSupport::Concern
117
-
118
- include FormTagHelper
119
- include UrlHelper
120
- include ModelNaming
121
- include RecordIdentifier
122
-
123
- attr_internal :default_form_builder
124
-
125
- # Creates a form that allows the user to create or update the attributes
126
- # of a specific model object.
127
- #
128
- # The method can be used in several slightly different ways, depending on
129
- # how much you wish to rely on \Rails to infer automatically from the model
130
- # how the form should be constructed. For a generic model object, a form
131
- # can be created by passing +form_for+ a string or symbol representing
132
- # the object we are concerned with:
133
- #
134
- # <%= form_for :person do |f| %>
135
- # First name: <%= f.text_field :first_name %><br />
136
- # Last name : <%= f.text_field :last_name %><br />
137
- # Biography : <%= f.textarea :biography %><br />
138
- # Admin? : <%= f.checkbox :admin %><br />
139
- # <%= f.submit %>
140
- # <% end %>
141
- #
142
- # The variable +f+ yielded to the block is a FormBuilder object that
143
- # incorporates the knowledge about the model object represented by
144
- # <tt>:person</tt> passed to +form_for+. Methods defined on the FormBuilder
145
- # are used to generate fields bound to this model. Thus, for example,
146
- #
147
- # <%= f.text_field :first_name %>
148
- #
149
- # will get expanded to
150
- #
151
- # <%= text_field :person, :first_name %>
152
- #
153
- # which results in an HTML <tt><input></tt> tag whose +name+ attribute is
154
- # <tt>person[first_name]</tt>. This means that when the form is submitted,
155
- # the value entered by the user will be available in the controller as
156
- # <tt>params[:person][:first_name]</tt>.
157
- #
158
- # For fields generated in this way using the FormBuilder,
159
- # if <tt>:person</tt> also happens to be the name of an instance variable
160
- # <tt>@person</tt>, the default value of the field shown when the form is
161
- # initially displayed (e.g. in the situation where you are editing an
162
- # existing record) will be the value of the corresponding attribute of
163
- # <tt>@person</tt>.
164
- #
165
- # The rightmost argument to +form_for+ is an
166
- # optional hash of options -
167
- #
168
- # * <tt>:url</tt> - The URL the form is to be submitted to. This may be
169
- # represented in the same way as values passed to +url_for+ or +link_to+.
170
- # So for example you may use a named route directly. When the model is
171
- # represented by a string or symbol, as in the example above, if the
172
- # <tt>:url</tt> option is not specified, by default the form will be
173
- # sent back to the current URL (We will describe below an alternative
174
- # resource-oriented usage of +form_for+ in which the URL does not need
175
- # to be specified explicitly).
176
- # * <tt>:namespace</tt> - A namespace for your form to ensure uniqueness of
177
- # id attributes on form elements. The namespace attribute will be prefixed
178
- # with underscore on the generated HTML id.
179
- # * <tt>:method</tt> - The method to use when submitting the form, usually
180
- # either "get" or "post". If "patch", "put", "delete", or another verb
181
- # is used, a hidden input with name <tt>_method</tt> is added to
182
- # simulate the verb over post.
183
- # * <tt>:authenticity_token</tt> - Authenticity token to use in the form.
184
- # Use only if you need to pass custom authenticity token string, or to
185
- # not add authenticity_token field at all (by passing <tt>false</tt>).
186
- # Remote forms may omit the embedded authenticity token by setting
187
- # <tt>config.action_view.embed_authenticity_token_in_remote_forms = false</tt>.
188
- # This is helpful when you're fragment-caching the form. Remote forms
189
- # get the authenticity token from the <tt>meta</tt> tag, so embedding is
190
- # unnecessary unless you support browsers without JavaScript.
191
- # * <tt>:remote</tt> - If set to true, will allow the Unobtrusive
192
- # JavaScript drivers to control the submit behavior.
193
- # * <tt>:enforce_utf8</tt> - If set to false, a hidden input with name
194
- # utf8 is not output.
195
- # * <tt>:html</tt> - Optional HTML attributes for the form tag.
196
- #
197
- # Also note that +form_for+ doesn't create an exclusive scope. It's still
198
- # possible to use both the stand-alone FormHelper methods and methods
199
- # from FormTagHelper. For example:
200
- #
201
- # <%= form_for :person do |f| %>
202
- # First name: <%= f.text_field :first_name %>
203
- # Last name : <%= f.text_field :last_name %>
204
- # Biography : <%= textarea :person, :biography %>
205
- # Admin? : <%= checkbox_tag "person[admin]", "1", @person.company.admin? %>
206
- # <%= f.submit %>
207
- # <% end %>
208
- #
209
- # This also works for the methods in FormOptionsHelper and DateHelper that
210
- # are designed to work with an object as base, like
211
- # FormOptionsHelper#collection_select and DateHelper#datetime_select.
212
- #
213
- # === +form_for+ with a model object
214
- #
215
- # In the examples above, the object to be created or edited was
216
- # represented by a symbol passed to +form_for+, and we noted that
217
- # a string can also be used equivalently. It is also possible, however,
218
- # to pass a model object itself to +form_for+. For example, if <tt>@article</tt>
219
- # is an existing record you wish to edit, you can create the form using
220
- #
221
- # <%= form_for @article do |f| %>
222
- # ...
223
- # <% end %>
224
- #
225
- # This behaves in almost the same way as outlined previously, with a
226
- # couple of small exceptions. First, the prefix used to name the input
227
- # elements within the form (hence the key that denotes them in the +params+
228
- # hash) is actually derived from the object's _class_, e.g. <tt>params[:article]</tt>
229
- # if the object's class is +Article+. However, this can be overwritten using
230
- # the <tt>:as</tt> option, e.g. -
231
- #
232
- # <%= form_for(@person, as: :client) do |f| %>
233
- # ...
234
- # <% end %>
235
- #
236
- # would result in <tt>params[:client]</tt>.
237
- #
238
- # Secondly, the field values shown when the form is initially displayed
239
- # are taken from the attributes of the object passed to +form_for+,
240
- # regardless of whether the object is an instance
241
- # variable. So, for example, if we had a _local_ variable +article+
242
- # representing an existing record,
243
- #
244
- # <%= form_for article do |f| %>
245
- # ...
246
- # <% end %>
247
- #
248
- # would produce a form with fields whose initial state reflect the current
249
- # values of the attributes of +article+.
250
- #
251
- # === Resource-oriented style
252
- #
253
- # In the examples just shown, although not indicated explicitly, we still
254
- # need to use the <tt>:url</tt> option in order to specify where the
255
- # form is going to be sent. However, further simplification is possible
256
- # if the record passed to +form_for+ is a _resource_, i.e. it corresponds
257
- # to a set of RESTful routes, e.g. defined using the +resources+ method
258
- # in <tt>config/routes.rb</tt>. In this case \Rails will simply infer the
259
- # appropriate URL from the record itself. For example,
260
- #
261
- # <%= form_for @article do |f| %>
262
- # ...
263
- # <% end %>
264
- #
265
- # is then equivalent to something like:
266
- #
267
- # <%= form_for @article, as: :article, url: article_path(@article), method: :patch, html: { class: "edit_article", id: "edit_article_45" } do |f| %>
268
- # ...
269
- # <% end %>
270
- #
271
- # And for a new record
272
- #
273
- # <%= form_for(Article.new) do |f| %>
274
- # ...
275
- # <% end %>
276
- #
277
- # is equivalent to something like:
278
- #
279
- # <%= form_for @article, as: :article, url: articles_path, html: { class: "new_article", id: "new_article" } do |f| %>
280
- # ...
281
- # <% end %>
282
- #
283
- # However you can still overwrite individual conventions, such as:
284
- #
285
- # <%= form_for(@article, url: super_articles_path) do |f| %>
286
- # ...
287
- # <% end %>
288
- #
289
- # You can omit the <tt>action</tt> attribute by passing <tt>url: false</tt>:
290
- #
291
- # <%= form_for(@article, url: false) do |f| %>
292
- # ...
293
- # <% end %>
294
- #
295
- # You can also set the answer format, like this:
296
- #
297
- # <%= form_for(@article, format: :json) do |f| %>
298
- # ...
299
- # <% end %>
300
- #
301
- # For namespaced routes, like +admin_article_url+:
302
- #
303
- # <%= form_for([:admin, @article]) do |f| %>
304
- # ...
305
- # <% end %>
306
- #
307
- # If your resource has associations defined, for example, you want to add comments
308
- # to the document given that the routes are set correctly:
309
- #
310
- # <%= form_for([@document, @comment]) do |f| %>
311
- # ...
312
- # <% end %>
313
- #
314
- # Where <tt>@document = Document.find(params[:id])</tt> and
315
- # <tt>@comment = Comment.new</tt>.
316
- #
317
- # === Setting the method
318
- #
319
- # You can force the form to use the full array of HTTP verbs by setting
320
- #
321
- # method: (:get|:post|:patch|:put|:delete)
322
- #
323
- # in the options hash. If the verb is not GET or POST, which are natively
324
- # supported by HTML forms, the form will be set to POST and a hidden input
325
- # called _method will carry the intended verb for the server to interpret.
326
- #
327
- # === Unobtrusive JavaScript
328
- #
329
- # Specifying:
330
- #
331
- # remote: true
332
- #
333
- # in the options hash creates a form that will allow the unobtrusive JavaScript drivers to modify its
334
- # behavior. The form submission will work just like a regular submission as viewed by the receiving
335
- # side (all elements available in <tt>params</tt>).
336
- #
337
- # Example:
338
- #
339
- # <%= form_for(@article, remote: true) do |f| %>
340
- # ...
341
- # <% end %>
342
- #
343
- # The HTML generated for this would be:
344
- #
345
- # <form action='http://www.example.com' method='post' data-remote='true'>
346
- # <input name='_method' type='hidden' value='patch' />
347
- # ...
348
- # </form>
349
- #
350
- # === Setting HTML options
351
- #
352
- # You can set data attributes directly by passing in a data hash, but all other HTML options must be wrapped in
353
- # the HTML key. Example:
354
- #
355
- # <%= form_for(@article, data: { behavior: "autosave" }, html: { name: "go" }) do |f| %>
356
- # ...
357
- # <% end %>
358
- #
359
- # The HTML generated for this would be:
360
- #
361
- # <form action='http://www.example.com' method='post' data-behavior='autosave' name='go'>
362
- # <input name='_method' type='hidden' value='patch' />
363
- # ...
364
- # </form>
365
- #
366
- # === Removing hidden model id's
367
- #
368
- # The +form_for+ method automatically includes the model id as a hidden field in the form.
369
- # This is used to maintain the correlation between the form data and its associated model.
370
- # Some ORM systems do not use IDs on nested models so in this case you want to be able
371
- # to disable the hidden id.
372
- #
373
- # In the following example the Article model has many Comments stored within it in a NoSQL database,
374
- # thus there is no primary key for comments.
375
- #
376
- # Example:
377
- #
378
- # <%= form_for(@article) do |f| %>
379
- # <%= f.fields_for(:comments, include_id: false) do |cf| %>
380
- # ...
381
- # <% end %>
382
- # <% end %>
383
- #
384
- # === Customized form builders
385
- #
386
- # You can also build forms using a customized FormBuilder class. Subclass
387
- # FormBuilder and override or define some more helpers, then use your
388
- # custom builder. For example, let's say you made a helper to
389
- # automatically add labels to form inputs.
390
- #
391
- # <%= form_for @person, url: { action: "create" }, builder: LabellingFormBuilder do |f| %>
392
- # <%= f.text_field :first_name %>
393
- # <%= f.text_field :last_name %>
394
- # <%= f.textarea :biography %>
395
- # <%= f.checkbox :admin %>
396
- # <%= f.submit %>
397
- # <% end %>
398
- #
399
- # In this case, if you use this:
400
- #
401
- # <%= render f %>
402
- #
403
- # The rendered template is <tt>people/_labelling_form</tt> and the local
404
- # variable referencing the form builder is called
405
- # <tt>labelling_form</tt>.
406
- #
407
- # The custom FormBuilder class is automatically merged with the options
408
- # of a nested fields_for call, unless it's explicitly set.
409
- #
410
- # In many cases you will want to wrap the above in another helper, so you
411
- # could do something like the following:
412
- #
413
- # def labelled_form_for(record_or_name_or_array, *args, &block)
414
- # options = args.extract_options!
415
- # form_for(record_or_name_or_array, *(args << options.merge(builder: LabellingFormBuilder)), &block)
416
- # end
417
- #
418
- # If you don't need to attach a form to a model instance, then check out
419
- # FormTagHelper#form_tag.
420
- #
421
- # === Form to external resources
422
- #
423
- # When you build forms to external resources sometimes you need to set an authenticity token or just render a form
424
- # without it, for example when you submit data to a payment gateway number and types of fields could be limited.
425
- #
426
- # To set an authenticity token you need to pass an <tt>:authenticity_token</tt> parameter
427
- #
428
- # <%= form_for @invoice, url: external_url, authenticity_token: 'external_token' do |f| %>
429
- # ...
430
- # <% end %>
431
- #
432
- # If you don't want to an authenticity token field be rendered at all just pass <tt>false</tt>:
433
- #
434
- # <%= form_for @invoice, url: external_url, authenticity_token: false do |f| %>
435
- # ...
436
- # <% end %>
437
- def form_for(record, options = {}, &block)
438
- raise ArgumentError, "Missing block" unless block_given?
439
-
440
- case record
441
- when String, Symbol
442
- model = false
443
- object_name = record
444
- else
445
- model = record
446
- object = _object_for_form_builder(record)
447
- raise ArgumentError, "First argument in form cannot contain nil or be empty" unless object
448
- object_name = options[:as] || model_name_from_record_or_class(object).param_key
449
- apply_form_for_options!(object, options)
450
- end
451
-
452
- remote = options.delete(:remote)
453
-
454
- if remote && !embed_authenticity_token_in_remote_forms && options[:authenticity_token].blank?
455
- options[:authenticity_token] = false
456
- end
457
-
458
- options[:model] = model
459
- options[:scope] = object_name
460
- options[:local] = !remote
461
- options[:skip_default_ids] = false
462
- options[:allow_method_names_outside_object] = options.fetch(:allow_method_names_outside_object, false)
463
-
464
- form_with(**options, &block)
465
- end
466
-
467
- def apply_form_for_options!(object, options) # :nodoc:
468
- object = convert_to_model(object)
469
-
470
- as = options[:as]
471
- namespace = options[:namespace]
472
- action = object.respond_to?(:persisted?) && object.persisted? ? :edit : :new
473
- options[:html] ||= {}
474
- options[:html].reverse_merge!(
475
- class: as ? "#{action}_#{as}" : dom_class(object, action),
476
- id: (as ? [namespace, action, as] : [namespace, dom_id(object, action)]).compact.join("_").presence,
477
- )
478
- end
479
- private :apply_form_for_options!
480
-
481
- mattr_accessor :form_with_generates_remote_forms, default: true
482
-
483
- mattr_accessor :form_with_generates_ids, default: false
484
-
485
- mattr_accessor :multiple_file_field_include_hidden, default: false
486
-
487
- # Creates a form tag based on mixing URLs, scopes, or models.
488
- #
489
- # # Using just a URL:
490
- # <%= form_with url: articles_path do |form| %>
491
- # <%= form.text_field :title %>
492
- # <% end %>
493
- # # =>
494
- # <form action="/articles" method="post">
495
- # <input type="text" name="title" />
496
- # </form>
497
- #
498
- # # With an intentionally empty URL:
499
- # <%= form_with url: false do |form| %>
500
- # <%= form.text_field :title %>
501
- # <% end %>
502
- # # =>
503
- # <form method="post">
504
- # <input type="text" name="title" />
505
- # </form>
506
- #
507
- # # Adding a scope prefixes the input field names:
508
- # <%= form_with scope: :article, url: articles_path do |form| %>
509
- # <%= form.text_field :title %>
510
- # <% end %>
511
- # # =>
512
- # <form action="/articles" method="post">
513
- # <input type="text" name="article[title]" />
514
- # </form>
515
- #
516
- # # Using a model infers both the URL and scope:
517
- # <%= form_with model: Article.new do |form| %>
518
- # <%= form.text_field :title %>
519
- # <% end %>
520
- # # =>
521
- # <form action="/articles" method="post">
522
- # <input type="text" name="article[title]" />
523
- # </form>
524
- #
525
- # # An existing model makes an update form and fills out field values:
526
- # <%= form_with model: Article.first do |form| %>
527
- # <%= form.text_field :title %>
528
- # <% end %>
529
- # # =>
530
- # <form action="/articles/1" method="post">
531
- # <input type="hidden" name="_method" value="patch" />
532
- # <input type="text" name="article[title]" value="<the title of the article>" />
533
- # </form>
534
- # # Though the fields don't have to correspond to model attributes:
535
- # <%= form_with model: Cat.new do |form| %>
536
- # <%= form.text_field :cats_dont_have_gills %>
537
- # <%= form.text_field :but_in_forms_they_can %>
538
- # <% end %>
539
- # # =>
540
- # <form action="/cats" method="post">
541
- # <input type="text" name="cat[cats_dont_have_gills]" />
542
- # <input type="text" name="cat[but_in_forms_they_can]" />
543
- # </form>
544
- #
545
- # The parameters in the forms are accessible in controllers according to
546
- # their name nesting. So inputs named +title+ and <tt>article[title]</tt> are
547
- # accessible as <tt>params[:title]</tt> and <tt>params[:article][:title]</tt>
548
- # respectively.
549
- #
550
- # For ease of comparison the examples above left out the submit button,
551
- # as well as the auto generated hidden fields that enable UTF-8 support
552
- # and adds an authenticity token needed for cross site request forgery
553
- # protection.
554
- #
555
- # === Resource-oriented style
556
- #
557
- # In many of the examples just shown, the +:model+ passed to +form_with+
558
- # is a _resource_. It corresponds to a set of RESTful routes, most likely
559
- # defined via +resources+ in <tt>config/routes.rb</tt>.
560
- #
561
- # So when passing such a model record, \Rails infers the URL and method.
562
- #
563
- # <%= form_with model: @article do |form| %>
564
- # ...
565
- # <% end %>
566
- #
567
- # is then equivalent to something like:
568
- #
569
- # <%= form_with scope: :article, url: article_path(@article), method: :patch do |form| %>
570
- # ...
571
- # <% end %>
572
- #
573
- # And for a new record
574
- #
575
- # <%= form_with model: Article.new do |form| %>
576
- # ...
577
- # <% end %>
578
- #
579
- # is equivalent to something like:
580
- #
581
- # <%= form_with scope: :article, url: articles_path do |form| %>
582
- # ...
583
- # <% end %>
584
- #
585
- # ==== +form_with+ options
586
- #
587
- # * <tt>:url</tt> - The URL the form submits to. Akin to values passed to
588
- # +url_for+ or +link_to+. For example, you may use a named route
589
- # directly. When a <tt>:scope</tt> is passed without a <tt>:url</tt> the
590
- # form just submits to the current URL.
591
- # * <tt>:method</tt> - The method to use when submitting the form, usually
592
- # either "get" or "post". If "patch", "put", "delete", or another verb
593
- # is used, a hidden input named <tt>_method</tt> is added to
594
- # simulate the verb over post.
595
- # * <tt>:format</tt> - The format of the route the form submits to.
596
- # Useful when submitting to another resource type, like <tt>:json</tt>.
597
- # Skipped if a <tt>:url</tt> is passed.
598
- # * <tt>:scope</tt> - The scope to prefix input field names with and
599
- # thereby how the submitted parameters are grouped in controllers.
600
- # * <tt>:namespace</tt> - A namespace for your form to ensure uniqueness of
601
- # id attributes on form elements. The namespace attribute will be prefixed
602
- # with underscore on the generated HTML id.
603
- # * <tt>:model</tt> - A model object to infer the <tt>:url</tt> and
604
- # <tt>:scope</tt> by, plus fill out input field values.
605
- # So if a +title+ attribute is set to "Ahoy!" then a +title+ input
606
- # field's value would be "Ahoy!".
607
- # If the model is a new record a create form is generated, if an
608
- # existing record, however, an update form is generated.
609
- # Pass <tt>:scope</tt> or <tt>:url</tt> to override the defaults.
610
- # E.g. turn <tt>params[:article]</tt> into <tt>params[:blog]</tt>.
611
- # * <tt>:authenticity_token</tt> - Authenticity token to use in the form.
612
- # Override with a custom authenticity token or pass <tt>false</tt> to
613
- # skip the authenticity token field altogether.
614
- # Useful when submitting to an external resource like a payment gateway
615
- # that might limit the valid fields.
616
- # Remote forms may omit the embedded authenticity token by setting
617
- # <tt>config.action_view.embed_authenticity_token_in_remote_forms = false</tt>.
618
- # This is helpful when fragment-caching the form. Remote forms
619
- # get the authenticity token from the <tt>meta</tt> tag, so embedding is
620
- # unnecessary unless you support browsers without JavaScript.
621
- # * <tt>:local</tt> - Whether to use standard HTTP form submission.
622
- # When set to <tt>true</tt>, the form is submitted via standard HTTP.
623
- # When set to <tt>false</tt>, the form is submitted as a "remote form", which
624
- # is handled by \Rails UJS as an XHR. When unspecified, the behavior is derived
625
- # from <tt>config.action_view.form_with_generates_remote_forms</tt> where the
626
- # config's value is actually the inverse of what <tt>local</tt>'s value would be.
627
- # As of \Rails 6.1, that configuration option defaults to <tt>false</tt>
628
- # (which has the equivalent effect of passing <tt>local: true</tt>).
629
- # In previous versions of \Rails, that configuration option defaults to
630
- # <tt>true</tt> (the equivalent of passing <tt>local: false</tt>).
631
- # * <tt>:skip_enforcing_utf8</tt> - If set to true, a hidden input with name
632
- # utf8 is not output.
633
- # * <tt>:builder</tt> - Override the object used to build the form.
634
- # * <tt>:id</tt> - Optional HTML id attribute.
635
- # * <tt>:class</tt> - Optional HTML class attribute.
636
- # * <tt>:data</tt> - Optional HTML data attributes.
637
- # * <tt>:html</tt> - Other optional HTML attributes for the form tag.
638
- #
639
- # === Examples
640
- #
641
- # When not passing a block, +form_with+ just generates an opening form tag.
642
- #
643
- # <%= form_with(model: @article, url: super_articles_path) %>
644
- # <%= form_with(model: @article, scope: :blog) %>
645
- # <%= form_with(model: @article, format: :json) %>
646
- # <%= form_with(model: @article, authenticity_token: false) %> # Disables the token.
647
- #
648
- # For namespaced routes, like +admin_article_url+:
649
- #
650
- # <%= form_with(model: [ :admin, @article ]) do |form| %>
651
- # ...
652
- # <% end %>
653
- #
654
- # If your resource has associations defined, for example, you want to add comments
655
- # to the document given that the routes are set correctly:
656
- #
657
- # <%= form_with(model: [ @document, Comment.new ]) do |form| %>
658
- # ...
659
- # <% end %>
660
- #
661
- # Where <tt>@document = Document.find(params[:id])</tt>.
662
- #
663
- # === Mixing with other form helpers
664
- #
665
- # While +form_with+ uses a FormBuilder object it's possible to mix and
666
- # match the stand-alone FormHelper methods and methods
667
- # from FormTagHelper:
668
- #
669
- # <%= form_with scope: :person do |form| %>
670
- # <%= form.text_field :first_name %>
671
- # <%= form.text_field :last_name %>
672
- #
673
- # <%= textarea :person, :biography %>
674
- # <%= checkbox_tag "person[admin]", "1", @person.company.admin? %>
675
- #
676
- # <%= form.submit %>
677
- # <% end %>
678
- #
679
- # Same goes for the methods in FormOptionsHelper and DateHelper designed
680
- # to work with an object as a base, like
681
- # FormOptionsHelper#collection_select and DateHelper#datetime_select.
682
- #
683
- # === Setting the method
684
- #
685
- # You can force the form to use the full array of HTTP verbs by setting
686
- #
687
- # method: (:get|:post|:patch|:put|:delete)
688
- #
689
- # in the options hash. If the verb is not GET or POST, which are natively
690
- # supported by HTML forms, the form will be set to POST and a hidden input
691
- # called _method will carry the intended verb for the server to interpret.
692
- #
693
- # === Setting HTML options
694
- #
695
- # You can set data attributes directly in a data hash, but HTML options
696
- # besides id and class must be wrapped in an HTML key:
697
- #
698
- # <%= form_with(model: @article, data: { behavior: "autosave" }, html: { name: "go" }) do |form| %>
699
- # ...
700
- # <% end %>
701
- #
702
- # generates
703
- #
704
- # <form action="/articles/123" method="post" data-behavior="autosave" name="go">
705
- # <input name="_method" type="hidden" value="patch" />
706
- # ...
707
- # </form>
708
- #
709
- # === Removing hidden model id's
710
- #
711
- # The +form_with+ method automatically includes the model id as a hidden field in the form.
712
- # This is used to maintain the correlation between the form data and its associated model.
713
- # Some ORM systems do not use IDs on nested models so in this case you want to be able
714
- # to disable the hidden id.
715
- #
716
- # In the following example the Article model has many Comments stored within it in a NoSQL database,
717
- # thus there is no primary key for comments.
718
- #
719
- # <%= form_with(model: @article) do |form| %>
720
- # <%= form.fields(:comments, skip_id: true) do |fields| %>
721
- # ...
722
- # <% end %>
723
- # <% end %>
724
- #
725
- # === Customized form builders
726
- #
727
- # You can also build forms using a customized FormBuilder class. Subclass
728
- # FormBuilder and override or define some more helpers, then use your
729
- # custom builder. For example, let's say you made a helper to
730
- # automatically add labels to form inputs.
731
- #
732
- # <%= form_with model: @person, url: { action: "create" }, builder: LabellingFormBuilder do |form| %>
733
- # <%= form.text_field :first_name %>
734
- # <%= form.text_field :last_name %>
735
- # <%= form.textarea :biography %>
736
- # <%= form.checkbox :admin %>
737
- # <%= form.submit %>
738
- # <% end %>
739
- #
740
- # In this case, if you use:
741
- #
742
- # <%= render form %>
743
- #
744
- # The rendered template is <tt>people/_labelling_form</tt> and the local
745
- # variable referencing the form builder is called
746
- # <tt>labelling_form</tt>.
747
- #
748
- # The custom FormBuilder class is automatically merged with the options
749
- # of a nested +fields+ call, unless it's explicitly set.
750
- #
751
- # In many cases you will want to wrap the above in another helper, so you
752
- # could do something like the following:
753
- #
754
- # def labelled_form_with(**options, &block)
755
- # form_with(**options.merge(builder: LabellingFormBuilder), &block)
756
- # end
757
- def form_with(model: false, scope: nil, url: nil, format: nil, **options, &block)
758
- raise ArgumentError, "Passed nil to the :model argument, expect an object or false" if model.nil?
759
-
760
- options = { allow_method_names_outside_object: true, skip_default_ids: !form_with_generates_ids }.merge!(options)
761
-
762
- if model
763
- if url != false
764
- url ||= if format.nil?
765
- polymorphic_path(model, {})
766
- else
767
- polymorphic_path(model, format: format)
768
- end
769
- end
770
-
771
- model = convert_to_model(_object_for_form_builder(model))
772
- scope ||= model_name_from_record_or_class(model).param_key
773
- end
774
-
775
- if block_given?
776
- builder = instantiate_builder(scope, model, options)
777
- output = capture(builder, &block)
778
- options[:multipart] ||= builder.multipart?
779
-
780
- html_options = html_options_for_form_with(url, model, **options)
781
- form_tag_with_body(html_options, output)
782
- else
783
- html_options = html_options_for_form_with(url, model, **options)
784
- form_tag_html(html_options)
785
- end
786
- end
787
-
788
- # Creates a scope around a specific model object like #form_with, but
789
- # doesn't create the form tags themselves. This makes +fields_for+
790
- # suitable for specifying additional model objects in the same form.
791
- #
792
- # Although the usage and purpose of +fields_for+ is similar to #form_with's,
793
- # its method signature is slightly different. Like #form_with, it yields
794
- # a FormBuilder object associated with a particular model object to a block,
795
- # and within the block allows methods to be called on the builder to
796
- # generate fields associated with the model object. Fields may reflect
797
- # a model object in two ways - how they are named (hence how submitted
798
- # values appear within the +params+ hash in the controller) and what
799
- # default values are shown when the form fields are first displayed.
800
- # In order for both of these features to be specified independently,
801
- # both an object name (represented by either a symbol or string) and the
802
- # object itself can be passed to the method separately -
803
- #
804
- # <%= form_with model: @person do |person_form| %>
805
- # First name: <%= person_form.text_field :first_name %>
806
- # Last name : <%= person_form.text_field :last_name %>
807
- #
808
- # <%= fields_for :permission, @person.permission do |permission_fields| %>
809
- # Admin? : <%= permission_fields.checkbox :admin %>
810
- # <% end %>
811
- #
812
- # <%= person_form.submit %>
813
- # <% end %>
814
- #
815
- # In this case, the checkbox field will be represented by an HTML +input+
816
- # tag with the +name+ attribute <tt>permission[admin]</tt>, and the submitted
817
- # value will appear in the controller as <tt>params[:permission][:admin]</tt>.
818
- # If <tt>@person.permission</tt> is an existing record with an attribute
819
- # +admin+, the initial state of the checkbox when first displayed will
820
- # reflect the value of <tt>@person.permission.admin</tt>.
821
- #
822
- # Often this can be simplified by passing just the name of the model
823
- # object to +fields_for+ -
824
- #
825
- # <%= fields_for :permission do |permission_fields| %>
826
- # Admin?: <%= permission_fields.checkbox :admin %>
827
- # <% end %>
828
- #
829
- # ...in which case, if <tt>:permission</tt> also happens to be the name of an
830
- # instance variable <tt>@permission</tt>, the initial state of the input
831
- # field will reflect the value of that variable's attribute <tt>@permission.admin</tt>.
832
- #
833
- # Alternatively, you can pass just the model object itself (if the first
834
- # argument isn't a string or symbol +fields_for+ will realize that the
835
- # name has been omitted) -
836
- #
837
- # <%= fields_for @person.permission do |permission_fields| %>
838
- # Admin?: <%= permission_fields.checkbox :admin %>
839
- # <% end %>
840
- #
841
- # and +fields_for+ will derive the required name of the field from the
842
- # _class_ of the model object, e.g. if <tt>@person.permission</tt>, is
843
- # of class +Permission+, the field will still be named <tt>permission[admin]</tt>.
844
- #
845
- # Note: This also works for the methods in FormOptionsHelper and
846
- # DateHelper that are designed to work with an object as base, like
847
- # FormOptionsHelper#collection_select and DateHelper#datetime_select.
848
- #
849
- # === Nested Attributes Examples
850
- #
851
- # When the object belonging to the current scope has a nested attribute
852
- # writer for a certain attribute, +fields_for+ will yield a new scope
853
- # for that attribute. This allows you to create forms that set or change
854
- # the attributes of a parent object and its associations in one go.
855
- #
856
- # Nested attribute writers are normal setter methods named after an
857
- # association. The most common way of defining these writers is either
858
- # with +accepts_nested_attributes_for+ in a model definition or by
859
- # defining a method with the proper name. For example: the attribute
860
- # writer for the association <tt>:address</tt> is called
861
- # <tt>address_attributes=</tt>.
862
- #
863
- # Whether a one-to-one or one-to-many style form builder will be yielded
864
- # depends on whether the normal reader method returns a _single_ object
865
- # or an _array_ of objects.
866
- #
867
- # ==== One-to-one
868
- #
869
- # Consider a Person class which returns a _single_ Address from the
870
- # <tt>address</tt> reader method and responds to the
871
- # <tt>address_attributes=</tt> writer method:
872
- #
873
- # class Person
874
- # def address
875
- # @address
876
- # end
877
- #
878
- # def address_attributes=(attributes)
879
- # # Process the attributes hash
880
- # end
881
- # end
882
- #
883
- # This model can now be used with a nested fields_for, like so:
884
- #
885
- # <%= form_with model: @person do |person_form| %>
886
- # ...
887
- # <%= person_form.fields_for :address do |address_fields| %>
888
- # Street : <%= address_fields.text_field :street %>
889
- # Zip code: <%= address_fields.text_field :zip_code %>
890
- # <% end %>
891
- # ...
892
- # <% end %>
893
- #
894
- # When address is already an association on a Person you can use
895
- # +accepts_nested_attributes_for+ to define the writer method for you:
896
- #
897
- # class Person < ActiveRecord::Base
898
- # has_one :address
899
- # accepts_nested_attributes_for :address
900
- # end
901
- #
902
- # If you want to destroy the associated model through the form, you have
903
- # to enable it first using the <tt>:allow_destroy</tt> option for
904
- # +accepts_nested_attributes_for+:
905
- #
906
- # class Person < ActiveRecord::Base
907
- # has_one :address
908
- # accepts_nested_attributes_for :address, allow_destroy: true
909
- # end
910
- #
911
- # Now, when you use a form element with the <tt>_destroy</tt> parameter,
912
- # with a value that evaluates to +true+, you will destroy the associated
913
- # model (e.g. 1, '1', true, or 'true'):
914
- #
915
- # <%= form_with model: @person do |person_form| %>
916
- # ...
917
- # <%= person_form.fields_for :address do |address_fields| %>
918
- # ...
919
- # Delete: <%= address_fields.checkbox :_destroy %>
920
- # <% end %>
921
- # ...
922
- # <% end %>
923
- #
924
- # ==== One-to-many
925
- #
926
- # Consider a Person class which returns an _array_ of Project instances
927
- # from the <tt>projects</tt> reader method and responds to the
928
- # <tt>projects_attributes=</tt> writer method:
929
- #
930
- # class Person
931
- # def projects
932
- # [@project1, @project2]
933
- # end
934
- #
935
- # def projects_attributes=(attributes)
936
- # # Process the attributes hash
937
- # end
938
- # end
939
- #
940
- # Note that the <tt>projects_attributes=</tt> writer method is in fact
941
- # required for +fields_for+ to correctly identify <tt>:projects</tt> as a
942
- # collection, and the correct indices to be set in the form markup.
943
- #
944
- # When projects is already an association on Person you can use
945
- # +accepts_nested_attributes_for+ to define the writer method for you:
946
- #
947
- # class Person < ActiveRecord::Base
948
- # has_many :projects
949
- # accepts_nested_attributes_for :projects
950
- # end
951
- #
952
- # This model can now be used with a nested fields_for. The block given to
953
- # the nested +fields_for+ call will be repeated for each instance in the
954
- # collection:
955
- #
956
- # <%= form_with model: @person do |person_form| %>
957
- # ...
958
- # <%= person_form.fields_for :projects do |project_fields| %>
959
- # <% if project_fields.object.active? %>
960
- # Name: <%= project_fields.text_field :name %>
961
- # <% end %>
962
- # <% end %>
963
- # ...
964
- # <% end %>
965
- #
966
- # It's also possible to specify the instance to be used:
967
- #
968
- # <%= form_with model: @person do |person_form| %>
969
- # ...
970
- # <% @person.projects.each do |project| %>
971
- # <% if project.active? %>
972
- # <%= person_form.fields_for :projects, project do |project_fields| %>
973
- # Name: <%= project_fields.text_field :name %>
974
- # <% end %>
975
- # <% end %>
976
- # <% end %>
977
- # ...
978
- # <% end %>
979
- #
980
- # Or a collection to be used:
981
- #
982
- # <%= form_with model: @person do |person_form| %>
983
- # ...
984
- # <%= person_form.fields_for :projects, @active_projects do |project_fields| %>
985
- # Name: <%= project_fields.text_field :name %>
986
- # <% end %>
987
- # ...
988
- # <% end %>
989
- #
990
- # If you want to destroy any of the associated models through the
991
- # form, you have to enable it first using the <tt>:allow_destroy</tt>
992
- # option for +accepts_nested_attributes_for+:
993
- #
994
- # class Person < ActiveRecord::Base
995
- # has_many :projects
996
- # accepts_nested_attributes_for :projects, allow_destroy: true
997
- # end
998
- #
999
- # This will allow you to specify which models to destroy in the
1000
- # attributes hash by adding a form element for the <tt>_destroy</tt>
1001
- # parameter with a value that evaluates to +true+
1002
- # (e.g. 1, '1', true, or 'true'):
1003
- #
1004
- # <%= form_with model: @person do |person_form| %>
1005
- # ...
1006
- # <%= person_form.fields_for :projects do |project_fields| %>
1007
- # Delete: <%= project_fields.checkbox :_destroy %>
1008
- # <% end %>
1009
- # ...
1010
- # <% end %>
1011
- #
1012
- # When a collection is used you might want to know the index of each
1013
- # object in the array. For this purpose, the <tt>index</tt> method is
1014
- # available in the FormBuilder object.
1015
- #
1016
- # <%= form_with model: @person do |person_form| %>
1017
- # ...
1018
- # <%= person_form.fields_for :projects do |project_fields| %>
1019
- # Project #<%= project_fields.index %>
1020
- # ...
1021
- # <% end %>
1022
- # ...
1023
- # <% end %>
1024
- #
1025
- # Note that +fields_for+ will automatically generate a hidden field
1026
- # to store the ID of the record if it responds to <tt>persisted?</tt>.
1027
- # There are circumstances where this hidden field is not needed and you
1028
- # can pass <tt>include_id: false</tt> to prevent +fields_for+ from
1029
- # rendering it automatically.
1030
- def fields_for(record_name, record_object = nil, options = {}, &block)
1031
- options = { model: record_object, allow_method_names_outside_object: false, skip_default_ids: false }.merge!(options)
1032
-
1033
- fields(record_name, **options, &block)
1034
- end
1035
-
1036
- # Scopes input fields with either an explicit scope or model.
1037
- # Like #form_with does with <tt>:scope</tt> or <tt>:model</tt>,
1038
- # except it doesn't output the form tags.
1039
- #
1040
- # # Using a scope prefixes the input field names:
1041
- # <%= fields :comment do |fields| %>
1042
- # <%= fields.text_field :body %>
1043
- # <% end %>
1044
- # # => <input type="text" name="comment[body]">
1045
- #
1046
- # # Using a model infers the scope and assigns field values:
1047
- # <%= fields model: Comment.new(body: "full bodied") do |fields| %>
1048
- # <%= fields.text_field :body %>
1049
- # <% end %>
1050
- # # => <input type="text" name="comment[body]" value="full bodied">
1051
- #
1052
- # # Using `fields` with `form_with`:
1053
- # <%= form_with model: @article do |form| %>
1054
- # <%= form.text_field :title %>
1055
- #
1056
- # <%= form.fields :comment do |fields| %>
1057
- # <%= fields.text_field :body %>
1058
- # <% end %>
1059
- # <% end %>
1060
- #
1061
- # Much like #form_with a FormBuilder instance associated with the scope
1062
- # or model is yielded, so any generated field names are prefixed with
1063
- # either the passed scope or the scope inferred from the <tt>:model</tt>.
1064
- #
1065
- # === Mixing with other form helpers
1066
- #
1067
- # While #form_with uses a FormBuilder object it's possible to mix and
1068
- # match the stand-alone FormHelper methods and methods
1069
- # from FormTagHelper:
1070
- #
1071
- # <%= fields model: @comment do |fields| %>
1072
- # <%= fields.text_field :body %>
1073
- #
1074
- # <%= textarea :commenter, :biography %>
1075
- # <%= checkbox_tag "comment[all_caps]", "1", @comment.commenter.hulk_mode? %>
1076
- # <% end %>
1077
- #
1078
- # Same goes for the methods in FormOptionsHelper and DateHelper designed
1079
- # to work with an object as a base, like
1080
- # FormOptionsHelper#collection_select and DateHelper#datetime_select.
1081
- def fields(scope = nil, model: nil, **options, &block)
1082
- options = { allow_method_names_outside_object: true, skip_default_ids: !form_with_generates_ids }.merge!(options)
1083
-
1084
- if model
1085
- model = _object_for_form_builder(model)
1086
- scope ||= model_name_from_record_or_class(model).param_key
1087
- end
1088
-
1089
- builder = instantiate_builder(scope, model, options)
1090
- capture(builder, &block)
1091
- end
1092
-
1093
- # Returns a label tag tailored for labelling an input field for a specified attribute (identified by +method+) on an object
1094
- # assigned to the template (identified by +object+). The text of label will default to the attribute name unless a translation
1095
- # is found in the current I18n locale (through <tt>helpers.label.<modelname>.<attribute></tt>) or you specify it explicitly.
1096
- # Additional options on the label tag can be passed as a hash with +options+. These options will be tagged
1097
- # onto the HTML as an HTML element attribute as in the example shown, except for the <tt>:value</tt> option, which is designed to
1098
- # target labels for radio_button tags (where the value is used in the ID of the input tag).
1099
- #
1100
- # ==== Examples
1101
- # label(:article, :title)
1102
- # # => <label for="article_title">Title</label>
1103
- #
1104
- # You can localize your labels based on model and attribute names.
1105
- # For example you can define the following in your locale (e.g. en.yml)
1106
- #
1107
- # helpers:
1108
- # label:
1109
- # article:
1110
- # body: "Write your entire text here"
1111
- #
1112
- # Which then will result in
1113
- #
1114
- # label(:article, :body)
1115
- # # => <label for="article_body">Write your entire text here</label>
1116
- #
1117
- # Localization can also be based purely on the translation of the attribute-name
1118
- # (if you are using ActiveRecord):
1119
- #
1120
- # activerecord:
1121
- # attributes:
1122
- # article:
1123
- # cost: "Total cost"
1124
- #
1125
- # <code></code>
1126
- #
1127
- # label(:article, :cost)
1128
- # # => <label for="article_cost">Total cost</label>
1129
- #
1130
- # label(:article, :title, "A short title")
1131
- # # => <label for="article_title">A short title</label>
1132
- #
1133
- # label(:article, :title, "A short title", class: "title_label")
1134
- # # => <label for="article_title" class="title_label">A short title</label>
1135
- #
1136
- # label(:article, :privacy, "Public Article", value: "public")
1137
- # # => <label for="article_privacy_public">Public Article</label>
1138
- #
1139
- # label(:article, :cost) do |translation|
1140
- # content_tag(:span, translation, class: "cost_label")
1141
- # end
1142
- # # => <label for="article_cost"><span class="cost_label">Total cost</span></label>
1143
- #
1144
- # label(:article, :cost) do |builder|
1145
- # content_tag(:span, builder.translation, class: "cost_label")
1146
- # end
1147
- # # => <label for="article_cost"><span class="cost_label">Total cost</span></label>
1148
- #
1149
- # label(:article, :terms) do
1150
- # raw('Accept <a href="/terms">Terms</a>.')
1151
- # end
1152
- # # => <label for="article_terms">Accept <a href="/terms">Terms</a>.</label>
1153
- def label(object_name, method, content_or_options = nil, options = nil, &block)
1154
- Tags::Label.new(object_name, method, self, content_or_options, options).render(&block)
1155
- end
1156
-
1157
- # Returns an input tag of the "text" type tailored for accessing a specified attribute (identified by +method+) on an object
1158
- # assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
1159
- # hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
1160
- # shown.
1161
- #
1162
- # ==== Examples
1163
- # text_field(:article, :title, size: 20)
1164
- # # => <input type="text" id="article_title" name="article[title]" size="20" value="#{@article.title}" />
1165
- #
1166
- # text_field(:article, :title, class: "create_input")
1167
- # # => <input type="text" id="article_title" name="article[title]" value="#{@article.title}" class="create_input" />
1168
- #
1169
- # text_field(:article, :title, maxlength: 30, class: "title_input")
1170
- # # => <input type="text" id="article_title" name="article[title]" maxlength="30" size="30" value="#{@article.title}" class="title_input" />
1171
- #
1172
- # text_field(:session, :user, onchange: "if ($('#session_user').val() === 'admin') { alert('Your login cannot be admin!'); }")
1173
- # # => <input type="text" id="session_user" name="session[user]" value="#{@session.user}" onchange="if ($('#session_user').val() === 'admin') { alert('Your login cannot be admin!'); }"/>
1174
- #
1175
- # text_field(:snippet, :code, size: 20, class: 'code_input')
1176
- # # => <input type="text" id="snippet_code" name="snippet[code]" size="20" value="#{@snippet.code}" class="code_input" />
1177
- def text_field(object_name, method, options = {})
1178
- Tags::TextField.new(object_name, method, self, options).render
1179
- end
1180
-
1181
- # Returns an input tag of the "password" type tailored for accessing a specified attribute (identified by +method+) on an object
1182
- # assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
1183
- # hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
1184
- # shown. For security reasons this field is blank by default; pass in a value via +options+ if this is not desired.
1185
- #
1186
- # ==== Examples
1187
- # password_field(:login, :pass, size: 20)
1188
- # # => <input type="password" id="login_pass" name="login[pass]" size="20" />
1189
- #
1190
- # password_field(:account, :secret, class: "form_input", value: @account.secret)
1191
- # # => <input type="password" id="account_secret" name="account[secret]" value="#{@account.secret}" class="form_input" />
1192
- #
1193
- # password_field(:user, :password, onchange: "if ($('#user_password').val().length > 30) { alert('Your password needs to be shorter!'); }")
1194
- # # => <input type="password" id="user_password" name="user[password]" onchange="if ($('#user_password').val().length > 30) { alert('Your password needs to be shorter!'); }"/>
1195
- #
1196
- # password_field(:account, :pin, size: 20, class: 'form_input')
1197
- # # => <input type="password" id="account_pin" name="account[pin]" size="20" class="form_input" />
1198
- def password_field(object_name, method, options = {})
1199
- Tags::PasswordField.new(object_name, method, self, options).render
1200
- end
1201
-
1202
- # Returns a hidden input tag tailored for accessing a specified attribute (identified by +method+) on an object
1203
- # assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
1204
- # hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
1205
- # shown.
1206
- #
1207
- # ==== Examples
1208
- # hidden_field(:signup, :pass_confirm)
1209
- # # => <input type="hidden" id="signup_pass_confirm" name="signup[pass_confirm]" value="#{@signup.pass_confirm}" />
1210
- #
1211
- # hidden_field(:article, :tag_list)
1212
- # # => <input type="hidden" id="article_tag_list" name="article[tag_list]" value="#{@article.tag_list}" />
1213
- #
1214
- # hidden_field(:user, :token)
1215
- # # => <input type="hidden" id="user_token" name="user[token]" value="#{@user.token}" />
1216
- def hidden_field(object_name, method, options = {})
1217
- Tags::HiddenField.new(object_name, method, self, options).render
1218
- end
1219
-
1220
- # Returns a file upload input tag tailored for accessing a specified attribute (identified by +method+) on an object
1221
- # assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
1222
- # hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
1223
- # shown.
1224
- #
1225
- # Using this method inside a #form_with block will set the enclosing form's encoding to <tt>multipart/form-data</tt>.
1226
- #
1227
- # ==== Options
1228
- # * Creates standard HTML attributes for the tag.
1229
- # * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
1230
- # * <tt>:multiple</tt> - If set to true, *in most updated browsers* the user will be allowed to select multiple files.
1231
- # * <tt>:include_hidden</tt> - When <tt>multiple: true</tt> and <tt>include_hidden: true</tt>, the field will be prefixed with an <tt><input type="hidden"></tt> field with an empty value to support submitting an empty collection of files.
1232
- # * <tt>:accept</tt> - If set to one or multiple mime-types, the user will be suggested a filter when choosing a file. You still need to set up model validations.
1233
- #
1234
- # ==== Examples
1235
- # file_field(:user, :avatar)
1236
- # # => <input type="file" id="user_avatar" name="user[avatar]" />
1237
- #
1238
- # file_field(:article, :image, multiple: true)
1239
- # # => <input type="file" id="article_image" name="article[image][]" multiple="multiple" />
1240
- #
1241
- # file_field(:article, :attached, accept: 'text/html')
1242
- # # => <input accept="text/html" type="file" id="article_attached" name="article[attached]" />
1243
- #
1244
- # file_field(:article, :image, accept: 'image/png,image/gif,image/jpeg')
1245
- # # => <input type="file" id="article_image" name="article[image]" accept="image/png,image/gif,image/jpeg" />
1246
- #
1247
- # file_field(:attachment, :file, class: 'file_input')
1248
- # # => <input type="file" id="attachment_file" name="attachment[file]" class="file_input" />
1249
- def file_field(object_name, method, options = {})
1250
- options = { include_hidden: multiple_file_field_include_hidden }.merge!(options)
1251
-
1252
- Tags::FileField.new(object_name, method, self, convert_direct_upload_option_to_url(options.dup)).render
1253
- end
1254
-
1255
- # Returns a textarea opening and closing tag set tailored for accessing a specified attribute (identified by +method+)
1256
- # on an object assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
1257
- # hash with +options+.
1258
- #
1259
- # ==== Examples
1260
- # textarea(:article, :body, cols: 20, rows: 40)
1261
- # # => <textarea cols="20" rows="40" id="article_body" name="article[body]">
1262
- # # #{@article.body}
1263
- # # </textarea>
1264
- #
1265
- # textarea(:comment, :text, size: "20x30")
1266
- # # => <textarea cols="20" rows="30" id="comment_text" name="comment[text]">
1267
- # # #{@comment.text}
1268
- # # </textarea>
1269
- #
1270
- # textarea(:application, :notes, cols: 40, rows: 15, class: 'app_input')
1271
- # # => <textarea cols="40" rows="15" id="application_notes" name="application[notes]" class="app_input">
1272
- # # #{@application.notes}
1273
- # # </textarea>
1274
- #
1275
- # textarea(:entry, :body, size: "20x20", disabled: 'disabled')
1276
- # # => <textarea cols="20" rows="20" id="entry_body" name="entry[body]" disabled="disabled">
1277
- # # #{@entry.body}
1278
- # # </textarea>
1279
- def textarea(object_name, method, options = {})
1280
- Tags::TextArea.new(object_name, method, self, options).render
1281
- end
1282
- alias_method :text_area, :textarea
1283
-
1284
- # Returns a checkbox tag tailored for accessing a specified attribute (identified by +method+) on an object
1285
- # assigned to the template (identified by +object+). This object must be an instance object (@object) and not a local object.
1286
- # It's intended that +method+ returns an integer and if that integer is above zero, then the checkbox is checked.
1287
- # Additional options on the input tag can be passed as a hash with +options+. The +checked_value+ defaults to 1
1288
- # while the default +unchecked_value+ is set to 0 which is convenient for boolean values.
1289
- #
1290
- # ==== Options
1291
- #
1292
- # * Any standard HTML attributes for the tag can be passed in, for example +:class+.
1293
- # * <tt>:checked</tt> - +true+ or +false+ forces the state of the checkbox to be checked or not.
1294
- # * <tt>:include_hidden</tt> - If set to false, the auxiliary hidden field described below will not be generated.
1295
- #
1296
- # ==== Gotcha
1297
- #
1298
- # The HTML specification says unchecked check boxes are not successful, and
1299
- # thus web browsers do not send them. Unfortunately this introduces a gotcha:
1300
- # if an +Invoice+ model has a +paid+ flag, and in the form that edits a paid
1301
- # invoice the user unchecks its check box, no +paid+ parameter is sent. So,
1302
- # any mass-assignment idiom like
1303
- #
1304
- # @invoice.update(params[:invoice])
1305
- #
1306
- # wouldn't update the flag.
1307
- #
1308
- # To prevent this the helper generates an auxiliary hidden field before
1309
- # every check box. The hidden field has the same name and its
1310
- # attributes mimic an unchecked check box.
1311
- #
1312
- # This way, the client either sends only the hidden field (representing
1313
- # the check box is unchecked), or both fields. Since the HTML specification
1314
- # says key/value pairs have to be sent in the same order they appear in the
1315
- # form, and parameters extraction gets the last occurrence of any repeated
1316
- # key in the query string, that works for ordinary forms.
1317
- #
1318
- # Unfortunately that workaround does not work when the check box goes
1319
- # within an array-like parameter, as in
1320
- #
1321
- # <%= fields_for "project[invoice_attributes][]", invoice, index: nil do |form| %>
1322
- # <%= form.checkbox :paid %>
1323
- # ...
1324
- # <% end %>
1325
- #
1326
- # because parameter name repetition is precisely what \Rails seeks to distinguish
1327
- # the elements of the array. For each item with a checked check box you
1328
- # get an extra ghost item with only that attribute, assigned to "0".
1329
- #
1330
- # In that case it is preferable to either use FormTagHelper#checkbox_tag or to use
1331
- # hashes instead of arrays.
1332
- #
1333
- # ==== Examples
1334
- #
1335
- # # Let's say that @article.validated? is 1:
1336
- # checkbox("article", "validated")
1337
- # # => <input name="article[validated]" type="hidden" value="0" />
1338
- # # <input checked="checked" type="checkbox" id="article_validated" name="article[validated]" value="1" />
1339
- #
1340
- # # Let's say that @puppy.gooddog is "no":
1341
- # checkbox("puppy", "gooddog", {}, "yes", "no")
1342
- # # => <input name="puppy[gooddog]" type="hidden" value="no" />
1343
- # # <input type="checkbox" id="puppy_gooddog" name="puppy[gooddog]" value="yes" />
1344
- #
1345
- # checkbox("eula", "accepted", { class: 'eula_check' }, "yes", "no")
1346
- # # => <input name="eula[accepted]" type="hidden" value="no" />
1347
- # # <input type="checkbox" class="eula_check" id="eula_accepted" name="eula[accepted]" value="yes" />
1348
- def checkbox(object_name, method, options = {}, checked_value = "1", unchecked_value = "0")
1349
- Tags::CheckBox.new(object_name, method, self, checked_value, unchecked_value, options).render
1350
- end
1351
- alias_method :check_box, :checkbox
1352
-
1353
- # Returns a radio button tag for accessing a specified attribute (identified by +method+) on an object
1354
- # assigned to the template (identified by +object+). If the current value of +method+ is +tag_value+ the
1355
- # radio button will be checked.
1356
- #
1357
- # To force the radio button to be checked pass <tt>checked: true</tt> in the
1358
- # +options+ hash. You may pass HTML options there as well.
1359
- #
1360
- # # Let's say that @article.category returns "rails":
1361
- # radio_button("article", "category", "rails")
1362
- # radio_button("article", "category", "java")
1363
- # # => <input type="radio" id="article_category_rails" name="article[category]" value="rails" checked="checked" />
1364
- # # <input type="radio" id="article_category_java" name="article[category]" value="java" />
1365
- #
1366
- # # Let's say that @user.receive_newsletter returns "no":
1367
- # radio_button("user", "receive_newsletter", "yes")
1368
- # radio_button("user", "receive_newsletter", "no")
1369
- # # => <input type="radio" id="user_receive_newsletter_yes" name="user[receive_newsletter]" value="yes" />
1370
- # # <input type="radio" id="user_receive_newsletter_no" name="user[receive_newsletter]" value="no" checked="checked" />
1371
- def radio_button(object_name, method, tag_value, options = {})
1372
- Tags::RadioButton.new(object_name, method, self, tag_value, options).render
1373
- end
1374
-
1375
- # Returns a text_field of type "color".
1376
- #
1377
- # color_field("car", "color")
1378
- # # => <input id="car_color" name="car[color]" type="color" value="#000000" />
1379
- def color_field(object_name, method, options = {})
1380
- Tags::ColorField.new(object_name, method, self, options).render
1381
- end
1382
-
1383
- # Returns an input of type "search" for accessing a specified attribute (identified by +method+) on an object
1384
- # assigned to the template (identified by +object_name+). Inputs of type "search" may be styled differently by
1385
- # some browsers.
1386
- #
1387
- # search_field(:user, :name)
1388
- # # => <input id="user_name" name="user[name]" type="search" />
1389
- # search_field(:user, :name, autosave: false)
1390
- # # => <input autosave="false" id="user_name" name="user[name]" type="search" />
1391
- # search_field(:user, :name, results: 3)
1392
- # # => <input id="user_name" name="user[name]" results="3" type="search" />
1393
- # # Assume request.host returns "www.example.com"
1394
- # search_field(:user, :name, autosave: true)
1395
- # # => <input autosave="com.example.www" id="user_name" name="user[name]" results="10" type="search" />
1396
- # search_field(:user, :name, onsearch: true)
1397
- # # => <input id="user_name" incremental="true" name="user[name]" onsearch="true" type="search" />
1398
- # search_field(:user, :name, autosave: false, onsearch: true)
1399
- # # => <input autosave="false" id="user_name" incremental="true" name="user[name]" onsearch="true" type="search" />
1400
- # search_field(:user, :name, autosave: true, onsearch: true)
1401
- # # => <input autosave="com.example.www" id="user_name" incremental="true" name="user[name]" onsearch="true" results="10" type="search" />
1402
- def search_field(object_name, method, options = {})
1403
- Tags::SearchField.new(object_name, method, self, options).render
1404
- end
1405
-
1406
- # Returns a text_field of type "tel".
1407
- #
1408
- # telephone_field("user", "phone")
1409
- # # => <input id="user_phone" name="user[phone]" type="tel" />
1410
- #
1411
- def telephone_field(object_name, method, options = {})
1412
- Tags::TelField.new(object_name, method, self, options).render
1413
- end
1414
- # aliases telephone_field
1415
- alias phone_field telephone_field
1416
-
1417
- # Returns a text_field of type "date".
1418
- #
1419
- # date_field("user", "born_on")
1420
- # # => <input id="user_born_on" name="user[born_on]" type="date" />
1421
- #
1422
- # The default value is generated by trying to call +strftime+ with "%Y-%m-%d"
1423
- # on the object's value, which makes it behave as expected for instances
1424
- # of DateTime and ActiveSupport::TimeWithZone. You can still override that
1425
- # by passing the "value" option explicitly, e.g.
1426
- #
1427
- # @user.born_on = Date.new(1984, 1, 27)
1428
- # date_field("user", "born_on", value: "1984-05-12")
1429
- # # => <input id="user_born_on" name="user[born_on]" type="date" value="1984-05-12" />
1430
- #
1431
- # You can create values for the "min" and "max" attributes by passing
1432
- # instances of Date or Time to the options hash.
1433
- #
1434
- # date_field("user", "born_on", min: Date.today)
1435
- # # => <input id="user_born_on" name="user[born_on]" type="date" min="2014-05-20" />
1436
- #
1437
- # Alternatively, you can pass a String formatted as an ISO8601 date as the
1438
- # values for "min" and "max."
1439
- #
1440
- # date_field("user", "born_on", min: "2014-05-20")
1441
- # # => <input id="user_born_on" name="user[born_on]" type="date" min="2014-05-20" />
1442
- #
1443
- def date_field(object_name, method, options = {})
1444
- Tags::DateField.new(object_name, method, self, options).render
1445
- end
1446
-
1447
- # Returns a text_field of type "time".
1448
- #
1449
- # The default value is generated by trying to call +strftime+ with "%T.%L"
1450
- # on the object's value. If you pass <tt>include_seconds: false</tt>, it will be
1451
- # formatted by trying to call +strftime+ with "%H:%M" on the object's value.
1452
- # It is also possible to override this by passing the "value" option.
1453
- #
1454
- # ==== Options
1455
- #
1456
- # Supports the same options as FormTagHelper#time_field_tag.
1457
- #
1458
- # ==== Examples
1459
- #
1460
- # time_field("task", "started_at")
1461
- # # => <input id="task_started_at" name="task[started_at]" type="time" />
1462
- #
1463
- # You can create values for the "min" and "max" attributes by passing
1464
- # instances of Date or Time to the options hash.
1465
- #
1466
- # time_field("task", "started_at", min: Time.now)
1467
- # # => <input id="task_started_at" name="task[started_at]" type="time" min="01:00:00.000" />
1468
- #
1469
- # Alternatively, you can pass a String formatted as an ISO8601 time as the
1470
- # values for "min" and "max."
1471
- #
1472
- # time_field("task", "started_at", min: "01:00:00")
1473
- # # => <input id="task_started_at" name="task[started_at]" type="time" min="01:00:00.000" />
1474
- #
1475
- # By default, provided times will be formatted including seconds. You can render just the hour
1476
- # and minute by passing <tt>include_seconds: false</tt>. Some browsers will render a simpler UI
1477
- # if you exclude seconds in the timestamp format.
1478
- #
1479
- # time_field("task", "started_at", value: Time.now, include_seconds: false)
1480
- # # => <input id="task_started_at" name="task[started_at]" type="time" value="01:00" />
1481
- def time_field(object_name, method, options = {})
1482
- Tags::TimeField.new(object_name, method, self, options).render
1483
- end
1484
-
1485
- # Returns a text_field of type "datetime-local".
1486
- #
1487
- # datetime_field("user", "born_on")
1488
- # # => <input id="user_born_on" name="user[born_on]" type="datetime-local" />
1489
- #
1490
- # The default value is generated by trying to call +strftime+ with "%Y-%m-%dT%T"
1491
- # on the object's value, which makes it behave as expected for instances
1492
- # of DateTime and ActiveSupport::TimeWithZone.
1493
- #
1494
- # @user.born_on = Date.new(1984, 1, 12)
1495
- # datetime_field("user", "born_on")
1496
- # # => <input id="user_born_on" name="user[born_on]" type="datetime-local" value="1984-01-12T00:00:00" />
1497
- #
1498
- # You can create values for the "min" and "max" attributes by passing
1499
- # instances of Date or Time to the options hash.
1500
- #
1501
- # datetime_field("user", "born_on", min: Date.today)
1502
- # # => <input id="user_born_on" name="user[born_on]" type="datetime-local" min="2014-05-20T00:00:00.000" />
1503
- #
1504
- # Alternatively, you can pass a String formatted as an ISO8601 datetime as
1505
- # the values for "min" and "max."
1506
- #
1507
- # datetime_field("user", "born_on", min: "2014-05-20T00:00:00")
1508
- # # => <input id="user_born_on" name="user[born_on]" type="datetime-local" min="2014-05-20T00:00:00.000" />
1509
- #
1510
- # By default, provided datetimes will be formatted including seconds. You can render just the date, hour,
1511
- # and minute by passing <tt>include_seconds: false</tt>.
1512
- #
1513
- # @user.born_on = Time.current
1514
- # datetime_field("user", "born_on", include_seconds: false)
1515
- # # => <input id="user_born_on" name="user[born_on]" type="datetime-local" value="2014-05-20T14:35" />
1516
- def datetime_field(object_name, method, options = {})
1517
- Tags::DatetimeLocalField.new(object_name, method, self, options).render
1518
- end
1519
-
1520
- alias datetime_local_field datetime_field
1521
-
1522
- # Returns a text_field of type "month".
1523
- #
1524
- # month_field("user", "born_on")
1525
- # # => <input id="user_born_on" name="user[born_on]" type="month" />
1526
- #
1527
- # The default value is generated by trying to call +strftime+ with "%Y-%m"
1528
- # on the object's value, which makes it behave as expected for instances
1529
- # of DateTime and ActiveSupport::TimeWithZone.
1530
- #
1531
- # @user.born_on = Date.new(1984, 1, 27)
1532
- # month_field("user", "born_on")
1533
- # # => <input id="user_born_on" name="user[born_on]" type="date" value="1984-01" />
1534
- #
1535
- def month_field(object_name, method, options = {})
1536
- Tags::MonthField.new(object_name, method, self, options).render
1537
- end
1538
-
1539
- # Returns a text_field of type "week".
1540
- #
1541
- # week_field("user", "born_on")
1542
- # # => <input id="user_born_on" name="user[born_on]" type="week" />
1543
- #
1544
- # The default value is generated by trying to call +strftime+ with "%Y-W%W"
1545
- # on the object's value, which makes it behave as expected for instances
1546
- # of DateTime and ActiveSupport::TimeWithZone.
1547
- #
1548
- # @user.born_on = Date.new(1984, 5, 12)
1549
- # week_field("user", "born_on")
1550
- # # => <input id="user_born_on" name="user[born_on]" type="date" value="1984-W19" />
1551
- #
1552
- def week_field(object_name, method, options = {})
1553
- Tags::WeekField.new(object_name, method, self, options).render
1554
- end
1555
-
1556
- # Returns a text_field of type "url".
1557
- #
1558
- # url_field("user", "homepage")
1559
- # # => <input id="user_homepage" name="user[homepage]" type="url" />
1560
- #
1561
- def url_field(object_name, method, options = {})
1562
- Tags::UrlField.new(object_name, method, self, options).render
1563
- end
1564
-
1565
- # Returns a text_field of type "email".
1566
- #
1567
- # email_field("user", "address")
1568
- # # => <input id="user_address" name="user[address]" type="email" />
1569
- #
1570
- def email_field(object_name, method, options = {})
1571
- Tags::EmailField.new(object_name, method, self, options).render
1572
- end
1573
-
1574
- # Returns an input tag of type "number".
1575
- #
1576
- # ==== Options
1577
- #
1578
- # Supports the same options as FormTagHelper#number_field_tag.
1579
- def number_field(object_name, method, options = {})
1580
- Tags::NumberField.new(object_name, method, self, options).render
1581
- end
1582
-
1583
- # Returns an input tag of type "range".
1584
- #
1585
- # ==== Options
1586
- #
1587
- # Supports the same options as FormTagHelper#range_field_tag.
1588
- def range_field(object_name, method, options = {})
1589
- Tags::RangeField.new(object_name, method, self, options).render
1590
- end
1591
-
1592
- def _object_for_form_builder(object) # :nodoc:
1593
- object.is_a?(Array) ? object.last : object
1594
- end
1595
-
1596
- private
1597
- def html_options_for_form_with(url_for_options = nil, model = nil, html: {}, local: !form_with_generates_remote_forms,
1598
- skip_enforcing_utf8: nil, **options)
1599
- html_options = options.slice(:id, :class, :multipart, :method, :data, :authenticity_token).merge!(html)
1600
- html_options[:remote] = html.delete(:remote) || !local
1601
- html_options[:method] ||= :patch if model.respond_to?(:persisted?) && model.persisted?
1602
- if skip_enforcing_utf8.nil?
1603
- if options.key?(:enforce_utf8)
1604
- html_options[:enforce_utf8] = options[:enforce_utf8]
1605
- end
1606
- else
1607
- html_options[:enforce_utf8] = !skip_enforcing_utf8
1608
- end
1609
- html_options_for_form(url_for_options.nil? ? {} : url_for_options, html_options)
1610
- end
1611
-
1612
- def instantiate_builder(record_name, record_object, options)
1613
- case record_name
1614
- when String, Symbol
1615
- object = record_object
1616
- object_name = record_name
1617
- else
1618
- object = record_name
1619
- object_name = model_name_from_record_or_class(object).param_key if object
1620
- end
1621
-
1622
- builder = options[:builder] || default_form_builder_class
1623
- builder.new(object_name, object, self, options)
1624
- end
1625
-
1626
- def default_form_builder_class
1627
- builder = default_form_builder || ActionView::Base.default_form_builder
1628
- builder.respond_to?(:constantize) ? builder.constantize : builder
1629
- end
1630
- end
1631
-
1632
- # = Action View Form Builder
1633
- #
1634
- # A +FormBuilder+ object is associated with a particular model object and
1635
- # allows you to generate fields associated with the model object. The
1636
- # +FormBuilder+ object is yielded when using #form_with or #fields_for.
1637
- # For example:
1638
- #
1639
- # <%= form_with model: @person do |person_form| %>
1640
- # Name: <%= person_form.text_field :name %>
1641
- # Admin: <%= person_form.checkbox :admin %>
1642
- # <% end %>
1643
- #
1644
- # In the above block, a +FormBuilder+ object is yielded as the
1645
- # +person_form+ variable. This allows you to generate the +text_field+
1646
- # and +checkbox+ fields by specifying their eponymous methods, which
1647
- # modify the underlying template and associates the <tt>@person</tt> model object
1648
- # with the form.
1649
- #
1650
- # The +FormBuilder+ object can be thought of as serving as a proxy for the
1651
- # methods in the +FormHelper+ module. This class, however, allows you to
1652
- # call methods with the model object you are building the form for.
1653
- #
1654
- # You can create your own custom FormBuilder templates by subclassing this
1655
- # class. For example:
1656
- #
1657
- # class MyFormBuilder < ActionView::Helpers::FormBuilder
1658
- # def div_radio_button(method, tag_value, options = {})
1659
- # @template.content_tag(:div,
1660
- # @template.radio_button(
1661
- # @object_name, method, tag_value, objectify_options(options)
1662
- # )
1663
- # )
1664
- # end
1665
- # end
1666
- #
1667
- # The above code creates a new method +div_radio_button+ which wraps a div
1668
- # around the new radio button. Note that when options are passed in, you
1669
- # must call +objectify_options+ in order for the model object to get
1670
- # correctly passed to the method. If +objectify_options+ is not called,
1671
- # then the newly created helper will not be linked back to the model.
1672
- #
1673
- # The +div_radio_button+ code from above can now be used as follows:
1674
- #
1675
- # <%= form_with model: @person, :builder => MyFormBuilder do |f| %>
1676
- # I am a child: <%= f.div_radio_button(:admin, "child") %>
1677
- # I am an adult: <%= f.div_radio_button(:admin, "adult") %>
1678
- # <% end -%>
1679
- #
1680
- # The standard set of helper methods for form building are located in the
1681
- # +field_helpers+ class attribute.
1682
- class FormBuilder
1683
- include ModelNaming
1684
-
1685
- # The methods which wrap a form helper call.
1686
- class_attribute :field_helpers, default: [
1687
- :fields_for, :fields, :label, :text_field, :password_field,
1688
- :hidden_field, :file_field, :textarea, :checkbox,
1689
- :radio_button, :color_field, :search_field,
1690
- :telephone_field, :phone_field, :date_field,
1691
- :time_field, :datetime_field, :datetime_local_field,
1692
- :month_field, :week_field, :url_field, :email_field,
1693
- :number_field, :range_field
1694
- ]
1695
-
1696
- attr_accessor :object_name, :object, :options
1697
-
1698
- attr_reader :multipart, :index
1699
- alias :multipart? :multipart
1700
-
1701
- def multipart=(multipart)
1702
- @multipart = multipart
1703
-
1704
- if parent_builder = @options[:parent_builder]
1705
- parent_builder.multipart = multipart
1706
- end
1707
- end
1708
-
1709
- def self._to_partial_path
1710
- @_to_partial_path ||= name.demodulize.underscore.sub!(/_builder$/, "")
1711
- end
1712
-
1713
- def to_partial_path
1714
- self.class._to_partial_path
1715
- end
1716
-
1717
- def to_model
1718
- self
1719
- end
1720
-
1721
- def initialize(object_name, object, template, options)
1722
- @nested_child_index = {}
1723
- @object_name, @object, @template, @options = object_name, object, template, options
1724
- @default_options = @options ? @options.slice(:index, :namespace, :skip_default_ids, :allow_method_names_outside_object) : {}
1725
- @default_html_options = @default_options.except(:skip_default_ids, :allow_method_names_outside_object)
1726
-
1727
- convert_to_legacy_options(@options)
1728
-
1729
- if @object_name&.end_with?("[]")
1730
- if (object ||= @template.instance_variable_get("@#{@object_name[0..-3]}")) && object.respond_to?(:to_param)
1731
- @auto_index = object.to_param
1732
- else
1733
- raise ArgumentError, "object[] naming but object param and @object var don't exist or don't respond to to_param: #{object.inspect}"
1734
- end
1735
- end
1736
-
1737
- @multipart = nil
1738
- @index = options[:index] || options[:child_index]
1739
- end
1740
-
1741
- # Generate an HTML <tt>id</tt> attribute value.
1742
- #
1743
- # return the <tt><form></tt> element's <tt>id</tt> attribute.
1744
- #
1745
- # <%= form_with model: @article do |f| %>
1746
- # <%# ... %>
1747
- #
1748
- # <% content_for :sticky_footer do %>
1749
- # <%= form.button(form: f.id) %>
1750
- # <% end %>
1751
- # <% end %>
1752
- #
1753
- # In the example above, the <tt>:sticky_footer</tt> content area will
1754
- # exist outside of the <tt><form></tt> element. By declaring the
1755
- # <tt>form</tt> HTML attribute, we hint to the browser that the generated
1756
- # <tt><button></tt> element should be treated as the <tt><form></tt>
1757
- # element's submit button, regardless of where it exists in the DOM.
1758
- def id
1759
- options.dig(:html, :id) || options[:id]
1760
- end
1761
-
1762
- # Generate an HTML <tt>id</tt> attribute value for the given field
1763
- #
1764
- # Return the value generated by the <tt>FormBuilder</tt> for the given
1765
- # attribute name.
1766
- #
1767
- # <%= form_with model: @article do |f| %>
1768
- # <%= f.label :title %>
1769
- # <%= f.text_field :title, aria: { describedby: f.field_id(:title, :error) } %>
1770
- # <%= tag.span("is blank", id: f.field_id(:title, :error) %>
1771
- # <% end %>
1772
- #
1773
- # In the example above, the <tt><input type="text"></tt> element built by
1774
- # the call to #text_field declares an
1775
- # <tt>aria-describedby</tt> attribute referencing the <tt><span></tt>
1776
- # element, sharing a common <tt>id</tt> root (<tt>article_title</tt>, in this
1777
- # case).
1778
- def field_id(method, *suffixes, namespace: @options[:namespace], index: @options[:index])
1779
- @template.field_id(@object_name, method, *suffixes, namespace: namespace, index: index)
1780
- end
1781
-
1782
- # Generate an HTML <tt>name</tt> attribute value for the given name and
1783
- # field combination
1784
- #
1785
- # Return the value generated by the <tt>FormBuilder</tt> for the given
1786
- # attribute name.
1787
- #
1788
- # <%= form_with model: @article do |f| %>
1789
- # <%= f.text_field :title, name: f.field_name(:title, :subtitle) %>
1790
- # <%# => <input type="text" name="article[title][subtitle]"> %>
1791
- # <% end %>
1792
- #
1793
- # <%= form_with model: @article do |f| %>
1794
- # <%= f.text_field :tag, name: f.field_name(:tag, multiple: true) %>
1795
- # <%# => <input type="text" name="article[tag][]"> %>
1796
- # <% end %>
1797
- #
1798
- def field_name(method, *methods, multiple: false, index: @options[:index])
1799
- object_name = @options.fetch(:as) { @object_name }
1800
-
1801
- @template.field_name(object_name, method, *methods, index: index, multiple: multiple)
1802
- end
1803
-
1804
- ##
1805
- # :method: text_field
1806
- #
1807
- # :call-seq: text_field(method, options = {})
1808
- #
1809
- # Wraps ActionView::Helpers::FormHelper#text_field for form builders:
1810
- #
1811
- # <%= form_with model: @user do |f| %>
1812
- # <%= f.text_field :name %>
1813
- # <% end %>
1814
- #
1815
- # Please refer to the documentation of the base helper for details.
1816
-
1817
- ##
1818
- # :method: password_field
1819
- #
1820
- # :call-seq: password_field(method, options = {})
1821
- #
1822
- # Wraps ActionView::Helpers::FormHelper#password_field for form builders:
1823
- #
1824
- # <%= form_with model: @user do |f| %>
1825
- # <%= f.password_field :password %>
1826
- # <% end %>
1827
- #
1828
- # Please refer to the documentation of the base helper for details.
1829
-
1830
- ##
1831
- # :method: textarea
1832
- #
1833
- # :call-seq: textarea(method, options = {})
1834
- #
1835
- # Wraps ActionView::Helpers::FormHelper#textarea for form builders:
1836
- #
1837
- # <%= form_with model: @user do |f| %>
1838
- # <%= f.textarea :detail %>
1839
- # <% end %>
1840
- #
1841
- # Please refer to the documentation of the base helper for details.
1842
-
1843
- ##
1844
- # :method: color_field
1845
- #
1846
- # :call-seq: color_field(method, options = {})
1847
- #
1848
- # Wraps ActionView::Helpers::FormHelper#color_field for form builders:
1849
- #
1850
- # <%= form_with model: @user do |f| %>
1851
- # <%= f.color_field :favorite_color %>
1852
- # <% end %>
1853
- #
1854
- # Please refer to the documentation of the base helper for details.
1855
-
1856
- ##
1857
- # :method: search_field
1858
- #
1859
- # :call-seq: search_field(method, options = {})
1860
- #
1861
- # Wraps ActionView::Helpers::FormHelper#search_field for form builders:
1862
- #
1863
- # <%= form_with model: @user do |f| %>
1864
- # <%= f.search_field :name %>
1865
- # <% end %>
1866
- #
1867
- # Please refer to the documentation of the base helper for details.
1868
-
1869
- ##
1870
- # :method: telephone_field
1871
- #
1872
- # :call-seq: telephone_field(method, options = {})
1873
- #
1874
- # Wraps ActionView::Helpers::FormHelper#telephone_field for form builders:
1875
- #
1876
- # <%= form_with model: @user do |f| %>
1877
- # <%= f.telephone_field :phone %>
1878
- # <% end %>
1879
- #
1880
- # Please refer to the documentation of the base helper for details.
1881
-
1882
- ##
1883
- # :method: phone_field
1884
- #
1885
- # :call-seq: phone_field(method, options = {})
1886
- #
1887
- # Wraps ActionView::Helpers::FormHelper#phone_field for form builders:
1888
- #
1889
- # <%= form_with model: @user do |f| %>
1890
- # <%= f.phone_field :phone %>
1891
- # <% end %>
1892
- #
1893
- # Please refer to the documentation of the base helper for details.
1894
-
1895
- ##
1896
- # :method: date_field
1897
- #
1898
- # :call-seq: date_field(method, options = {})
1899
- #
1900
- # Wraps ActionView::Helpers::FormHelper#date_field for form builders:
1901
- #
1902
- # <%= form_with model: @user do |f| %>
1903
- # <%= f.date_field :born_on %>
1904
- # <% end %>
1905
- #
1906
- # Please refer to the documentation of the base helper for details.
1907
-
1908
- ##
1909
- # :method: time_field
1910
- #
1911
- # :call-seq: time_field(method, options = {})
1912
- #
1913
- # Wraps ActionView::Helpers::FormHelper#time_field for form builders:
1914
- #
1915
- # <%= form_with model: @user do |f| %>
1916
- # <%= f.time_field :born_at %>
1917
- # <% end %>
1918
- #
1919
- # Please refer to the documentation of the base helper for details.
1920
-
1921
- ##
1922
- # :method: datetime_field
1923
- #
1924
- # :call-seq: datetime_field(method, options = {})
1925
- #
1926
- # Wraps ActionView::Helpers::FormHelper#datetime_field for form builders:
1927
- #
1928
- # <%= form_with model: @user do |f| %>
1929
- # <%= f.datetime_field :graduation_day %>
1930
- # <% end %>
1931
- #
1932
- # Please refer to the documentation of the base helper for details.
1933
-
1934
- ##
1935
- # :method: datetime_local_field
1936
- #
1937
- # :call-seq: datetime_local_field(method, options = {})
1938
- #
1939
- # Wraps ActionView::Helpers::FormHelper#datetime_local_field for form builders:
1940
- #
1941
- # <%= form_with model: @user do |f| %>
1942
- # <%= f.datetime_local_field :graduation_day %>
1943
- # <% end %>
1944
- #
1945
- # Please refer to the documentation of the base helper for details.
1946
-
1947
- ##
1948
- # :method: month_field
1949
- #
1950
- # :call-seq: month_field(method, options = {})
1951
- #
1952
- # Wraps ActionView::Helpers::FormHelper#month_field for form builders:
1953
- #
1954
- # <%= form_with model: @user do |f| %>
1955
- # <%= f.month_field :birthday_month %>
1956
- # <% end %>
1957
- #
1958
- # Please refer to the documentation of the base helper for details.
1959
-
1960
- ##
1961
- # :method: week_field
1962
- #
1963
- # :call-seq: week_field(method, options = {})
1964
- #
1965
- # Wraps ActionView::Helpers::FormHelper#week_field for form builders:
1966
- #
1967
- # <%= form_with model: @user do |f| %>
1968
- # <%= f.week_field :birthday_week %>
1969
- # <% end %>
1970
- #
1971
- # Please refer to the documentation of the base helper for details.
1972
-
1973
- ##
1974
- # :method: url_field
1975
- #
1976
- # :call-seq: url_field(method, options = {})
1977
- #
1978
- # Wraps ActionView::Helpers::FormHelper#url_field for form builders:
1979
- #
1980
- # <%= form_with model: @user do |f| %>
1981
- # <%= f.url_field :homepage %>
1982
- # <% end %>
1983
- #
1984
- # Please refer to the documentation of the base helper for details.
1985
-
1986
- ##
1987
- # :method: email_field
1988
- #
1989
- # :call-seq: email_field(method, options = {})
1990
- #
1991
- # Wraps ActionView::Helpers::FormHelper#email_field for form builders:
1992
- #
1993
- # <%= form_with model: @user do |f| %>
1994
- # <%= f.email_field :address %>
1995
- # <% end %>
1996
- #
1997
- # Please refer to the documentation of the base helper for details.
1998
-
1999
- ##
2000
- # :method: number_field
2001
- #
2002
- # :call-seq: number_field(method, options = {})
2003
- #
2004
- # Wraps ActionView::Helpers::FormHelper#number_field for form builders:
2005
- #
2006
- # <%= form_with model: @user do |f| %>
2007
- # <%= f.number_field :age %>
2008
- # <% end %>
2009
- #
2010
- # Please refer to the documentation of the base helper for details.
2011
-
2012
- ##
2013
- # :method: range_field
2014
- #
2015
- # :call-seq: range_field(method, options = {})
2016
- #
2017
- # Wraps ActionView::Helpers::FormHelper#range_field for form builders:
2018
- #
2019
- # <%= form_with model: @user do |f| %>
2020
- # <%= f.range_field :age %>
2021
- # <% end %>
2022
- #
2023
- # Please refer to the documentation of the base helper for details.
2024
-
2025
- ActiveSupport::CodeGenerator.batch(self, __FILE__, __LINE__) do |code_generator|
2026
- (field_helpers - [:label, :checkbox, :radio_button, :fields_for, :fields, :hidden_field, :file_field]).each do |selector|
2027
- code_generator.class_eval do |batch|
2028
- batch <<
2029
- "def #{selector}(method, options = {})" <<
2030
- " @template.#{selector}(@object_name, method, objectify_options(options))" <<
2031
- "end"
2032
- end
2033
- end
2034
- end
2035
- alias_method :text_area, :textarea
2036
-
2037
- # Creates a scope around a specific model object like #form_with, but
2038
- # doesn't create the form tags themselves. This makes +fields_for+
2039
- # suitable for specifying additional model objects in the same form.
2040
- #
2041
- # Although the usage and purpose of +fields_for+ is similar to #form_with's,
2042
- # its method signature is slightly different. Like #form_with, it yields
2043
- # a FormBuilder object associated with a particular model object to a block,
2044
- # and within the block allows methods to be called on the builder to
2045
- # generate fields associated with the model object. Fields may reflect
2046
- # a model object in two ways - how they are named (hence how submitted
2047
- # values appear within the +params+ hash in the controller) and what
2048
- # default values are shown when the form fields are first displayed.
2049
- # In order for both of these features to be specified independently,
2050
- # both an object name (represented by either a symbol or string) and the
2051
- # object itself can be passed to the method separately -
2052
- #
2053
- # <%= form_with model: @person do |person_form| %>
2054
- # First name: <%= person_form.text_field :first_name %>
2055
- # Last name : <%= person_form.text_field :last_name %>
2056
- #
2057
- # <%= fields_for :permission, @person.permission do |permission_fields| %>
2058
- # Admin? : <%= permission_fields.checkbox :admin %>
2059
- # <% end %>
2060
- #
2061
- # <%= person_form.submit %>
2062
- # <% end %>
2063
- #
2064
- # In this case, the checkbox field will be represented by an HTML +input+
2065
- # tag with the +name+ attribute <tt>permission[admin]</tt>, and the submitted
2066
- # value will appear in the controller as <tt>params[:permission][:admin]</tt>.
2067
- # If <tt>@person.permission</tt> is an existing record with an attribute
2068
- # +admin+, the initial state of the checkbox when first displayed will
2069
- # reflect the value of <tt>@person.permission.admin</tt>.
2070
- #
2071
- # Often this can be simplified by passing just the name of the model
2072
- # object to +fields_for+ -
2073
- #
2074
- # <%= fields_for :permission do |permission_fields| %>
2075
- # Admin?: <%= permission_fields.checkbox :admin %>
2076
- # <% end %>
2077
- #
2078
- # ...in which case, if <tt>:permission</tt> also happens to be the name of an
2079
- # instance variable <tt>@permission</tt>, the initial state of the input
2080
- # field will reflect the value of that variable's attribute <tt>@permission.admin</tt>.
2081
- #
2082
- # Alternatively, you can pass just the model object itself (if the first
2083
- # argument isn't a string or symbol +fields_for+ will realize that the
2084
- # name has been omitted) -
2085
- #
2086
- # <%= fields_for @person.permission do |permission_fields| %>
2087
- # Admin?: <%= permission_fields.checkbox :admin %>
2088
- # <% end %>
2089
- #
2090
- # and +fields_for+ will derive the required name of the field from the
2091
- # _class_ of the model object, e.g. if <tt>@person.permission</tt>, is
2092
- # of class +Permission+, the field will still be named <tt>permission[admin]</tt>.
2093
- #
2094
- # Note: This also works for the methods in FormOptionsHelper and
2095
- # DateHelper that are designed to work with an object as base, like
2096
- # FormOptionsHelper#collection_select and DateHelper#datetime_select.
2097
- #
2098
- # +fields_for+ tries to be smart about parameters, but it can be confused if both
2099
- # name and value parameters are provided and the provided value has the shape of an
2100
- # option Hash. To remove the ambiguity, explicitly pass an option Hash, even if empty.
2101
- #
2102
- # <%= form_with model: @person do |person_form| %>
2103
- # ...
2104
- # <%= fields_for :permission, @person.permission, {} do |permission_fields| %>
2105
- # Admin?: <%= checkbox_tag permission_fields.field_name(:admin), @person.permission[:admin] %>
2106
- # <% end %>
2107
- # ...
2108
- # <% end %>
2109
- #
2110
- # === Nested Attributes Examples
2111
- #
2112
- # When the object belonging to the current scope has a nested attribute
2113
- # writer for a certain attribute, +fields_for+ will yield a new scope
2114
- # for that attribute. This allows you to create forms that set or change
2115
- # the attributes of a parent object and its associations in one go.
2116
- #
2117
- # Nested attribute writers are normal setter methods named after an
2118
- # association. The most common way of defining these writers is either
2119
- # with +accepts_nested_attributes_for+ in a model definition or by
2120
- # defining a method with the proper name. For example: the attribute
2121
- # writer for the association <tt>:address</tt> is called
2122
- # <tt>address_attributes=</tt>.
2123
- #
2124
- # Whether a one-to-one or one-to-many style form builder will be yielded
2125
- # depends on whether the normal reader method returns a _single_ object
2126
- # or an _array_ of objects.
2127
- #
2128
- # ==== One-to-one
2129
- #
2130
- # Consider a Person class which returns a _single_ Address from the
2131
- # <tt>address</tt> reader method and responds to the
2132
- # <tt>address_attributes=</tt> writer method:
2133
- #
2134
- # class Person
2135
- # def address
2136
- # @address
2137
- # end
2138
- #
2139
- # def address_attributes=(attributes)
2140
- # # Process the attributes hash
2141
- # end
2142
- # end
2143
- #
2144
- # This model can now be used with a nested +fields_for+, like so:
2145
- #
2146
- # <%= form_with model: @person do |person_form| %>
2147
- # ...
2148
- # <%= person_form.fields_for :address do |address_fields| %>
2149
- # Street : <%= address_fields.text_field :street %>
2150
- # Zip code: <%= address_fields.text_field :zip_code %>
2151
- # <% end %>
2152
- # ...
2153
- # <% end %>
2154
- #
2155
- # When address is already an association on a Person you can use
2156
- # +accepts_nested_attributes_for+ to define the writer method for you:
2157
- #
2158
- # class Person < ActiveRecord::Base
2159
- # has_one :address
2160
- # accepts_nested_attributes_for :address
2161
- # end
2162
- #
2163
- # If you want to destroy the associated model through the form, you have
2164
- # to enable it first using the <tt>:allow_destroy</tt> option for
2165
- # +accepts_nested_attributes_for+:
2166
- #
2167
- # class Person < ActiveRecord::Base
2168
- # has_one :address
2169
- # accepts_nested_attributes_for :address, allow_destroy: true
2170
- # end
2171
- #
2172
- # Now, when you use a form element with the <tt>_destroy</tt> parameter,
2173
- # with a value that evaluates to +true+, you will destroy the associated
2174
- # model (e.g. 1, '1', true, or 'true'):
2175
- #
2176
- # <%= form_with model: @person do |person_form| %>
2177
- # ...
2178
- # <%= person_form.fields_for :address do |address_fields| %>
2179
- # ...
2180
- # Delete: <%= address_fields.checkbox :_destroy %>
2181
- # <% end %>
2182
- # ...
2183
- # <% end %>
2184
- #
2185
- # ==== One-to-many
2186
- #
2187
- # Consider a Person class which returns an _array_ of Project instances
2188
- # from the <tt>projects</tt> reader method and responds to the
2189
- # <tt>projects_attributes=</tt> writer method:
2190
- #
2191
- # class Person
2192
- # def projects
2193
- # [@project1, @project2]
2194
- # end
2195
- #
2196
- # def projects_attributes=(attributes)
2197
- # # Process the attributes hash
2198
- # end
2199
- # end
2200
- #
2201
- # Note that the <tt>projects_attributes=</tt> writer method is in fact
2202
- # required for +fields_for+ to correctly identify <tt>:projects</tt> as a
2203
- # collection, and the correct indices to be set in the form markup.
2204
- #
2205
- # When projects is already an association on Person you can use
2206
- # +accepts_nested_attributes_for+ to define the writer method for you:
2207
- #
2208
- # class Person < ActiveRecord::Base
2209
- # has_many :projects
2210
- # accepts_nested_attributes_for :projects
2211
- # end
2212
- #
2213
- # This model can now be used with a nested +fields_for+. The block given to
2214
- # the nested +fields_for+ call will be repeated for each instance in the
2215
- # collection:
2216
- #
2217
- # <%= form_with model: @person do |person_form| %>
2218
- # ...
2219
- # <%= person_form.fields_for :projects do |project_fields| %>
2220
- # <% if project_fields.object.active? %>
2221
- # Name: <%= project_fields.text_field :name %>
2222
- # <% end %>
2223
- # <% end %>
2224
- # ...
2225
- # <% end %>
2226
- #
2227
- # It's also possible to specify the instance to be used:
2228
- #
2229
- # <%= form_with model: @person do |person_form| %>
2230
- # ...
2231
- # <% @person.projects.each do |project| %>
2232
- # <% if project.active? %>
2233
- # <%= person_form.fields_for :projects, project do |project_fields| %>
2234
- # Name: <%= project_fields.text_field :name %>
2235
- # <% end %>
2236
- # <% end %>
2237
- # <% end %>
2238
- # ...
2239
- # <% end %>
2240
- #
2241
- # Or a collection to be used:
2242
- #
2243
- # <%= form_with model: @person do |person_form| %>
2244
- # ...
2245
- # <%= person_form.fields_for :projects, @active_projects do |project_fields| %>
2246
- # Name: <%= project_fields.text_field :name %>
2247
- # <% end %>
2248
- # ...
2249
- # <% end %>
2250
- #
2251
- # If you want to destroy any of the associated models through the
2252
- # form, you have to enable it first using the <tt>:allow_destroy</tt>
2253
- # option for +accepts_nested_attributes_for+:
2254
- #
2255
- # class Person < ActiveRecord::Base
2256
- # has_many :projects
2257
- # accepts_nested_attributes_for :projects, allow_destroy: true
2258
- # end
2259
- #
2260
- # This will allow you to specify which models to destroy in the
2261
- # attributes hash by adding a form element for the <tt>_destroy</tt>
2262
- # parameter with a value that evaluates to +true+
2263
- # (e.g. 1, '1', true, or 'true'):
2264
- #
2265
- # <%= form_with model: @person do |person_form| %>
2266
- # ...
2267
- # <%= person_form.fields_for :projects do |project_fields| %>
2268
- # Delete: <%= project_fields.checkbox :_destroy %>
2269
- # <% end %>
2270
- # ...
2271
- # <% end %>
2272
- #
2273
- # When a collection is used you might want to know the index of each
2274
- # object in the array. For this purpose, the <tt>index</tt> method
2275
- # is available in the FormBuilder object.
2276
- #
2277
- # <%= form_with model: @person do |person_form| %>
2278
- # ...
2279
- # <%= person_form.fields_for :projects do |project_fields| %>
2280
- # Project #<%= project_fields.index %>
2281
- # ...
2282
- # <% end %>
2283
- # ...
2284
- # <% end %>
2285
- #
2286
- # Note that +fields_for+ will automatically generate a hidden field
2287
- # to store the ID of the record. There are circumstances where this
2288
- # hidden field is not needed and you can pass <tt>include_id: false</tt>
2289
- # to prevent +fields_for+ from rendering it automatically.
2290
- def fields_for(record_name, record_object = nil, fields_options = nil, &block)
2291
- fields_options, record_object = record_object, nil if fields_options.nil? && record_object.is_a?(Hash) && record_object.extractable_options?
2292
- fields_options ||= {}
2293
- fields_options[:builder] ||= options[:builder]
2294
- fields_options[:namespace] = options[:namespace]
2295
- fields_options[:parent_builder] = self
2296
-
2297
- case record_name
2298
- when String, Symbol
2299
- if nested_attributes_association?(record_name)
2300
- return fields_for_with_nested_attributes(record_name, record_object, fields_options, block)
2301
- end
2302
- else
2303
- record_object = @template._object_for_form_builder(record_name)
2304
- record_name = model_name_from_record_or_class(record_object).param_key
2305
- end
2306
-
2307
- object_name = @object_name
2308
- index = if options.has_key?(:index)
2309
- options[:index]
2310
- elsif defined?(@auto_index)
2311
- object_name = object_name.to_s.delete_suffix("[]")
2312
- @auto_index
2313
- end
2314
-
2315
- record_name = if index
2316
- "#{object_name}[#{index}][#{record_name}]"
2317
- elsif record_name.end_with?("[]")
2318
- "#{object_name}[#{record_name[0..-3]}][#{record_object.id}]"
2319
- else
2320
- "#{object_name}[#{record_name}]"
2321
- end
2322
- fields_options[:child_index] = index
2323
-
2324
- @template.fields_for(record_name, record_object, fields_options, &block)
2325
- end
2326
-
2327
- # See the docs for the ActionView::Helpers::FormHelper#fields helper method.
2328
- def fields(scope = nil, model: nil, **options, &block)
2329
- options[:allow_method_names_outside_object] = true
2330
- options[:skip_default_ids] = !FormHelper.form_with_generates_ids
2331
-
2332
- convert_to_legacy_options(options)
2333
-
2334
- fields_for(scope || model, model, options, &block)
2335
- end
2336
-
2337
- # Returns a label tag tailored for labelling an input field for a specified attribute (identified by +method+) on an object
2338
- # assigned to the template (identified by +object+). The text of label will default to the attribute name unless a translation
2339
- # is found in the current I18n locale (through <tt>helpers.label.<modelname>.<attribute></tt>) or you specify it explicitly.
2340
- # Additional options on the label tag can be passed as a hash with +options+. These options will be tagged
2341
- # onto the HTML as an HTML element attribute as in the example shown, except for the <tt>:value</tt> option, which is designed to
2342
- # target labels for radio_button tags (where the value is used in the ID of the input tag).
2343
- #
2344
- # ==== Examples
2345
- # label(:title)
2346
- # # => <label for="article_title">Title</label>
2347
- #
2348
- # You can localize your labels based on model and attribute names.
2349
- # For example you can define the following in your locale (e.g. en.yml)
2350
- #
2351
- # helpers:
2352
- # label:
2353
- # article:
2354
- # body: "Write your entire text here"
2355
- #
2356
- # Which then will result in
2357
- #
2358
- # label(:body)
2359
- # # => <label for="article_body">Write your entire text here</label>
2360
- #
2361
- # Localization can also be based purely on the translation of the attribute-name
2362
- # (if you are using ActiveRecord):
2363
- #
2364
- # activerecord:
2365
- # attributes:
2366
- # article:
2367
- # cost: "Total cost"
2368
- #
2369
- # <code></code>
2370
- #
2371
- # label(:cost)
2372
- # # => <label for="article_cost">Total cost</label>
2373
- #
2374
- # label(:title, "A short title")
2375
- # # => <label for="article_title">A short title</label>
2376
- #
2377
- # label(:title, "A short title", class: "title_label")
2378
- # # => <label for="article_title" class="title_label">A short title</label>
2379
- #
2380
- # label(:privacy, "Public Article", value: "public")
2381
- # # => <label for="article_privacy_public">Public Article</label>
2382
- #
2383
- # label(:cost) do |translation|
2384
- # content_tag(:span, translation, class: "cost_label")
2385
- # end
2386
- # # => <label for="article_cost"><span class="cost_label">Total cost</span></label>
2387
- #
2388
- # label(:cost) do |builder|
2389
- # content_tag(:span, builder.translation, class: "cost_label")
2390
- # end
2391
- # # => <label for="article_cost"><span class="cost_label">Total cost</span></label>
2392
- #
2393
- # label(:cost) do |builder|
2394
- # content_tag(:span, builder.translation, class: [
2395
- # "cost_label",
2396
- # ("error_label" if builder.object.errors.include?(:cost))
2397
- # ])
2398
- # end
2399
- # # => <label for="article_cost"><span class="cost_label error_label">Total cost</span></label>
2400
- #
2401
- # label(:terms) do
2402
- # raw('Accept <a href="/terms">Terms</a>.')
2403
- # end
2404
- # # => <label for="article_terms">Accept <a href="/terms">Terms</a>.</label>
2405
- def label(method, text = nil, options = {}, &block)
2406
- @template.label(@object_name, method, text, objectify_options(options), &block)
2407
- end
2408
-
2409
- # Returns a checkbox tag tailored for accessing a specified attribute (identified by +method+) on an object
2410
- # assigned to the template (identified by +object+). This object must be an instance object (@object) and not a local object.
2411
- # It's intended that +method+ returns an integer and if that integer is above zero, then the checkbox is checked.
2412
- # Additional options on the input tag can be passed as a hash with +options+. The +checked_value+ defaults to 1
2413
- # while the default +unchecked_value+ is set to 0 which is convenient for boolean values.
2414
- #
2415
- # ==== Options
2416
- #
2417
- # * Any standard HTML attributes for the tag can be passed in, for example +:class+.
2418
- # * <tt>:checked</tt> - +true+ or +false+ forces the state of the checkbox to be checked or not.
2419
- # * <tt>:include_hidden</tt> - If set to false, the auxiliary hidden field described below will not be generated.
2420
- #
2421
- # ==== Gotcha
2422
- #
2423
- # The HTML specification says unchecked check boxes are not successful, and
2424
- # thus web browsers do not send them. Unfortunately this introduces a gotcha:
2425
- # if an +Invoice+ model has a +paid+ flag, and in the form that edits a paid
2426
- # invoice the user unchecks its check box, no +paid+ parameter is sent. So,
2427
- # any mass-assignment idiom like
2428
- #
2429
- # @invoice.update(params[:invoice])
2430
- #
2431
- # wouldn't update the flag.
2432
- #
2433
- # To prevent this the helper generates an auxiliary hidden field before
2434
- # every check box. The hidden field has the same name and its
2435
- # attributes mimic an unchecked check box.
2436
- #
2437
- # This way, the client either sends only the hidden field (representing
2438
- # the check box is unchecked), or both fields. Since the HTML specification
2439
- # says key/value pairs have to be sent in the same order they appear in the
2440
- # form, and parameters extraction gets the last occurrence of any repeated
2441
- # key in the query string, that works for ordinary forms.
2442
- #
2443
- # Unfortunately that workaround does not work when the check box goes
2444
- # within an array-like parameter, as in
2445
- #
2446
- # <%= fields_for "project[invoice_attributes][]", invoice, index: nil do |form| %>
2447
- # <%= form.checkbox :paid %>
2448
- # ...
2449
- # <% end %>
2450
- #
2451
- # because parameter name repetition is precisely what \Rails seeks to distinguish
2452
- # the elements of the array. For each item with a checked check box you
2453
- # get an extra ghost item with only that attribute, assigned to "0".
2454
- #
2455
- # In that case it is preferable to either use FormTagHelper#checkbox_tag or to use
2456
- # hashes instead of arrays.
2457
- #
2458
- # ==== Examples
2459
- #
2460
- # # Let's say that @article.validated? is 1:
2461
- # checkbox("validated")
2462
- # # => <input name="article[validated]" type="hidden" value="0" />
2463
- # # <input checked="checked" type="checkbox" id="article_validated" name="article[validated]" value="1" />
2464
- #
2465
- # # Let's say that @puppy.gooddog is "no":
2466
- # checkbox("gooddog", {}, "yes", "no")
2467
- # # => <input name="puppy[gooddog]" type="hidden" value="no" />
2468
- # # <input type="checkbox" id="puppy_gooddog" name="puppy[gooddog]" value="yes" />
2469
- #
2470
- # # Let's say that @eula.accepted is "no":
2471
- # checkbox("accepted", { class: 'eula_check' }, "yes", "no")
2472
- # # => <input name="eula[accepted]" type="hidden" value="no" />
2473
- # # <input type="checkbox" class="eula_check" id="eula_accepted" name="eula[accepted]" value="yes" />
2474
- def checkbox(method, options = {}, checked_value = "1", unchecked_value = "0")
2475
- @template.checkbox(@object_name, method, objectify_options(options), checked_value, unchecked_value)
2476
- end
2477
- alias_method :check_box, :checkbox
2478
-
2479
- # Returns a radio button tag for accessing a specified attribute (identified by +method+) on an object
2480
- # assigned to the template (identified by +object+). If the current value of +method+ is +tag_value+ the
2481
- # radio button will be checked.
2482
- #
2483
- # To force the radio button to be checked pass <tt>checked: true</tt> in the
2484
- # +options+ hash. You may pass HTML options there as well.
2485
- #
2486
- # # Let's say that @article.category returns "rails":
2487
- # radio_button("category", "rails")
2488
- # radio_button("category", "java")
2489
- # # => <input type="radio" id="article_category_rails" name="article[category]" value="rails" checked="checked" />
2490
- # # <input type="radio" id="article_category_java" name="article[category]" value="java" />
2491
- #
2492
- # # Let's say that @user.receive_newsletter returns "no":
2493
- # radio_button("receive_newsletter", "yes")
2494
- # radio_button("receive_newsletter", "no")
2495
- # # => <input type="radio" id="user_receive_newsletter_yes" name="user[receive_newsletter]" value="yes" />
2496
- # # <input type="radio" id="user_receive_newsletter_no" name="user[receive_newsletter]" value="no" checked="checked" />
2497
- def radio_button(method, tag_value, options = {})
2498
- @template.radio_button(@object_name, method, tag_value, objectify_options(options))
2499
- end
2500
-
2501
- # Returns a hidden input tag tailored for accessing a specified attribute (identified by +method+) on an object
2502
- # assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
2503
- # hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
2504
- # shown.
2505
- #
2506
- # ==== Examples
2507
- # # Let's say that @signup.pass_confirm returns true:
2508
- # hidden_field(:pass_confirm)
2509
- # # => <input type="hidden" id="signup_pass_confirm" name="signup[pass_confirm]" value="true" />
2510
- #
2511
- # # Let's say that @article.tag_list returns "blog, ruby":
2512
- # hidden_field(:tag_list)
2513
- # # => <input type="hidden" id="article_tag_list" name="article[tag_list]" value="blog, ruby" />
2514
- #
2515
- # # Let's say that @user.token returns "abcde":
2516
- # hidden_field(:token)
2517
- # # => <input type="hidden" id="user_token" name="user[token]" value="abcde" />
2518
- #
2519
- def hidden_field(method, options = {})
2520
- @emitted_hidden_id = true if method == :id
2521
- @template.hidden_field(@object_name, method, objectify_options(options))
2522
- end
2523
-
2524
- # Returns a file upload input tag tailored for accessing a specified attribute (identified by +method+) on an object
2525
- # assigned to the template (identified by +object+). Additional options on the input tag can be passed as a
2526
- # hash with +options+. These options will be tagged onto the HTML as an HTML element attribute as in the example
2527
- # shown.
2528
- #
2529
- # Using this method inside a #form_with block will set the enclosing form's encoding to <tt>multipart/form-data</tt>.
2530
- #
2531
- # ==== Options
2532
- # * Creates standard HTML attributes for the tag.
2533
- # * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
2534
- # * <tt>:multiple</tt> - If set to true, *in most updated browsers* the user will be allowed to select multiple files.
2535
- # * <tt>:include_hidden</tt> - When <tt>multiple: true</tt> and <tt>include_hidden: true</tt>, the field will be prefixed with an <tt><input type="hidden"></tt> field with an empty value to support submitting an empty collection of files. Since <tt>include_hidden</tt> will default to <tt>config.active_storage.multiple_file_field_include_hidden</tt> if you don't specify <tt>include_hidden</tt>, you will need to pass <tt>include_hidden: false</tt> to prevent submitting an empty collection of files when passing <tt>multiple: true</tt>.
2536
- # * <tt>:accept</tt> - If set to one or multiple mime-types, the user will be suggested a filter when choosing a file. You still need to set up model validations.
2537
- #
2538
- # ==== Examples
2539
- # # Let's say that @user has avatar:
2540
- # file_field(:avatar)
2541
- # # => <input type="file" id="user_avatar" name="user[avatar]" />
2542
- #
2543
- # # Let's say that @article has image:
2544
- # file_field(:image, :multiple => true)
2545
- # # => <input type="file" id="article_image" name="article[image][]" multiple="multiple" />
2546
- #
2547
- # # Let's say that @article has attached:
2548
- # file_field(:attached, accept: 'text/html')
2549
- # # => <input accept="text/html" type="file" id="article_attached" name="article[attached]" />
2550
- #
2551
- # # Let's say that @article has image:
2552
- # file_field(:image, accept: 'image/png,image/gif,image/jpeg')
2553
- # # => <input type="file" id="article_image" name="article[image]" accept="image/png,image/gif,image/jpeg" />
2554
- #
2555
- # # Let's say that @attachment has file:
2556
- # file_field(:file, class: 'file_input')
2557
- # # => <input type="file" id="attachment_file" name="attachment[file]" class="file_input" />
2558
- def file_field(method, options = {})
2559
- self.multipart = true
2560
- @template.file_field(@object_name, method, objectify_options(options))
2561
- end
2562
-
2563
- # Add the submit button for the given form. When no value is given, it checks
2564
- # if the object is a new resource or not to create the proper label:
2565
- #
2566
- # <%= form_with model: @article do |f| %>
2567
- # <%= f.submit %>
2568
- # <% end %>
2569
- #
2570
- # In the example above, if <tt>@article</tt> is a new record, it will use "Create Article" as
2571
- # submit button label; otherwise, it uses "Update Article".
2572
- #
2573
- # Those labels can be customized using I18n under the +helpers.submit+ key and using
2574
- # <tt>%{model}</tt> for translation interpolation:
2575
- #
2576
- # en:
2577
- # helpers:
2578
- # submit:
2579
- # create: "Create a %{model}"
2580
- # update: "Confirm changes to %{model}"
2581
- #
2582
- # It also searches for a key specific to the given object:
2583
- #
2584
- # en:
2585
- # helpers:
2586
- # submit:
2587
- # article:
2588
- # create: "Add %{model}"
2589
- #
2590
- def submit(value = nil, options = {})
2591
- value, options = nil, value if value.is_a?(Hash)
2592
- value ||= submit_default_value
2593
- @template.submit_tag(value, options)
2594
- end
2595
-
2596
- # Add the submit button for the given form. When no value is given, it checks
2597
- # if the object is a new resource or not to create the proper label:
2598
- #
2599
- # <%= form_with model: @article do |f| %>
2600
- # <%= f.button %>
2601
- # <% end %>
2602
- # In the example above, if <tt>@article</tt> is a new record, it will use "Create Article" as
2603
- # button label; otherwise, it uses "Update Article".
2604
- #
2605
- # Those labels can be customized using I18n under the +helpers.submit+ key
2606
- # (the same as submit helper) and using <tt>%{model}</tt> for translation interpolation:
2607
- #
2608
- # en:
2609
- # helpers:
2610
- # submit:
2611
- # create: "Create a %{model}"
2612
- # update: "Confirm changes to %{model}"
2613
- #
2614
- # It also searches for a key specific to the given object:
2615
- #
2616
- # en:
2617
- # helpers:
2618
- # submit:
2619
- # article:
2620
- # create: "Add %{model}"
2621
- #
2622
- # ==== Examples
2623
- # button("Create article")
2624
- # # => <button name='button' type='submit'>Create article</button>
2625
- #
2626
- # button(:draft, value: true)
2627
- # # => <button id="article_draft" name="article[draft]" value="true" type="submit">Create article</button>
2628
- #
2629
- # button do
2630
- # content_tag(:strong, 'Ask me!')
2631
- # end
2632
- # # => <button name='button' type='submit'>
2633
- # # <strong>Ask me!</strong>
2634
- # # </button>
2635
- #
2636
- # button do |text|
2637
- # content_tag(:strong, text)
2638
- # end
2639
- # # => <button name='button' type='submit'>
2640
- # # <strong>Create article</strong>
2641
- # # </button>
2642
- #
2643
- # button(:draft, value: true) do
2644
- # content_tag(:strong, "Save as draft")
2645
- # end
2646
- # # => <button id="article_draft" name="article[draft]" value="true" type="submit">
2647
- # # <strong>Save as draft</strong>
2648
- # # </button>
2649
- #
2650
- def button(value = nil, options = {}, &block)
2651
- case value
2652
- when Hash
2653
- value, options = nil, value
2654
- when Symbol
2655
- value, options = nil, { name: field_name(value), id: field_id(value) }.merge!(options.to_h)
2656
- end
2657
- value ||= submit_default_value
2658
-
2659
- if block_given?
2660
- value = @template.capture { yield(value) }
2661
- end
2662
-
2663
- formmethod = options[:formmethod]
2664
- if formmethod.present? && !/post|get/i.match?(formmethod) && !options.key?(:name) && !options.key?(:value)
2665
- options.merge! formmethod: :post, name: "_method", value: formmethod
2666
- end
2667
-
2668
- @template.button_tag(value, options)
2669
- end
2670
-
2671
- def emitted_hidden_id? # :nodoc:
2672
- @emitted_hidden_id ||= nil
2673
- end
2674
-
2675
- private
2676
- def objectify_options(options)
2677
- result = @default_options.merge(options)
2678
- result[:object] = @object
2679
- result
2680
- end
2681
-
2682
- def submit_default_value
2683
- object = convert_to_model(@object)
2684
- key = object ? (object.persisted? ? :update : :create) : :submit
2685
-
2686
- model = if object.respond_to?(:model_name)
2687
- object.model_name.human
2688
- else
2689
- @object_name.to_s.humanize
2690
- end
2691
-
2692
- defaults = []
2693
- # Object is a model and it is not overwritten by as and scope option.
2694
- if object.respond_to?(:model_name) && object_name.to_s == model.downcase
2695
- defaults << :"helpers.submit.#{object.model_name.i18n_key}.#{key}"
2696
- else
2697
- defaults << :"helpers.submit.#{object_name}.#{key}"
2698
- end
2699
- defaults << :"helpers.submit.#{key}"
2700
- defaults << "#{key.to_s.humanize} #{model}"
2701
-
2702
- I18n.t(defaults.shift, model: model, default: defaults)
2703
- end
2704
-
2705
- def nested_attributes_association?(association_name)
2706
- @object.respond_to?("#{association_name}_attributes=")
2707
- end
2708
-
2709
- def fields_for_with_nested_attributes(association_name, association, options, block)
2710
- name = "#{object_name}[#{association_name}_attributes]"
2711
- association = convert_to_model(association)
2712
-
2713
- if association.respond_to?(:persisted?)
2714
- association = [association] if @object.public_send(association_name).respond_to?(:to_ary)
2715
- elsif !association.respond_to?(:to_ary)
2716
- association = @object.public_send(association_name)
2717
- end
2718
-
2719
- if association.respond_to?(:to_ary)
2720
- explicit_child_index = options[:child_index]
2721
- output = ActiveSupport::SafeBuffer.new
2722
- association.each do |child|
2723
- if explicit_child_index
2724
- options[:child_index] = explicit_child_index.call if explicit_child_index.respond_to?(:call)
2725
- else
2726
- options[:child_index] = nested_child_index(name)
2727
- end
2728
- if content = fields_for_nested_model("#{name}[#{options[:child_index]}]", child, options, block)
2729
- output << content
2730
- end
2731
- end
2732
- output
2733
- elsif association
2734
- fields_for_nested_model(name, association, options, block)
2735
- end
2736
- end
2737
-
2738
- def fields_for_nested_model(name, object, fields_options, block)
2739
- object = convert_to_model(object)
2740
- emit_hidden_id = object.persisted? && fields_options.fetch(:include_id) {
2741
- options.fetch(:include_id, true)
2742
- }
2743
-
2744
- @template.fields_for(name, object, fields_options) do |f|
2745
- output = @template.capture(f, &block)
2746
- output.concat f.hidden_field(:id) if output && emit_hidden_id && !f.emitted_hidden_id?
2747
- output
2748
- end
2749
- end
2750
-
2751
- def nested_child_index(name)
2752
- @nested_child_index[name] ||= -1
2753
- @nested_child_index[name] += 1
2754
- end
2755
-
2756
- def convert_to_legacy_options(options)
2757
- if options.key?(:skip_id)
2758
- options[:include_id] = !options.delete(:skip_id)
2759
- end
2760
- end
2761
- end
2762
- end
2763
-
2764
- ActiveSupport.on_load(:action_view) do
2765
- cattr_accessor :default_form_builder, instance_writer: false, instance_reader: false, default: ::ActionView::Helpers::FormBuilder
2766
- end
2767
- end