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,1909 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ActiveRecord
4
- # See ActiveRecord::Associations::ClassMethods for documentation.
5
- module Associations # :nodoc:
6
- extend ActiveSupport::Autoload
7
- extend ActiveSupport::Concern
8
-
9
- # These classes will be loaded when associations are created.
10
- # So there is no need to eager load them.
11
- autoload :Association
12
- autoload :SingularAssociation
13
- autoload :CollectionAssociation
14
- autoload :ForeignAssociation
15
- autoload :CollectionProxy
16
- autoload :ThroughAssociation
17
-
18
- module Builder # :nodoc:
19
- autoload :Association, "active_record/associations/builder/association"
20
- autoload :SingularAssociation, "active_record/associations/builder/singular_association"
21
- autoload :CollectionAssociation, "active_record/associations/builder/collection_association"
22
-
23
- autoload :BelongsTo, "active_record/associations/builder/belongs_to"
24
- autoload :HasOne, "active_record/associations/builder/has_one"
25
- autoload :HasMany, "active_record/associations/builder/has_many"
26
- autoload :HasAndBelongsToMany, "active_record/associations/builder/has_and_belongs_to_many"
27
- end
28
-
29
- eager_autoload do
30
- autoload :BelongsToAssociation
31
- autoload :BelongsToPolymorphicAssociation
32
- autoload :HasManyAssociation
33
- autoload :HasManyThroughAssociation
34
- autoload :HasOneAssociation
35
- autoload :HasOneThroughAssociation
36
-
37
- autoload :Preloader
38
- autoload :JoinDependency
39
- autoload :AssociationScope
40
- autoload :DisableJoinsAssociationScope
41
- autoload :AliasTracker
42
- end
43
-
44
- def self.eager_load!
45
- super
46
- Preloader.eager_load!
47
- JoinDependency.eager_load!
48
- end
49
-
50
- # Returns the association instance for the given name, instantiating it if it doesn't already exist
51
- def association(name) # :nodoc:
52
- association = association_instance_get(name)
53
-
54
- if association.nil?
55
- unless reflection = self.class._reflect_on_association(name)
56
- raise AssociationNotFoundError.new(self, name)
57
- end
58
- association = reflection.association_class.new(self, reflection)
59
- association_instance_set(name, association)
60
- end
61
-
62
- association
63
- end
64
-
65
- def association_cached?(name) # :nodoc:
66
- @association_cache.key?(name)
67
- end
68
-
69
- def initialize_dup(*) # :nodoc:
70
- @association_cache = {}
71
- super
72
- end
73
-
74
- private
75
- def init_internals
76
- super
77
- @association_cache = {}
78
- end
79
-
80
- # Returns the specified association instance if it exists, +nil+ otherwise.
81
- def association_instance_get(name)
82
- @association_cache[name]
83
- end
84
-
85
- # Set the specified association instance.
86
- def association_instance_set(name, association)
87
- @association_cache[name] = association
88
- end
89
-
90
- # = Active Record \Associations
91
- #
92
- # \Associations are a set of macro-like class methods for tying objects together through
93
- # foreign keys. They express relationships like "Project has one Project Manager"
94
- # or "Project belongs to a Portfolio". Each macro adds a number of methods to the
95
- # class which are specialized according to the collection or association symbol and the
96
- # options hash. It works much the same way as Ruby's own <tt>attr*</tt>
97
- # methods.
98
- #
99
- # class Project < ActiveRecord::Base
100
- # belongs_to :portfolio
101
- # has_one :project_manager
102
- # has_many :milestones
103
- # has_and_belongs_to_many :categories
104
- # end
105
- #
106
- # The project class now has the following methods (and more) to ease the traversal and
107
- # manipulation of its relationships:
108
- #
109
- # project = Project.first
110
- # project.portfolio
111
- # project.portfolio = Portfolio.first
112
- # project.reload_portfolio
113
- #
114
- # project.project_manager
115
- # project.project_manager = ProjectManager.first
116
- # project.reload_project_manager
117
- #
118
- # project.milestones.empty?
119
- # project.milestones.size
120
- # project.milestones
121
- # project.milestones << Milestone.first
122
- # project.milestones.delete(Milestone.first)
123
- # project.milestones.destroy(Milestone.first)
124
- # project.milestones.find(Milestone.first.id)
125
- # project.milestones.build
126
- # project.milestones.create
127
- #
128
- # project.categories.empty?
129
- # project.categories.size
130
- # project.categories
131
- # project.categories << Category.first
132
- # project.categories.delete(category1)
133
- # project.categories.destroy(category1)
134
- #
135
- # === A word of warning
136
- #
137
- # Don't create associations that have the same name as {instance methods}[rdoc-ref:ActiveRecord::Core] of
138
- # +ActiveRecord::Base+. Since the association adds a method with that name to
139
- # its model, using an association with the same name as one provided by +ActiveRecord::Base+ will override the method inherited through +ActiveRecord::Base+ and will break things.
140
- # For instance, +attributes+ and +connection+ would be bad choices for association names, because those names already exist in the list of +ActiveRecord::Base+ instance methods.
141
- #
142
- # == Auto-generated methods
143
- # See also "Instance Public methods" below ( from #belongs_to ) for more details.
144
- #
145
- # === Singular associations (one-to-one)
146
- # | | belongs_to |
147
- # generated methods | belongs_to | :polymorphic | has_one
148
- # ----------------------------------+------------+--------------+---------
149
- # other | X | X | X
150
- # other=(other) | X | X | X
151
- # build_other(attributes={}) | X | | X
152
- # create_other(attributes={}) | X | | X
153
- # create_other!(attributes={}) | X | | X
154
- # reload_other | X | X | X
155
- # other_changed? | X | X |
156
- # other_previously_changed? | X | X |
157
- #
158
- # === Collection associations (one-to-many / many-to-many)
159
- # | | | has_many
160
- # generated methods | habtm | has_many | :through
161
- # ----------------------------------+-------+----------+----------
162
- # others | X | X | X
163
- # others=(other,other,...) | X | X | X
164
- # other_ids | X | X | X
165
- # other_ids=(id,id,...) | X | X | X
166
- # others<< | X | X | X
167
- # others.push | X | X | X
168
- # others.concat | X | X | X
169
- # others.build(attributes={}) | X | X | X
170
- # others.create(attributes={}) | X | X | X
171
- # others.create!(attributes={}) | X | X | X
172
- # others.size | X | X | X
173
- # others.length | X | X | X
174
- # others.count | X | X | X
175
- # others.sum(*args) | X | X | X
176
- # others.empty? | X | X | X
177
- # others.clear | X | X | X
178
- # others.delete(other,other,...) | X | X | X
179
- # others.delete_all | X | X | X
180
- # others.destroy(other,other,...) | X | X | X
181
- # others.destroy_all | X | X | X
182
- # others.find(*args) | X | X | X
183
- # others.exists? | X | X | X
184
- # others.distinct | X | X | X
185
- # others.reset | X | X | X
186
- # others.reload | X | X | X
187
- #
188
- # === Overriding generated methods
189
- #
190
- # Association methods are generated in a module included into the model
191
- # class, making overrides easy. The original generated method can thus be
192
- # called with +super+:
193
- #
194
- # class Car < ActiveRecord::Base
195
- # belongs_to :owner
196
- # belongs_to :old_owner
197
- #
198
- # def owner=(new_owner)
199
- # self.old_owner = self.owner
200
- # super
201
- # end
202
- # end
203
- #
204
- # The association methods module is included immediately after the
205
- # generated attributes methods module, meaning an association will
206
- # override the methods for an attribute with the same name.
207
- #
208
- # == Cardinality and associations
209
- #
210
- # Active Record associations can be used to describe one-to-one, one-to-many, and many-to-many
211
- # relationships between models. Each model uses an association to describe its role in
212
- # the relation. The #belongs_to association is always used in the model that has
213
- # the foreign key.
214
- #
215
- # === One-to-one
216
- #
217
- # Use #has_one in the base, and #belongs_to in the associated model.
218
- #
219
- # class Employee < ActiveRecord::Base
220
- # has_one :office
221
- # end
222
- # class Office < ActiveRecord::Base
223
- # belongs_to :employee # foreign key - employee_id
224
- # end
225
- #
226
- # === One-to-many
227
- #
228
- # Use #has_many in the base, and #belongs_to in the associated model.
229
- #
230
- # class Manager < ActiveRecord::Base
231
- # has_many :employees
232
- # end
233
- # class Employee < ActiveRecord::Base
234
- # belongs_to :manager # foreign key - manager_id
235
- # end
236
- #
237
- # === Many-to-many
238
- #
239
- # There are two ways to build a many-to-many relationship.
240
- #
241
- # The first way uses a #has_many association with the <tt>:through</tt> option and a join model, so
242
- # there are two stages of associations.
243
- #
244
- # class Assignment < ActiveRecord::Base
245
- # belongs_to :programmer # foreign key - programmer_id
246
- # belongs_to :project # foreign key - project_id
247
- # end
248
- # class Programmer < ActiveRecord::Base
249
- # has_many :assignments
250
- # has_many :projects, through: :assignments
251
- # end
252
- # class Project < ActiveRecord::Base
253
- # has_many :assignments
254
- # has_many :programmers, through: :assignments
255
- # end
256
- #
257
- # For the second way, use #has_and_belongs_to_many in both models. This requires a join table
258
- # that has no corresponding model or primary key.
259
- #
260
- # class Programmer < ActiveRecord::Base
261
- # has_and_belongs_to_many :projects # foreign keys in the join table
262
- # end
263
- # class Project < ActiveRecord::Base
264
- # has_and_belongs_to_many :programmers # foreign keys in the join table
265
- # end
266
- #
267
- # Choosing which way to build a many-to-many relationship is not always simple.
268
- # If you need to work with the relationship model as its own entity,
269
- # use #has_many <tt>:through</tt>. Use #has_and_belongs_to_many when working with legacy schemas or when
270
- # you never work directly with the relationship itself.
271
- #
272
- # == Is it a #belongs_to or #has_one association?
273
- #
274
- # Both express a 1-1 relationship. The difference is mostly where to place the foreign
275
- # key, which goes on the table for the class declaring the #belongs_to relationship.
276
- #
277
- # class User < ActiveRecord::Base
278
- # # I reference an account.
279
- # belongs_to :account
280
- # end
281
- #
282
- # class Account < ActiveRecord::Base
283
- # # One user references me.
284
- # has_one :user
285
- # end
286
- #
287
- # The tables for these classes could look something like:
288
- #
289
- # CREATE TABLE users (
290
- # id bigint NOT NULL auto_increment,
291
- # account_id bigint default NULL,
292
- # name varchar default NULL,
293
- # PRIMARY KEY (id)
294
- # )
295
- #
296
- # CREATE TABLE accounts (
297
- # id bigint NOT NULL auto_increment,
298
- # name varchar default NULL,
299
- # PRIMARY KEY (id)
300
- # )
301
- #
302
- # == Unsaved objects and associations
303
- #
304
- # You can manipulate objects and associations before they are saved to the database, but
305
- # there is some special behavior you should be aware of, mostly involving the saving of
306
- # associated objects.
307
- #
308
- # You can set the <tt>:autosave</tt> option on a #has_one, #belongs_to,
309
- # #has_many, or #has_and_belongs_to_many association. Setting it
310
- # to +true+ will _always_ save the members, whereas setting it to +false+ will
311
- # _never_ save the members. More details about <tt>:autosave</tt> option is available at
312
- # AutosaveAssociation.
313
- #
314
- # === One-to-one associations
315
- #
316
- # * Assigning an object to a #has_one association automatically saves that object and
317
- # the object being replaced (if there is one), in order to update their foreign
318
- # keys - except if the parent object is unsaved (<tt>new_record? == true</tt>).
319
- # * If either of these saves fail (due to one of the objects being invalid), an
320
- # ActiveRecord::RecordNotSaved exception is raised and the assignment is
321
- # cancelled.
322
- # * If you wish to assign an object to a #has_one association without saving it,
323
- # use the <tt>#build_association</tt> method (documented below). The object being
324
- # replaced will still be saved to update its foreign key.
325
- # * Assigning an object to a #belongs_to association does not save the object, since
326
- # the foreign key field belongs on the parent. It does not save the parent either.
327
- #
328
- # === Collections
329
- #
330
- # * Adding an object to a collection (#has_many or #has_and_belongs_to_many) automatically
331
- # saves that object, except if the parent object (the owner of the collection) is not yet
332
- # stored in the database.
333
- # * If saving any of the objects being added to a collection (via <tt>push</tt> or similar)
334
- # fails, then <tt>push</tt> returns +false+.
335
- # * If saving fails while replacing the collection (via <tt>association=</tt>), an
336
- # ActiveRecord::RecordNotSaved exception is raised and the assignment is
337
- # cancelled.
338
- # * You can add an object to a collection without automatically saving it by using the
339
- # <tt>collection.build</tt> method (documented below).
340
- # * All unsaved (<tt>new_record? == true</tt>) members of the collection are automatically
341
- # saved when the parent is saved.
342
- #
343
- # == Customizing the query
344
- #
345
- # \Associations are built from <tt>Relation</tt> objects, and you can use the Relation syntax
346
- # to customize them. For example, to add a condition:
347
- #
348
- # class Blog < ActiveRecord::Base
349
- # has_many :published_posts, -> { where(published: true) }, class_name: 'Post'
350
- # end
351
- #
352
- # Inside the <tt>-> { ... }</tt> block you can use all of the usual Relation methods.
353
- #
354
- # === Accessing the owner object
355
- #
356
- # Sometimes it is useful to have access to the owner object when building the query. The owner
357
- # is passed as a parameter to the block. For example, the following association would find all
358
- # events that occur on the user's birthday:
359
- #
360
- # class User < ActiveRecord::Base
361
- # has_many :birthday_events, ->(user) { where(starts_on: user.birthday) }, class_name: 'Event'
362
- # end
363
- #
364
- # Note: Joining or eager loading such associations is not possible because
365
- # those operations happen before instance creation. Such associations
366
- # _can_ be preloaded, but doing so will perform N+1 queries because there
367
- # will be a different scope for each record (similar to preloading
368
- # polymorphic scopes).
369
- #
370
- # == Association callbacks
371
- #
372
- # Similar to the normal callbacks that hook into the life cycle of an Active Record object,
373
- # you can also define callbacks that get triggered when you add an object to or remove an
374
- # object from an association collection.
375
- #
376
- # class Firm < ActiveRecord::Base
377
- # has_many :clients,
378
- # dependent: :destroy,
379
- # after_add: :congratulate_client,
380
- # after_remove: :log_after_remove
381
- #
382
- # def congratulate_client(client)
383
- # # ...
384
- # end
385
- #
386
- # def log_after_remove(client)
387
- # # ...
388
- # end
389
- # end
390
- #
391
- # Callbacks can be defined in three ways:
392
- #
393
- # 1. A symbol that references a method defined on the class with the
394
- # associated collection. For example, <tt>after_add: :congratulate_client</tt>
395
- # invokes <tt>Firm#congratulate_client(client)</tt>.
396
- # 2. A callable with a signature that accepts both the record with the
397
- # associated collection and the record being added or removed. For
398
- # example, <tt>after_add: ->(firm, client) { ... }</tt>.
399
- # 3. An object that responds to the callback name. For example, passing
400
- # <tt>after_add: CallbackObject.new</tt> invokes <tt>CallbackObject#after_add(firm,
401
- # client)</tt>.
402
- #
403
- # It's possible to stack callbacks by passing them as an array. Example:
404
- #
405
- # class CallbackObject
406
- # def after_add(firm, client)
407
- # firm.log << "after_adding #{client.id}"
408
- # end
409
- # end
410
- #
411
- # class Firm < ActiveRecord::Base
412
- # has_many :clients,
413
- # dependent: :destroy,
414
- # after_add: [
415
- # :congratulate_client,
416
- # -> (firm, client) { firm.log << "after_adding #{client.id}" },
417
- # CallbackObject.new
418
- # ],
419
- # after_remove: :log_after_remove
420
- # end
421
- #
422
- # Possible callbacks are: +before_add+, +after_add+, +before_remove+, and +after_remove+.
423
- #
424
- # If any of the +before_add+ callbacks throw an exception, the object will not be
425
- # added to the collection.
426
- #
427
- # Similarly, if any of the +before_remove+ callbacks throw an exception, the object
428
- # will not be removed from the collection.
429
- #
430
- # Note: To trigger remove callbacks, you must use +destroy+ / +destroy_all+ methods. For example:
431
- #
432
- # * <tt>firm.clients.destroy(client)</tt>
433
- # * <tt>firm.clients.destroy(*clients)</tt>
434
- # * <tt>firm.clients.destroy_all</tt>
435
- #
436
- # +delete+ / +delete_all+ methods like the following do *not* trigger remove callbacks:
437
- #
438
- # * <tt>firm.clients.delete(client)</tt>
439
- # * <tt>firm.clients.delete(*clients)</tt>
440
- # * <tt>firm.clients.delete_all</tt>
441
- #
442
- # == Association extensions
443
- #
444
- # The proxy objects that control the access to associations can be extended through anonymous
445
- # modules. This is especially beneficial for adding new finders, creators, and other
446
- # factory-type methods that are only used as part of this association.
447
- #
448
- # class Account < ActiveRecord::Base
449
- # has_many :people do
450
- # def find_or_create_by_name(name)
451
- # first_name, last_name = name.split(" ", 2)
452
- # find_or_create_by(first_name: first_name, last_name: last_name)
453
- # end
454
- # end
455
- # end
456
- #
457
- # person = Account.first.people.find_or_create_by_name("David Heinemeier Hansson")
458
- # person.first_name # => "David"
459
- # person.last_name # => "Heinemeier Hansson"
460
- #
461
- # If you need to share the same extensions between many associations, you can use a named
462
- # extension module.
463
- #
464
- # module FindOrCreateByNameExtension
465
- # def find_or_create_by_name(name)
466
- # first_name, last_name = name.split(" ", 2)
467
- # find_or_create_by(first_name: first_name, last_name: last_name)
468
- # end
469
- # end
470
- #
471
- # class Account < ActiveRecord::Base
472
- # has_many :people, -> { extending FindOrCreateByNameExtension }
473
- # end
474
- #
475
- # class Company < ActiveRecord::Base
476
- # has_many :people, -> { extending FindOrCreateByNameExtension }
477
- # end
478
- #
479
- # Some extensions can only be made to work with knowledge of the association's internals.
480
- # Extensions can access relevant state using the following methods (where +items+ is the
481
- # name of the association):
482
- #
483
- # * <tt>record.association(:items).owner</tt> - Returns the object the association is part of.
484
- # * <tt>record.association(:items).reflection</tt> - Returns the reflection object that describes the association.
485
- # * <tt>record.association(:items).target</tt> - Returns the associated object for #belongs_to and #has_one, or
486
- # the collection of associated objects for #has_many and #has_and_belongs_to_many.
487
- #
488
- # However, inside the actual extension code, you will not have access to the <tt>record</tt> as
489
- # above. In this case, you can access <tt>proxy_association</tt>. For example,
490
- # <tt>record.association(:items)</tt> and <tt>record.items.proxy_association</tt> will return
491
- # the same object, allowing you to make calls like <tt>proxy_association.owner</tt> inside
492
- # association extensions.
493
- #
494
- # == Association Join Models
495
- #
496
- # Has Many associations can be configured with the <tt>:through</tt> option to use an
497
- # explicit join model to retrieve the data. This operates similarly to a
498
- # #has_and_belongs_to_many association. The advantage is that you're able to add validations,
499
- # callbacks, and extra attributes on the join model. Consider the following schema:
500
- #
501
- # class Author < ActiveRecord::Base
502
- # has_many :authorships
503
- # has_many :books, through: :authorships
504
- # end
505
- #
506
- # class Authorship < ActiveRecord::Base
507
- # belongs_to :author
508
- # belongs_to :book
509
- # end
510
- #
511
- # @author = Author.first
512
- # @author.authorships.collect { |a| a.book } # selects all books that the author's authorships belong to
513
- # @author.books # selects all books by using the Authorship join model
514
- #
515
- # You can also go through a #has_many association on the join model:
516
- #
517
- # class Firm < ActiveRecord::Base
518
- # has_many :clients
519
- # has_many :invoices, through: :clients
520
- # end
521
- #
522
- # class Client < ActiveRecord::Base
523
- # belongs_to :firm
524
- # has_many :invoices
525
- # end
526
- #
527
- # class Invoice < ActiveRecord::Base
528
- # belongs_to :client
529
- # end
530
- #
531
- # @firm = Firm.first
532
- # @firm.clients.flat_map { |c| c.invoices } # select all invoices for all clients of the firm
533
- # @firm.invoices # selects all invoices by going through the Client join model
534
- #
535
- # Similarly you can go through a #has_one association on the join model:
536
- #
537
- # class Group < ActiveRecord::Base
538
- # has_many :users
539
- # has_many :avatars, through: :users
540
- # end
541
- #
542
- # class User < ActiveRecord::Base
543
- # belongs_to :group
544
- # has_one :avatar
545
- # end
546
- #
547
- # class Avatar < ActiveRecord::Base
548
- # belongs_to :user
549
- # end
550
- #
551
- # @group = Group.first
552
- # @group.users.collect { |u| u.avatar }.compact # select all avatars for all users in the group
553
- # @group.avatars # selects all avatars by going through the User join model.
554
- #
555
- # An important caveat with going through #has_one or #has_many associations on the
556
- # join model is that these associations are *read-only*. For example, the following
557
- # would not work following the previous example:
558
- #
559
- # @group.avatars << Avatar.new # this would work if User belonged_to Avatar rather than the other way around
560
- # @group.avatars.delete(@group.avatars.last) # so would this
561
- #
562
- # === Setting Inverses
563
- #
564
- # If you are using a #belongs_to on the join model, it is a good idea to set the
565
- # <tt>:inverse_of</tt> option on the #belongs_to, which will mean that the following example
566
- # works correctly (where <tt>tags</tt> is a #has_many <tt>:through</tt> association):
567
- #
568
- # @post = Post.first
569
- # @tag = @post.tags.build name: "ruby"
570
- # @tag.save
571
- #
572
- # The last line ought to save the through record (a <tt>Tagging</tt>). This will only work if the
573
- # <tt>:inverse_of</tt> is set:
574
- #
575
- # class Tagging < ActiveRecord::Base
576
- # belongs_to :post
577
- # belongs_to :tag, inverse_of: :taggings
578
- # end
579
- #
580
- # If you do not set the <tt>:inverse_of</tt> record, the association will
581
- # do its best to match itself up with the correct inverse. Automatic
582
- # inverse detection only works on #has_many, #has_one, and
583
- # #belongs_to associations.
584
- #
585
- # <tt>:foreign_key</tt> and <tt>:through</tt> options on the associations
586
- # will also prevent the association's inverse from being found automatically,
587
- # as will a custom scopes in some cases. See further details in the
588
- # {Active Record Associations guide}[https://guides.rubyonrails.org/association_basics.html#bi-directional-associations].
589
- #
590
- # The automatic guessing of the inverse association uses a heuristic based
591
- # on the name of the class, so it may not work for all associations,
592
- # especially the ones with non-standard names.
593
- #
594
- # You can turn off the automatic detection of inverse associations by setting
595
- # the <tt>:inverse_of</tt> option to <tt>false</tt> like so:
596
- #
597
- # class Tagging < ActiveRecord::Base
598
- # belongs_to :tag, inverse_of: false
599
- # end
600
- #
601
- # == Nested \Associations
602
- #
603
- # You can actually specify *any* association with the <tt>:through</tt> option, including an
604
- # association which has a <tt>:through</tt> option itself. For example:
605
- #
606
- # class Author < ActiveRecord::Base
607
- # has_many :posts
608
- # has_many :comments, through: :posts
609
- # has_many :commenters, through: :comments
610
- # end
611
- #
612
- # class Post < ActiveRecord::Base
613
- # has_many :comments
614
- # end
615
- #
616
- # class Comment < ActiveRecord::Base
617
- # belongs_to :commenter
618
- # end
619
- #
620
- # @author = Author.first
621
- # @author.commenters # => People who commented on posts written by the author
622
- #
623
- # An equivalent way of setting up this association this would be:
624
- #
625
- # class Author < ActiveRecord::Base
626
- # has_many :posts
627
- # has_many :commenters, through: :posts
628
- # end
629
- #
630
- # class Post < ActiveRecord::Base
631
- # has_many :comments
632
- # has_many :commenters, through: :comments
633
- # end
634
- #
635
- # class Comment < ActiveRecord::Base
636
- # belongs_to :commenter
637
- # end
638
- #
639
- # When using a nested association, you will not be able to modify the association because there
640
- # is not enough information to know what modification to make. For example, if you tried to
641
- # add a <tt>Commenter</tt> in the example above, there would be no way to tell how to set up the
642
- # intermediate <tt>Post</tt> and <tt>Comment</tt> objects.
643
- #
644
- # == Polymorphic \Associations
645
- #
646
- # Polymorphic associations on models are not restricted on what types of models they
647
- # can be associated with. Rather, they specify an interface that a #has_many association
648
- # must adhere to.
649
- #
650
- # class Asset < ActiveRecord::Base
651
- # belongs_to :attachable, polymorphic: true
652
- # end
653
- #
654
- # class Post < ActiveRecord::Base
655
- # has_many :assets, as: :attachable # The :as option specifies the polymorphic interface to use.
656
- # end
657
- #
658
- # @asset.attachable = @post
659
- #
660
- # This works by using a type column in addition to a foreign key to specify the associated
661
- # record. In the Asset example, you'd need an +attachable_id+ integer column and an
662
- # +attachable_type+ string column.
663
- #
664
- # Using polymorphic associations in combination with single table inheritance (STI) is
665
- # a little tricky. In order for the associations to work as expected, ensure that you
666
- # store the base model for the STI models in the type column of the polymorphic
667
- # association. To continue with the asset example above, suppose there are guest posts
668
- # and member posts that use the posts table for STI. In this case, there must be a +type+
669
- # column in the posts table.
670
- #
671
- # Note: The <tt>attachable_type=</tt> method is being called when assigning an +attachable+.
672
- # The +class_name+ of the +attachable+ is passed as a String.
673
- #
674
- # class Asset < ActiveRecord::Base
675
- # belongs_to :attachable, polymorphic: true
676
- #
677
- # def attachable_type=(class_name)
678
- # super(class_name.constantize.base_class.to_s)
679
- # end
680
- # end
681
- #
682
- # class Post < ActiveRecord::Base
683
- # # because we store "Post" in attachable_type now dependent: :destroy will work
684
- # has_many :assets, as: :attachable, dependent: :destroy
685
- # end
686
- #
687
- # class GuestPost < Post
688
- # end
689
- #
690
- # class MemberPost < Post
691
- # end
692
- #
693
- # == Caching
694
- #
695
- # All of the methods are built on a simple caching principle that will keep the result
696
- # of the last query around unless specifically instructed not to. The cache is even
697
- # shared across methods to make it even cheaper to use the macro-added methods without
698
- # worrying too much about performance at the first go.
699
- #
700
- # project.milestones # fetches milestones from the database
701
- # project.milestones.size # uses the milestone cache
702
- # project.milestones.empty? # uses the milestone cache
703
- # project.milestones.reload.size # fetches milestones from the database
704
- # project.milestones # uses the milestone cache
705
- #
706
- # == Eager loading of associations
707
- #
708
- # Eager loading is a way to find objects of a certain class and a number of named associations.
709
- # It is one of the easiest ways to prevent the dreaded N+1 problem in which fetching 100
710
- # posts that each need to display their author triggers 101 database queries. Through the
711
- # use of eager loading, the number of queries will be reduced from 101 to 2.
712
- #
713
- # class Post < ActiveRecord::Base
714
- # belongs_to :author
715
- # has_many :comments
716
- # end
717
- #
718
- # Consider the following loop using the class above:
719
- #
720
- # Post.all.each do |post|
721
- # puts "Post: " + post.title
722
- # puts "Written by: " + post.author.name
723
- # puts "Last comment on: " + post.comments.first.created_on
724
- # end
725
- #
726
- # To iterate over these one hundred posts, we'll generate 201 database queries. Let's
727
- # first just optimize it for retrieving the author:
728
- #
729
- # Post.includes(:author).each do |post|
730
- #
731
- # This references the name of the #belongs_to association that also used the <tt>:author</tt>
732
- # symbol. After loading the posts, +find+ will collect the +author_id+ from each one and load
733
- # all of the referenced authors with one query. Doing so will cut down the number of queries
734
- # from 201 to 102.
735
- #
736
- # We can improve upon the situation further by referencing both associations in the finder with:
737
- #
738
- # Post.includes(:author, :comments).each do |post|
739
- #
740
- # This will load all comments with a single query. This reduces the total number of queries
741
- # to 3. In general, the number of queries will be 1 plus the number of associations
742
- # named (except if some of the associations are polymorphic #belongs_to - see below).
743
- #
744
- # To include a deep hierarchy of associations, use a hash:
745
- #
746
- # Post.includes(:author, { comments: { author: :gravatar } }).each do |post|
747
- #
748
- # The above code will load all the comments and all of their associated
749
- # authors and gravatars. You can mix and match any combination of symbols,
750
- # arrays, and hashes to retrieve the associations you want to load.
751
- #
752
- # All of this power shouldn't fool you into thinking that you can pull out huge amounts
753
- # of data with no performance penalty just because you've reduced the number of queries.
754
- # The database still needs to send all the data to Active Record and it still needs to
755
- # be processed. So it's no catch-all for performance problems, but it's a great way to
756
- # cut down on the number of queries in a situation as the one described above.
757
- #
758
- # Since only one table is loaded at a time, conditions or orders cannot reference tables
759
- # other than the main one. If this is the case, Active Record falls back to the previously
760
- # used <tt>LEFT OUTER JOIN</tt> based strategy. For example:
761
- #
762
- # Post.includes([:author, :comments]).where(['comments.approved = ?', true])
763
- #
764
- # This will result in a single SQL query with joins along the lines of:
765
- # <tt>LEFT OUTER JOIN comments ON comments.post_id = posts.id</tt> and
766
- # <tt>LEFT OUTER JOIN authors ON authors.id = posts.author_id</tt>. Note that using conditions
767
- # like this can have unintended consequences.
768
- # In the above example, posts with no approved comments are not returned at all because
769
- # the conditions apply to the SQL statement as a whole and not just to the association.
770
- #
771
- # You must disambiguate column references for this fallback to happen, for example
772
- # <tt>order: "author.name DESC"</tt> will work but <tt>order: "name DESC"</tt> will not.
773
- #
774
- # If you want to load all posts (including posts with no approved comments), then write
775
- # your own <tt>LEFT OUTER JOIN</tt> query using <tt>ON</tt>:
776
- #
777
- # Post.joins("LEFT OUTER JOIN comments ON comments.post_id = posts.id AND comments.approved = '1'")
778
- #
779
- # In this case, it is usually more natural to include an association which has conditions defined on it:
780
- #
781
- # class Post < ActiveRecord::Base
782
- # has_many :approved_comments, -> { where(approved: true) }, class_name: 'Comment'
783
- # end
784
- #
785
- # Post.includes(:approved_comments)
786
- #
787
- # This will load posts and eager load the +approved_comments+ association, which contains
788
- # only those comments that have been approved.
789
- #
790
- # If you eager load an association with a specified <tt>:limit</tt> option, it will be ignored,
791
- # returning all the associated objects:
792
- #
793
- # class Picture < ActiveRecord::Base
794
- # has_many :most_recent_comments, -> { order('id DESC').limit(10) }, class_name: 'Comment'
795
- # end
796
- #
797
- # Picture.includes(:most_recent_comments).first.most_recent_comments # => returns all associated comments.
798
- #
799
- # Eager loading is supported with polymorphic associations.
800
- #
801
- # class Address < ActiveRecord::Base
802
- # belongs_to :addressable, polymorphic: true
803
- # end
804
- #
805
- # A call that tries to eager load the addressable model
806
- #
807
- # Address.includes(:addressable)
808
- #
809
- # This will execute one query to load the addresses and load the addressables with one
810
- # query per addressable type.
811
- # For example, if all the addressables are either of class Person or Company, then a total
812
- # of 3 queries will be executed. The list of addressable types to load is determined on
813
- # the back of the addresses loaded. This is not supported if Active Record has to fall back
814
- # to the previous implementation of eager loading and will raise ActiveRecord::EagerLoadPolymorphicError.
815
- # The reason is that the parent model's type is a column value so its corresponding table
816
- # name cannot be put in the +FROM+/+JOIN+ clauses of that query.
817
- #
818
- # == Table Aliasing
819
- #
820
- # Active Record uses table aliasing in the case that a table is referenced multiple times
821
- # in a join. If a table is referenced only once, the standard table name is used. The
822
- # second time, the table is aliased as <tt>#{reflection_name}_#{parent_table_name}</tt>.
823
- # Indexes are appended for any more successive uses of the table name.
824
- #
825
- # Post.joins(:comments)
826
- # # SELECT ... FROM posts INNER JOIN comments ON ...
827
- # Post.joins(:special_comments) # STI
828
- # # SELECT ... FROM posts INNER JOIN comments ON ... AND comments.type = 'SpecialComment'
829
- # Post.joins(:comments, :special_comments) # special_comments is the reflection name, posts is the parent table name
830
- # # SELECT ... FROM posts INNER JOIN comments ON ... INNER JOIN comments special_comments_posts
831
- #
832
- # Acts as tree example:
833
- #
834
- # TreeMixin.joins(:children)
835
- # # SELECT ... FROM mixins INNER JOIN mixins childrens_mixins ...
836
- # TreeMixin.joins(children: :parent)
837
- # # SELECT ... FROM mixins INNER JOIN mixins childrens_mixins ...
838
- # # INNER JOIN parents_mixins ...
839
- # TreeMixin.joins(children: {parent: :children})
840
- # # SELECT ... FROM mixins INNER JOIN mixins childrens_mixins ...
841
- # # INNER JOIN parents_mixins ...
842
- # # INNER JOIN mixins childrens_mixins_2
843
- #
844
- # Has and Belongs to Many join tables use the same idea, but add a <tt>_join</tt> suffix:
845
- #
846
- # Post.joins(:categories)
847
- # # SELECT ... FROM posts INNER JOIN categories_posts ... INNER JOIN categories ...
848
- # Post.joins(categories: :posts)
849
- # # SELECT ... FROM posts INNER JOIN categories_posts ... INNER JOIN categories ...
850
- # # INNER JOIN categories_posts posts_categories_join INNER JOIN posts posts_categories
851
- # Post.joins(categories: {posts: :categories})
852
- # # SELECT ... FROM posts INNER JOIN categories_posts ... INNER JOIN categories ...
853
- # # INNER JOIN categories_posts posts_categories_join INNER JOIN posts posts_categories
854
- # # INNER JOIN categories_posts categories_posts_join INNER JOIN categories categories_posts_2
855
- #
856
- # If you wish to specify your own custom joins using ActiveRecord::QueryMethods#joins method, those table
857
- # names will take precedence over the eager associations:
858
- #
859
- # Post.joins(:comments).joins("inner join comments ...")
860
- # # SELECT ... FROM posts INNER JOIN comments_posts ON ... INNER JOIN comments ...
861
- # Post.joins(:comments, :special_comments).joins("inner join comments ...")
862
- # # SELECT ... FROM posts INNER JOIN comments comments_posts ON ...
863
- # # INNER JOIN comments special_comments_posts ...
864
- # # INNER JOIN comments ...
865
- #
866
- # Table aliases are automatically truncated according to the maximum length of table identifiers
867
- # according to the specific database.
868
- #
869
- # == Modules
870
- #
871
- # By default, associations will look for objects within the current module scope. Consider:
872
- #
873
- # module MyApplication
874
- # module Business
875
- # class Firm < ActiveRecord::Base
876
- # has_many :clients
877
- # end
878
- #
879
- # class Client < ActiveRecord::Base; end
880
- # end
881
- # end
882
- #
883
- # When <tt>Firm#clients</tt> is called, it will in turn call
884
- # <tt>MyApplication::Business::Client.find_all_by_firm_id(firm.id)</tt>.
885
- # If you want to associate with a class in another module scope, this can be done by
886
- # specifying the complete class name.
887
- #
888
- # module MyApplication
889
- # module Business
890
- # class Firm < ActiveRecord::Base; end
891
- # end
892
- #
893
- # module Billing
894
- # class Account < ActiveRecord::Base
895
- # belongs_to :firm, class_name: "MyApplication::Business::Firm"
896
- # end
897
- # end
898
- # end
899
- #
900
- # == Bi-directional associations
901
- #
902
- # When you specify an association, there is usually an association on the associated model
903
- # that specifies the same relationship in reverse. For example, with the following models:
904
- #
905
- # class Dungeon < ActiveRecord::Base
906
- # has_many :traps
907
- # has_one :evil_wizard
908
- # end
909
- #
910
- # class Trap < ActiveRecord::Base
911
- # belongs_to :dungeon
912
- # end
913
- #
914
- # class EvilWizard < ActiveRecord::Base
915
- # belongs_to :dungeon
916
- # end
917
- #
918
- # The +traps+ association on +Dungeon+ and the +dungeon+ association on +Trap+ are
919
- # the inverse of each other, and the inverse of the +dungeon+ association on +EvilWizard+
920
- # is the +evil_wizard+ association on +Dungeon+ (and vice-versa). By default,
921
- # Active Record can guess the inverse of the association based on the name
922
- # of the class. The result is the following:
923
- #
924
- # d = Dungeon.first
925
- # t = d.traps.first
926
- # d.object_id == t.dungeon.object_id # => true
927
- #
928
- # The +Dungeon+ instances +d+ and <tt>t.dungeon</tt> in the above example refer to
929
- # the same in-memory instance since the association matches the name of the class.
930
- # The result would be the same if we added +:inverse_of+ to our model definitions:
931
- #
932
- # class Dungeon < ActiveRecord::Base
933
- # has_many :traps, inverse_of: :dungeon
934
- # has_one :evil_wizard, inverse_of: :dungeon
935
- # end
936
- #
937
- # class Trap < ActiveRecord::Base
938
- # belongs_to :dungeon, inverse_of: :traps
939
- # end
940
- #
941
- # class EvilWizard < ActiveRecord::Base
942
- # belongs_to :dungeon, inverse_of: :evil_wizard
943
- # end
944
- #
945
- # For more information, see the documentation for the +:inverse_of+ option and the
946
- # {Active Record Associations guide}[https://guides.rubyonrails.org/association_basics.html#bi-directional-associations].
947
- #
948
- # == Deleting from associations
949
- #
950
- # === Dependent associations
951
- #
952
- # #has_many, #has_one, and #belongs_to associations support the <tt>:dependent</tt> option.
953
- # This allows you to specify that associated records should be deleted when the owner is
954
- # deleted.
955
- #
956
- # For example:
957
- #
958
- # class Author
959
- # has_many :posts, dependent: :destroy
960
- # end
961
- # Author.find(1).destroy # => Will destroy all of the author's posts, too
962
- #
963
- # The <tt>:dependent</tt> option can have different values which specify how the deletion
964
- # is done. For more information, see the documentation for this option on the different
965
- # specific association types. When no option is given, the behavior is to do nothing
966
- # with the associated records when destroying a record.
967
- #
968
- # Note that <tt>:dependent</tt> is implemented using \Rails' callback
969
- # system, which works by processing callbacks in order. Therefore, other
970
- # callbacks declared either before or after the <tt>:dependent</tt> option
971
- # can affect what it does.
972
- #
973
- # Note that <tt>:dependent</tt> option is ignored for #has_one <tt>:through</tt> associations.
974
- #
975
- # === Delete or destroy?
976
- #
977
- # #has_many and #has_and_belongs_to_many associations have the methods <tt>destroy</tt>,
978
- # <tt>delete</tt>, <tt>destroy_all</tt> and <tt>delete_all</tt>.
979
- #
980
- # For #has_and_belongs_to_many, <tt>delete</tt> and <tt>destroy</tt> are the same: they
981
- # cause the records in the join table to be removed.
982
- #
983
- # For #has_many, <tt>destroy</tt> and <tt>destroy_all</tt> will always call the <tt>destroy</tt> method of the
984
- # record(s) being removed so that callbacks are run. However <tt>delete</tt> and <tt>delete_all</tt> will either
985
- # do the deletion according to the strategy specified by the <tt>:dependent</tt> option, or
986
- # if no <tt>:dependent</tt> option is given, then it will follow the default strategy.
987
- # The default strategy is to do nothing (leave the foreign keys with the parent ids set), except for
988
- # #has_many <tt>:through</tt>, where the default strategy is <tt>delete_all</tt> (delete
989
- # the join records, without running their callbacks).
990
- #
991
- # There is also a <tt>clear</tt> method which is the same as <tt>delete_all</tt>, except that
992
- # it returns the association rather than the records which have been deleted.
993
- #
994
- # === What gets deleted?
995
- #
996
- # There is a potential pitfall here: #has_and_belongs_to_many and #has_many <tt>:through</tt>
997
- # associations have records in join tables, as well as the associated records. So when we
998
- # call one of these deletion methods, what exactly should be deleted?
999
- #
1000
- # The answer is that it is assumed that deletion on an association is about removing the
1001
- # <i>link</i> between the owner and the associated object(s), rather than necessarily the
1002
- # associated objects themselves. So with #has_and_belongs_to_many and #has_many
1003
- # <tt>:through</tt>, the join records will be deleted, but the associated records won't.
1004
- #
1005
- # This makes sense if you think about it: if you were to call <tt>post.tags.delete(Tag.find_by(name: 'food'))</tt>
1006
- # you would want the 'food' tag to be unlinked from the post, rather than for the tag itself
1007
- # to be removed from the database.
1008
- #
1009
- # However, there are examples where this strategy doesn't make sense. For example, suppose
1010
- # a person has many projects, and each project has many tasks. If we deleted one of a person's
1011
- # tasks, we would probably not want the project to be deleted. In this scenario, the delete method
1012
- # won't actually work: it can only be used if the association on the join model is a
1013
- # #belongs_to. In other situations you are expected to perform operations directly on
1014
- # either the associated records or the <tt>:through</tt> association.
1015
- #
1016
- # With a regular #has_many there is no distinction between the "associated records"
1017
- # and the "link", so there is only one choice for what gets deleted.
1018
- #
1019
- # With #has_and_belongs_to_many and #has_many <tt>:through</tt>, if you want to delete the
1020
- # associated records themselves, you can always do something along the lines of
1021
- # <tt>person.tasks.each(&:destroy)</tt>.
1022
- #
1023
- # == Type safety with ActiveRecord::AssociationTypeMismatch
1024
- #
1025
- # If you attempt to assign an object to an association that doesn't match the inferred
1026
- # or specified <tt>:class_name</tt>, you'll get an ActiveRecord::AssociationTypeMismatch.
1027
- #
1028
- # == Options
1029
- #
1030
- # All of the association macros can be specialized through options. This makes cases
1031
- # more complex than the simple and guessable ones possible.
1032
- module ClassMethods
1033
- # Specifies a one-to-many association. The following methods for retrieval and query of
1034
- # collections of associated objects will be added:
1035
- #
1036
- # +collection+ is a placeholder for the symbol passed as the +name+ argument, so
1037
- # <tt>has_many :clients</tt> would add among others <tt>clients.empty?</tt>.
1038
- #
1039
- # [<tt>collection</tt>]
1040
- # Returns a Relation of all the associated objects.
1041
- # An empty Relation is returned if none are found.
1042
- # [<tt>collection<<(object, ...)</tt>]
1043
- # Adds one or more objects to the collection by setting their foreign keys to the collection's primary key.
1044
- # Note that this operation instantly fires update SQL without waiting for the save or update call on the
1045
- # parent object, unless the parent object is a new record.
1046
- # This will also run validations and callbacks of associated object(s).
1047
- # [<tt>collection.delete(object, ...)</tt>]
1048
- # Removes one or more objects from the collection by setting their foreign keys to +NULL+.
1049
- # Objects will be in addition destroyed if they're associated with <tt>dependent: :destroy</tt>,
1050
- # and deleted if they're associated with <tt>dependent: :delete_all</tt>.
1051
- #
1052
- # If the <tt>:through</tt> option is used, then the join records are deleted (rather than
1053
- # nullified) by default, but you can specify <tt>dependent: :destroy</tt> or
1054
- # <tt>dependent: :nullify</tt> to override this.
1055
- # [<tt>collection.destroy(object, ...)</tt>]
1056
- # Removes one or more objects from the collection by running <tt>destroy</tt> on
1057
- # each record, regardless of any dependent option, ensuring callbacks are run.
1058
- #
1059
- # If the <tt>:through</tt> option is used, then the join records are destroyed
1060
- # instead, not the objects themselves.
1061
- # [<tt>collection=objects</tt>]
1062
- # Replaces the collections content by deleting and adding objects as appropriate. If the <tt>:through</tt>
1063
- # option is true callbacks in the join models are triggered except destroy callbacks, since deletion is
1064
- # direct by default. You can specify <tt>dependent: :destroy</tt> or
1065
- # <tt>dependent: :nullify</tt> to override this.
1066
- # [<tt>collection_singular_ids</tt>]
1067
- # Returns an array of the associated objects' ids
1068
- # [<tt>collection_singular_ids=ids</tt>]
1069
- # Replace the collection with the objects identified by the primary keys in +ids+. This
1070
- # method loads the models and calls <tt>collection=</tt>. See above.
1071
- # [<tt>collection.clear</tt>]
1072
- # Removes every object from the collection. This destroys the associated objects if they
1073
- # are associated with <tt>dependent: :destroy</tt>, deletes them directly from the
1074
- # database if <tt>dependent: :delete_all</tt>, otherwise sets their foreign keys to +NULL+.
1075
- # If the <tt>:through</tt> option is true no destroy callbacks are invoked on the join models.
1076
- # Join models are directly deleted.
1077
- # [<tt>collection.empty?</tt>]
1078
- # Returns +true+ if there are no associated objects.
1079
- # [<tt>collection.size</tt>]
1080
- # Returns the number of associated objects.
1081
- # [<tt>collection.find(...)</tt>]
1082
- # Finds an associated object according to the same rules as ActiveRecord::FinderMethods#find.
1083
- # [<tt>collection.exists?(...)</tt>]
1084
- # Checks whether an associated object with the given conditions exists.
1085
- # Uses the same rules as ActiveRecord::FinderMethods#exists?.
1086
- # [<tt>collection.build(attributes = {}, ...)</tt>]
1087
- # Returns one or more new objects of the collection type that have been instantiated
1088
- # with +attributes+ and linked to this object through a foreign key, but have not yet
1089
- # been saved.
1090
- # [<tt>collection.create(attributes = {})</tt>]
1091
- # Returns a new object of the collection type that has been instantiated
1092
- # with +attributes+, linked to this object through a foreign key, and that has already
1093
- # been saved (if it passed the validation). *Note*: This only works if the base model
1094
- # already exists in the DB, not if it is a new (unsaved) record!
1095
- # [<tt>collection.create!(attributes = {})</tt>]
1096
- # Does the same as <tt>collection.create</tt>, but raises ActiveRecord::RecordInvalid
1097
- # if the record is invalid.
1098
- # [<tt>collection.reload</tt>]
1099
- # Returns a Relation of all of the associated objects, forcing a database read.
1100
- # An empty Relation is returned if none are found.
1101
- #
1102
- # ==== Example
1103
- #
1104
- # class Firm < ActiveRecord::Base
1105
- # has_many :clients
1106
- # end
1107
- #
1108
- # Declaring <tt>has_many :clients</tt> adds the following methods (and more):
1109
- #
1110
- # firm = Firm.find(2)
1111
- # client = Client.find(6)
1112
- #
1113
- # firm.clients # similar to Client.where(firm_id: 2)
1114
- # firm.clients << client
1115
- # firm.clients.delete(client)
1116
- # firm.clients.destroy(client)
1117
- # firm.clients = [client]
1118
- # firm.client_ids
1119
- # firm.client_ids = [6]
1120
- # firm.clients.clear
1121
- # firm.clients.empty? # similar to firm.clients.size == 0
1122
- # firm.clients.size # similar to Client.count "firm_id = 2"
1123
- # firm.clients.find # similar to Client.where(firm_id: 2).find(6)
1124
- # firm.clients.exists?(name: 'ACME') # similar to Client.exists?(name: 'ACME', firm_id: 2)
1125
- # firm.clients.build # similar to Client.new(firm_id: 2)
1126
- # firm.clients.create # similar to Client.create(firm_id: 2)
1127
- # firm.clients.create! # similar to Client.create!(firm_id: 2)
1128
- # firm.clients.reload
1129
- #
1130
- # The declaration can also include an +options+ hash to specialize the behavior of the association.
1131
- #
1132
- # ==== Scopes
1133
- #
1134
- # You can pass a second argument +scope+ as a callable (i.e. proc or
1135
- # lambda) to retrieve a specific set of records or customize the generated
1136
- # query when you access the associated collection.
1137
- #
1138
- # Scope examples:
1139
- # has_many :comments, -> { where(author_id: 1) }
1140
- # has_many :employees, -> { joins(:address) }
1141
- # has_many :posts, ->(blog) { where("max_post_length > ?", blog.max_post_length) }
1142
- #
1143
- # ==== Extensions
1144
- #
1145
- # The +extension+ argument allows you to pass a block into a has_many
1146
- # association. This is useful for adding new finders, creators, and other
1147
- # factory-type methods to be used as part of the association.
1148
- #
1149
- # Extension examples:
1150
- # has_many :employees do
1151
- # def find_or_create_by_name(name)
1152
- # first_name, last_name = name.split(" ", 2)
1153
- # find_or_create_by(first_name: first_name, last_name: last_name)
1154
- # end
1155
- # end
1156
- #
1157
- # ==== Options
1158
- # [+:class_name+]
1159
- # Specify the class name of the association. Use it only if that name can't be inferred
1160
- # from the association name. So <tt>has_many :products</tt> will by default be linked
1161
- # to the +Product+ class, but if the real class name is +SpecialProduct+, you'll have to
1162
- # specify it with this option.
1163
- # [+:foreign_key+]
1164
- # Specify the foreign key used for the association. By default this is guessed to be the name
1165
- # of this class in lower-case and "_id" suffixed. So a Person class that makes a #has_many
1166
- # association will use "person_id" as the default <tt>:foreign_key</tt>.
1167
- #
1168
- # Setting the <tt>:foreign_key</tt> option prevents automatic detection of the association's
1169
- # inverse, so it is generally a good idea to set the <tt>:inverse_of</tt> option as well.
1170
- # [+:foreign_type+]
1171
- # Specify the column used to store the associated object's type, if this is a polymorphic
1172
- # association. By default this is guessed to be the name of the polymorphic association
1173
- # specified on "as" option with a "_type" suffix. So a class that defines a
1174
- # <tt>has_many :tags, as: :taggable</tt> association will use "taggable_type" as the
1175
- # default <tt>:foreign_type</tt>.
1176
- # [+:primary_key+]
1177
- # Specify the name of the column to use as the primary key for the association. By default this is +id+.
1178
- # [+:dependent+]
1179
- # Controls what happens to the associated objects when
1180
- # their owner is destroyed. Note that these are implemented as
1181
- # callbacks, and \Rails executes callbacks in order. Therefore, other
1182
- # similar callbacks may affect the <tt>:dependent</tt> behavior, and the
1183
- # <tt>:dependent</tt> behavior may affect other callbacks.
1184
- #
1185
- # * <tt>nil</tt> do nothing (default).
1186
- # * <tt>:destroy</tt> causes all the associated objects to also be destroyed.
1187
- # * <tt>:destroy_async</tt> destroys all the associated objects in a background job. <b>WARNING:</b> Do not use
1188
- # this option if the association is backed by foreign key constraints in your database. The foreign key
1189
- # constraint actions will occur inside the same transaction that deletes its owner.
1190
- # * <tt>:delete_all</tt> causes all the associated objects to be deleted directly from the database (so callbacks will not be executed).
1191
- # * <tt>:nullify</tt> causes the foreign keys to be set to +NULL+. Polymorphic type will also be nullified
1192
- # on polymorphic associations. Callbacks are not executed.
1193
- # * <tt>:restrict_with_exception</tt> causes an ActiveRecord::DeleteRestrictionError exception to be raised if there are any associated records.
1194
- # * <tt>:restrict_with_error</tt> causes an error to be added to the owner if there are any associated objects.
1195
- #
1196
- # If using with the <tt>:through</tt> option, the association on the join model must be
1197
- # a #belongs_to, and the records which get deleted are the join records, rather than
1198
- # the associated records.
1199
- #
1200
- # If using <tt>dependent: :destroy</tt> on a scoped association, only the scoped objects are destroyed.
1201
- # For example, if a Post model defines
1202
- # <tt>has_many :comments, -> { where published: true }, dependent: :destroy</tt> and <tt>destroy</tt> is
1203
- # called on a post, only published comments are destroyed. This means that any unpublished comments in the
1204
- # database would still contain a foreign key pointing to the now deleted post.
1205
- # [+:counter_cache+]
1206
- # This option can be used to configure a custom named <tt>:counter_cache.</tt> You only need this option,
1207
- # when you customized the name of your <tt>:counter_cache</tt> on the #belongs_to association.
1208
- # [+:as+]
1209
- # Specifies a polymorphic interface (See #belongs_to).
1210
- # [+:through+]
1211
- # Specifies an association through which to perform the query. This can be any other type
1212
- # of association, including other <tt>:through</tt> associations. Options for <tt>:class_name</tt>,
1213
- # <tt>:primary_key</tt> and <tt>:foreign_key</tt> are ignored, as the association uses the
1214
- # source reflection.
1215
- #
1216
- # If the association on the join model is a #belongs_to, the collection can be modified
1217
- # and the records on the <tt>:through</tt> model will be automatically created and removed
1218
- # as appropriate. Otherwise, the collection is read-only, so you should manipulate the
1219
- # <tt>:through</tt> association directly.
1220
- #
1221
- # If you are going to modify the association (rather than just read from it), then it is
1222
- # a good idea to set the <tt>:inverse_of</tt> option on the source association on the
1223
- # join model. This allows associated records to be built which will automatically create
1224
- # the appropriate join model records when they are saved. See
1225
- # {Association Join Models}[rdoc-ref:Associations::ClassMethods@Association+Join+Models]
1226
- # and {Setting Inverses}[rdoc-ref:Associations::ClassMethods@Setting+Inverses] for
1227
- # more detail.
1228
- #
1229
- # [+:disable_joins+]
1230
- # Specifies whether joins should be skipped for an association. If set to true, two or more queries
1231
- # will be generated. Note that in some cases, if order or limit is applied, it will be done in-memory
1232
- # due to database limitations. This option is only applicable on <tt>has_many :through</tt> associations as
1233
- # +has_many+ alone do not perform a join.
1234
- # [+:source+]
1235
- # Specifies the source association name used by #has_many <tt>:through</tt> queries.
1236
- # Only use it if the name cannot be inferred from the association.
1237
- # <tt>has_many :subscribers, through: :subscriptions</tt> will look for either <tt>:subscribers</tt> or
1238
- # <tt>:subscriber</tt> on Subscription, unless a <tt>:source</tt> is given.
1239
- # [+:source_type+]
1240
- # Specifies type of the source association used by #has_many <tt>:through</tt> queries where the source
1241
- # association is a polymorphic #belongs_to.
1242
- # [+:validate+]
1243
- # When set to +true+, validates new objects added to association when saving the parent object. +true+ by default.
1244
- # If you want to ensure associated objects are revalidated on every update, use +validates_associated+.
1245
- # [+:autosave+]
1246
- # If true, always save the associated objects or destroy them if marked for destruction,
1247
- # when saving the parent object. If false, never save or destroy the associated objects.
1248
- # By default, only save associated objects that are new records. This option is implemented as a
1249
- # +before_save+ callback. Because callbacks are run in the order they are defined, associated objects
1250
- # may need to be explicitly saved in any user-defined +before_save+ callbacks.
1251
- #
1252
- # Note that NestedAttributes::ClassMethods#accepts_nested_attributes_for sets
1253
- # <tt>:autosave</tt> to <tt>true</tt>.
1254
- # [+:inverse_of+]
1255
- # Specifies the name of the #belongs_to association on the associated object
1256
- # that is the inverse of this #has_many association.
1257
- # See {Bi-directional associations}[rdoc-ref:Associations::ClassMethods@Bi-directional+associations]
1258
- # for more detail.
1259
- # [+:extend+]
1260
- # Specifies a module or array of modules that will be extended into the association object returned.
1261
- # Useful for defining methods on associations, especially when they should be shared between multiple
1262
- # association objects.
1263
- # [+:strict_loading+]
1264
- # When set to +true+, enforces strict loading every time the associated record is loaded through this
1265
- # association.
1266
- # [+:ensuring_owner_was+]
1267
- # Specifies an instance method to be called on the owner. The method must return true in order for the
1268
- # associated records to be deleted in a background job.
1269
- # [+:query_constraints+]
1270
- # Serves as a composite foreign key. Defines the list of columns to be used to query the associated object.
1271
- # This is an optional option. By default Rails will attempt to derive the value automatically.
1272
- # When the value is set the Array size must match associated model's primary key or +query_constraints+ size.
1273
- # [+:index_errors+]
1274
- # Allows differentiation of multiple validation errors from the association records, by including
1275
- # an index in the error attribute name, e.g. +roles[2].level+.
1276
- # When set to +true+, the index is based on association order, i.e. database order, with yet to be
1277
- # persisted new records placed at the end.
1278
- # When set to +:nested_attributes_order+, the index is based on the record order received by
1279
- # nested attributes setter, when accepts_nested_attributes_for is used.
1280
- # [:before_add]
1281
- # Defines an {association callback}[rdoc-ref:Associations::ClassMethods@Association+callbacks] that gets triggered <b>before an object is added</b> to the association collection.
1282
- # [:after_add]
1283
- # Defines an {association callback}[rdoc-ref:Associations::ClassMethods@Association+callbacks] that gets triggered <b>after an object is added</b> to the association collection.
1284
- # [:before_remove]
1285
- # Defines an {association callback}[rdoc-ref:Associations::ClassMethods@Association+callbacks] that gets triggered <b>before an object is removed</b> from the association collection.
1286
- # [:after_remove]
1287
- # Defines an {association callback}[rdoc-ref:Associations::ClassMethods@Association+callbacks] that gets triggered <b>after an object is removed</b> from the association collection.
1288
- #
1289
- # Option examples:
1290
- # has_many :comments, -> { order("posted_on") }
1291
- # has_many :comments, -> { includes(:author) }
1292
- # has_many :people, -> { where(deleted: false).order("name") }, class_name: "Person"
1293
- # has_many :tracks, -> { order("position") }, dependent: :destroy
1294
- # has_many :comments, dependent: :nullify
1295
- # has_many :tags, as: :taggable
1296
- # has_many :reports, -> { readonly }
1297
- # has_many :subscribers, through: :subscriptions, source: :user
1298
- # has_many :subscribers, through: :subscriptions, disable_joins: true
1299
- # has_many :comments, strict_loading: true
1300
- # has_many :comments, query_constraints: [:blog_id, :post_id]
1301
- # has_many :comments, index_errors: :nested_attributes_order
1302
- def has_many(name, scope = nil, **options, &extension)
1303
- reflection = Builder::HasMany.build(self, name, scope, options, &extension)
1304
- Reflection.add_reflection self, name, reflection
1305
- end
1306
-
1307
- # Specifies a one-to-one association with another class. This method
1308
- # should only be used if the other class contains the foreign key. If
1309
- # the current class contains the foreign key, then you should use
1310
- # #belongs_to instead. See {Is it a belongs_to or has_one
1311
- # association?}[rdoc-ref:Associations::ClassMethods@Is+it+a+-23belongs_to+or+-23has_one+association-3F]
1312
- # for more detail on when to use #has_one and when to use #belongs_to.
1313
- #
1314
- # The following methods for retrieval and query of a single associated object will be added:
1315
- #
1316
- # +association+ is a placeholder for the symbol passed as the +name+ argument, so
1317
- # <tt>has_one :manager</tt> would add among others <tt>manager.nil?</tt>.
1318
- #
1319
- # [<tt>association</tt>]
1320
- # Returns the associated object. +nil+ is returned if none is found.
1321
- # [<tt>association=(associate)</tt>]
1322
- # Assigns the associate object, extracts the primary key, sets it as the foreign key,
1323
- # and saves the associate object. To avoid database inconsistencies, permanently deletes an existing
1324
- # associated object when assigning a new one, even if the new one isn't saved to database.
1325
- # [<tt>build_association(attributes = {})</tt>]
1326
- # Returns a new object of the associated type that has been instantiated
1327
- # with +attributes+ and linked to this object through a foreign key, but has not
1328
- # yet been saved.
1329
- # [<tt>create_association(attributes = {})</tt>]
1330
- # Returns a new object of the associated type that has been instantiated
1331
- # with +attributes+, linked to this object through a foreign key, and that
1332
- # has already been saved (if it passed the validation).
1333
- # [<tt>create_association!(attributes = {})</tt>]
1334
- # Does the same as <tt>create_association</tt>, but raises ActiveRecord::RecordInvalid
1335
- # if the record is invalid.
1336
- # [<tt>reload_association</tt>]
1337
- # Returns the associated object, forcing a database read.
1338
- # [<tt>reset_association</tt>]
1339
- # Unloads the associated object. The next access will query it from the database.
1340
- #
1341
- # ==== Example
1342
- #
1343
- # class Account < ActiveRecord::Base
1344
- # has_one :beneficiary
1345
- # end
1346
- #
1347
- # Declaring <tt>has_one :beneficiary</tt> adds the following methods (and more):
1348
- #
1349
- # account = Account.find(5)
1350
- # beneficiary = Beneficiary.find(8)
1351
- #
1352
- # account.beneficiary # similar to Beneficiary.find_by(account_id: 5)
1353
- # account.beneficiary = beneficiary # similar to beneficiary.update(account_id: 5)
1354
- # account.build_beneficiary # similar to Beneficiary.new(account_id: 5)
1355
- # account.create_beneficiary # similar to Beneficiary.create(account_id: 5)
1356
- # account.create_beneficiary! # similar to Beneficiary.create!(account_id: 5)
1357
- # account.reload_beneficiary
1358
- # account.reset_beneficiary
1359
- #
1360
- # ==== Scopes
1361
- #
1362
- # You can pass a second argument +scope+ as a callable (i.e. proc or
1363
- # lambda) to retrieve a specific record or customize the generated query
1364
- # when you access the associated object.
1365
- #
1366
- # Scope examples:
1367
- # has_one :author, -> { where(comment_id: 1) }
1368
- # has_one :employer, -> { joins(:company) }
1369
- # has_one :latest_post, ->(blog) { where("created_at > ?", blog.enabled_at) }
1370
- #
1371
- # ==== Options
1372
- #
1373
- # The declaration can also include an +options+ hash to specialize the behavior of the association.
1374
- #
1375
- # Options are:
1376
- # [+:class_name+]
1377
- # Specify the class name of the association. Use it only if that name can't be inferred
1378
- # from the association name. So <tt>has_one :manager</tt> will by default be linked to the Manager class, but
1379
- # if the real class name is Person, you'll have to specify it with this option.
1380
- # [+:dependent+]
1381
- # Controls what happens to the associated object when
1382
- # its owner is destroyed:
1383
- #
1384
- # * <tt>nil</tt> do nothing (default).
1385
- # * <tt>:destroy</tt> causes the associated object to also be destroyed
1386
- # * <tt>:destroy_async</tt> causes the associated object to be destroyed in a background job. <b>WARNING:</b> Do not use
1387
- # this option if the association is backed by foreign key constraints in your database. The foreign key
1388
- # constraint actions will occur inside the same transaction that deletes its owner.
1389
- # * <tt>:delete</tt> causes the associated object to be deleted directly from the database (so callbacks will not execute)
1390
- # * <tt>:nullify</tt> causes the foreign key to be set to +NULL+. Polymorphic type column is also nullified
1391
- # on polymorphic associations. Callbacks are not executed.
1392
- # * <tt>:restrict_with_exception</tt> causes an ActiveRecord::DeleteRestrictionError exception to be raised if there is an associated record
1393
- # * <tt>:restrict_with_error</tt> causes an error to be added to the owner if there is an associated object
1394
- #
1395
- # Note that <tt>:dependent</tt> option is ignored when using <tt>:through</tt> option.
1396
- # [+:foreign_key+]
1397
- # Specify the foreign key used for the association. By default this is guessed to be the name
1398
- # of this class in lower-case and "_id" suffixed. So a Person class that makes a #has_one association
1399
- # will use "person_id" as the default <tt>:foreign_key</tt>.
1400
- #
1401
- # Setting the <tt>:foreign_key</tt> option prevents automatic detection of the association's
1402
- # inverse, so it is generally a good idea to set the <tt>:inverse_of</tt> option as well.
1403
- # [+:foreign_type+]
1404
- # Specify the column used to store the associated object's type, if this is a polymorphic
1405
- # association. By default this is guessed to be the name of the polymorphic association
1406
- # specified on "as" option with a "_type" suffix. So a class that defines a
1407
- # <tt>has_one :tag, as: :taggable</tt> association will use "taggable_type" as the
1408
- # default <tt>:foreign_type</tt>.
1409
- # [+:primary_key+]
1410
- # Specify the method that returns the primary key used for the association. By default this is +id+.
1411
- # [+:as+]
1412
- # Specifies a polymorphic interface (See #belongs_to).
1413
- # [+:through+]
1414
- # Specifies a Join Model through which to perform the query. Options for <tt>:class_name</tt>,
1415
- # <tt>:primary_key</tt>, and <tt>:foreign_key</tt> are ignored, as the association uses the
1416
- # source reflection. You can only use a <tt>:through</tt> query through a #has_one
1417
- # or #belongs_to association on the join model.
1418
- #
1419
- # If the association on the join model is a #belongs_to, the collection can be modified
1420
- # and the records on the <tt>:through</tt> model will be automatically created and removed
1421
- # as appropriate. Otherwise, the collection is read-only, so you should manipulate the
1422
- # <tt>:through</tt> association directly.
1423
- #
1424
- # If you are going to modify the association (rather than just read from it), then it is
1425
- # a good idea to set the <tt>:inverse_of</tt> option on the source association on the
1426
- # join model. This allows associated records to be built which will automatically create
1427
- # the appropriate join model records when they are saved. See
1428
- # {Association Join Models}[rdoc-ref:Associations::ClassMethods@Association+Join+Models]
1429
- # and {Setting Inverses}[rdoc-ref:Associations::ClassMethods@Setting+Inverses] for
1430
- # more detail.
1431
- # [+:disable_joins+]
1432
- # Specifies whether joins should be skipped for an association. If set to true, two or more queries
1433
- # will be generated. Note that in some cases, if order or limit is applied, it will be done in-memory
1434
- # due to database limitations. This option is only applicable on <tt>has_one :through</tt> associations as
1435
- # +has_one+ alone does not perform a join.
1436
- # [+:source+]
1437
- # Specifies the source association name used by #has_one <tt>:through</tt> queries.
1438
- # Only use it if the name cannot be inferred from the association.
1439
- # <tt>has_one :favorite, through: :favorites</tt> will look for a
1440
- # <tt>:favorite</tt> on Favorite, unless a <tt>:source</tt> is given.
1441
- # [+:source_type+]
1442
- # Specifies type of the source association used by #has_one <tt>:through</tt> queries where the source
1443
- # association is a polymorphic #belongs_to.
1444
- # [+:validate+]
1445
- # When set to +true+, validates new objects added to association when saving the parent object. +false+ by default.
1446
- # If you want to ensure associated objects are revalidated on every update, use +validates_associated+.
1447
- # [+:autosave+]
1448
- # If +true+, always saves the associated object or destroys it if marked for destruction,
1449
- # when saving the parent object.
1450
- # If +false+, never save or destroy the associated object.
1451
- #
1452
- # By default, only saves the associated object if it's a new record. Setting this option
1453
- # to +true+ also enables validations on the associated object unless explicitly disabled
1454
- # with <tt>validate: false</tt>. This is because saving an object with invalid associated
1455
- # objects would fail, so any associated objects will go through validation checks.
1456
- #
1457
- # Note that NestedAttributes::ClassMethods#accepts_nested_attributes_for sets
1458
- # <tt>:autosave</tt> to <tt>true</tt>.
1459
- # [+:touch+]
1460
- # If true, the associated object will be touched (the +updated_at+ / +updated_on+ attributes set to current time)
1461
- # when this record is either saved or destroyed. If you specify a symbol, that attribute
1462
- # will be updated with the current time in addition to the +updated_at+ / +updated_on+ attribute.
1463
- # Please note that no validation will be performed when touching, and only the +after_touch+,
1464
- # +after_commit+, and +after_rollback+ callbacks will be executed.
1465
- # [+:inverse_of+]
1466
- # Specifies the name of the #belongs_to association on the associated object
1467
- # that is the inverse of this #has_one association.
1468
- # See {Bi-directional associations}[rdoc-ref:Associations::ClassMethods@Bi-directional+associations]
1469
- # for more detail.
1470
- # [+:required+]
1471
- # When set to +true+, the association will also have its presence validated.
1472
- # This will validate the association itself, not the id. You can use
1473
- # +:inverse_of+ to avoid an extra query during validation.
1474
- # [+:strict_loading+]
1475
- # Enforces strict loading every time the associated record is loaded through this association.
1476
- # [+:ensuring_owner_was+]
1477
- # Specifies an instance method to be called on the owner. The method must return true in order for the
1478
- # associated records to be deleted in a background job.
1479
- # [+:query_constraints+]
1480
- # Serves as a composite foreign key. Defines the list of columns to be used to query the associated object.
1481
- # This is an optional option. By default Rails will attempt to derive the value automatically.
1482
- # When the value is set the Array size must match associated model's primary key or +query_constraints+ size.
1483
- #
1484
- # Option examples:
1485
- # has_one :credit_card, dependent: :destroy # destroys the associated credit card
1486
- # has_one :credit_card, dependent: :nullify # updates the associated records foreign
1487
- # # key value to NULL rather than destroying it
1488
- # has_one :last_comment, -> { order('posted_on') }, class_name: "Comment"
1489
- # has_one :project_manager, -> { where(role: 'project_manager') }, class_name: "Person"
1490
- # has_one :attachment, as: :attachable
1491
- # has_one :boss, -> { readonly }
1492
- # has_one :club, through: :membership
1493
- # has_one :club, through: :membership, disable_joins: true
1494
- # has_one :primary_address, -> { where(primary: true) }, through: :addressables, source: :addressable
1495
- # has_one :credit_card, required: true
1496
- # has_one :credit_card, strict_loading: true
1497
- # has_one :employment_record_book, query_constraints: [:organization_id, :employee_id]
1498
- def has_one(name, scope = nil, **options)
1499
- reflection = Builder::HasOne.build(self, name, scope, options)
1500
- Reflection.add_reflection self, name, reflection
1501
- end
1502
-
1503
- # Specifies a one-to-one association with another class. This method
1504
- # should only be used if this class contains the foreign key. If the
1505
- # other class contains the foreign key, then you should use #has_one
1506
- # instead. See {Is it a belongs_to or has_one
1507
- # association?}[rdoc-ref:Associations::ClassMethods@Is+it+a+-23belongs_to+or+-23has_one+association-3F]
1508
- # for more detail on when to use #has_one and when to use #belongs_to.
1509
- #
1510
- # Methods will be added for retrieval and query for a single associated object, for which
1511
- # this object holds an id:
1512
- #
1513
- # +association+ is a placeholder for the symbol passed as the +name+ argument, so
1514
- # <tt>belongs_to :author</tt> would add among others <tt>author.nil?</tt>.
1515
- #
1516
- # [<tt>association</tt>]
1517
- # Returns the associated object. +nil+ is returned if none is found.
1518
- # [<tt>association=(associate)</tt>]
1519
- # Assigns the associate object, extracts the primary key, and sets it as the foreign key.
1520
- # No modification or deletion of existing records takes place.
1521
- # [<tt>build_association(attributes = {})</tt>]
1522
- # Returns a new object of the associated type that has been instantiated
1523
- # with +attributes+ and linked to this object through a foreign key, but has not yet been saved.
1524
- # [<tt>create_association(attributes = {})</tt>]
1525
- # Returns a new object of the associated type that has been instantiated
1526
- # with +attributes+, linked to this object through a foreign key, and that
1527
- # has already been saved (if it passed the validation).
1528
- # [<tt>create_association!(attributes = {})</tt>]
1529
- # Does the same as <tt>create_association</tt>, but raises ActiveRecord::RecordInvalid
1530
- # if the record is invalid.
1531
- # [<tt>reload_association</tt>]
1532
- # Returns the associated object, forcing a database read.
1533
- # [<tt>reset_association</tt>]
1534
- # Unloads the associated object. The next access will query it from the database.
1535
- # [<tt>association_changed?</tt>]
1536
- # Returns true if a new associate object has been assigned and the next save will update the foreign key.
1537
- # [<tt>association_previously_changed?</tt>]
1538
- # Returns true if the previous save updated the association to reference a new associate object.
1539
- #
1540
- # ==== Example
1541
- #
1542
- # class Post < ActiveRecord::Base
1543
- # belongs_to :author
1544
- # end
1545
- #
1546
- # Declaring <tt>belongs_to :author</tt> adds the following methods (and more):
1547
- #
1548
- # post = Post.find(7)
1549
- # author = Author.find(19)
1550
- #
1551
- # post.author # similar to Author.find(post.author_id)
1552
- # post.author = author # similar to post.author_id = author.id
1553
- # post.build_author # similar to post.author = Author.new
1554
- # post.create_author # similar to post.author = Author.new; post.author.save; post.author
1555
- # post.create_author! # similar to post.author = Author.new; post.author.save!; post.author
1556
- # post.reload_author
1557
- # post.reset_author
1558
- # post.author_changed?
1559
- # post.author_previously_changed?
1560
- #
1561
- # ==== Scopes
1562
- #
1563
- # You can pass a second argument +scope+ as a callable (i.e. proc or
1564
- # lambda) to retrieve a specific record or customize the generated query
1565
- # when you access the associated object.
1566
- #
1567
- # Scope examples:
1568
- # belongs_to :firm, -> { where(id: 2) }
1569
- # belongs_to :user, -> { joins(:friends) }
1570
- # belongs_to :level, ->(game) { where("game_level > ?", game.current_level) }
1571
- #
1572
- # ==== Options
1573
- #
1574
- # The declaration can also include an +options+ hash to specialize the behavior of the association.
1575
- #
1576
- # [+:class_name+]
1577
- # Specify the class name of the association. Use it only if that name can't be inferred
1578
- # from the association name. So <tt>belongs_to :author</tt> will by default be linked to the Author class, but
1579
- # if the real class name is Person, you'll have to specify it with this option.
1580
- # [+:foreign_key+]
1581
- # Specify the foreign key used for the association. By default this is guessed to be the name
1582
- # of the association with an "_id" suffix. So a class that defines a <tt>belongs_to :person</tt>
1583
- # association will use "person_id" as the default <tt>:foreign_key</tt>. Similarly,
1584
- # <tt>belongs_to :favorite_person, class_name: "Person"</tt> will use a foreign key
1585
- # of "favorite_person_id".
1586
- #
1587
- # Setting the <tt>:foreign_key</tt> option prevents automatic detection of the association's
1588
- # inverse, so it is generally a good idea to set the <tt>:inverse_of</tt> option as well.
1589
- # [+:foreign_type+]
1590
- # Specify the column used to store the associated object's type, if this is a polymorphic
1591
- # association. By default this is guessed to be the name of the association with a "_type"
1592
- # suffix. So a class that defines a <tt>belongs_to :taggable, polymorphic: true</tt>
1593
- # association will use "taggable_type" as the default <tt>:foreign_type</tt>.
1594
- # [+:primary_key+]
1595
- # Specify the method that returns the primary key of associated object used for the association.
1596
- # By default this is +id+.
1597
- # [+:dependent+]
1598
- # If set to <tt>:destroy</tt>, the associated object is destroyed when this object is. If set to
1599
- # <tt>:delete</tt>, the associated object is deleted *without* calling its destroy method. If set to
1600
- # <tt>:destroy_async</tt>, the associated object is scheduled to be destroyed in a background job.
1601
- # This option should not be specified when #belongs_to is used in conjunction with
1602
- # a #has_many relationship on another class because of the potential to leave
1603
- # orphaned records behind.
1604
- # [+:counter_cache+]
1605
- # Caches the number of belonging objects on the associate class through the use of CounterCache::ClassMethods#increment_counter
1606
- # and CounterCache::ClassMethods#decrement_counter. The counter cache is incremented when an object of this
1607
- # class is created and decremented when it's destroyed. This requires that a column
1608
- # named <tt>#{table_name}_count</tt> (such as +comments_count+ for a belonging Comment class)
1609
- # is used on the associate class (such as a Post class) - that is the migration for
1610
- # <tt>#{table_name}_count</tt> is created on the associate class (such that <tt>Post.comments_count</tt> will
1611
- # return the count cached). You can also specify a custom counter
1612
- # cache column by providing a column name instead of a +true+/+false+ value to this
1613
- # option (e.g., <tt>counter_cache: :my_custom_counter</tt>.)
1614
- #
1615
- # Starting to use counter caches on existing large tables can be troublesome, because the column
1616
- # values must be backfilled separately of the column addition (to not lock the table for too long)
1617
- # and before the use of +:counter_cache+ (otherwise methods like +size+/+any?+/etc, which use
1618
- # counter caches internally, can produce incorrect results). To safely backfill the values while keeping
1619
- # counter cache columns updated with the child records creation/removal and to avoid the mentioned methods
1620
- # use the possibly incorrect counter cache column values and always get the results from the database,
1621
- # use <tt>counter_cache: { active: false }</tt>.
1622
- # If you also need to specify a custom column name, use <tt>counter_cache: { active: false, column: :my_custom_counter }</tt>.
1623
- #
1624
- # Note: If you've enabled the counter cache, then you may want to add the counter cache attribute
1625
- # to the +attr_readonly+ list in the associated classes (e.g. <tt>class Post; attr_readonly :comments_count; end</tt>).
1626
- # [+:polymorphic+]
1627
- # Specify this association is a polymorphic association by passing +true+.
1628
- # Note: Since polymorphic associations rely on storing class names in the database, make sure to update the class names in the
1629
- # <tt>*_type</tt> polymorphic type column of the corresponding rows.
1630
- # [+:validate+]
1631
- # When set to +true+, validates new objects added to association when saving the parent object. +false+ by default.
1632
- # If you want to ensure associated objects are revalidated on every update, use +validates_associated+.
1633
- # [+:autosave+]
1634
- # If true, always save the associated object or destroy it if marked for destruction, when
1635
- # saving the parent object.
1636
- # If false, never save or destroy the associated object.
1637
- # By default, only save the associated object if it's a new record.
1638
- #
1639
- # Note that NestedAttributes::ClassMethods#accepts_nested_attributes_for
1640
- # sets <tt>:autosave</tt> to <tt>true</tt>.
1641
- # [+:touch+]
1642
- # If true, the associated object will be touched (the +updated_at+ / +updated_on+ attributes set to current time)
1643
- # when this record is either saved or destroyed. If you specify a symbol, that attribute
1644
- # will be updated with the current time in addition to the +updated_at+ / +updated_on+ attribute.
1645
- # Please note that no validation will be performed when touching, and only the +after_touch+,
1646
- # +after_commit+, and +after_rollback+ callbacks will be executed.
1647
- # [+:inverse_of+]
1648
- # Specifies the name of the #has_one or #has_many association on the associated
1649
- # object that is the inverse of this #belongs_to association.
1650
- # See {Bi-directional associations}[rdoc-ref:Associations::ClassMethods@Bi-directional+associations]
1651
- # for more detail.
1652
- # [+:optional+]
1653
- # When set to +true+, the association will not have its presence validated.
1654
- # [+:required+]
1655
- # When set to +true+, the association will also have its presence validated.
1656
- # This will validate the association itself, not the id. You can use
1657
- # +:inverse_of+ to avoid an extra query during validation.
1658
- # NOTE: <tt>required</tt> is set to <tt>true</tt> by default and is deprecated. If
1659
- # you don't want to have association presence validated, use <tt>optional: true</tt>.
1660
- # [+:default+]
1661
- # Provide a callable (i.e. proc or lambda) to specify that the association should
1662
- # be initialized with a particular record before validation.
1663
- # Please note that callable won't be executed if the record exists.
1664
- # [+:strict_loading+]
1665
- # Enforces strict loading every time the associated record is loaded through this association.
1666
- # [+:ensuring_owner_was+]
1667
- # Specifies an instance method to be called on the owner. The method must return true in order for the
1668
- # associated records to be deleted in a background job.
1669
- # [+:query_constraints+]
1670
- # Serves as a composite foreign key. Defines the list of columns to be used to query the associated object.
1671
- # This is an optional option. By default Rails will attempt to derive the value automatically.
1672
- # When the value is set the Array size must match associated model's primary key or +query_constraints+ size.
1673
- #
1674
- # Option examples:
1675
- # belongs_to :firm, foreign_key: "client_of"
1676
- # belongs_to :person, primary_key: "name", foreign_key: "person_name"
1677
- # belongs_to :author, class_name: "Person", foreign_key: "author_id"
1678
- # belongs_to :valid_coupon, ->(o) { where "discounts > ?", o.payments_count },
1679
- # class_name: "Coupon", foreign_key: "coupon_id"
1680
- # belongs_to :attachable, polymorphic: true
1681
- # belongs_to :project, -> { readonly }
1682
- # belongs_to :post, counter_cache: true
1683
- # belongs_to :comment, touch: true
1684
- # belongs_to :company, touch: :employees_last_updated_at
1685
- # belongs_to :user, optional: true
1686
- # belongs_to :account, default: -> { company.account }
1687
- # belongs_to :account, strict_loading: true
1688
- # belongs_to :note, query_constraints: [:organization_id, :note_id]
1689
- def belongs_to(name, scope = nil, **options)
1690
- reflection = Builder::BelongsTo.build(self, name, scope, options)
1691
- Reflection.add_reflection self, name, reflection
1692
- end
1693
-
1694
- # Specifies a many-to-many relationship with another class. This associates two classes via an
1695
- # intermediate join table. Unless the join table is explicitly specified as an option, it is
1696
- # guessed using the lexical order of the class names. So a join between Developer and Project
1697
- # will give the default join table name of "developers_projects" because "D" precedes "P" alphabetically.
1698
- # Note that this precedence is calculated using the <tt><</tt> operator for String. This
1699
- # means that if the strings are of different lengths, and the strings are equal when compared
1700
- # up to the shortest length, then the longer string is considered of higher
1701
- # lexical precedence than the shorter one. For example, one would expect the tables "paper_boxes" and "papers"
1702
- # to generate a join table name of "papers_paper_boxes" because of the length of the name "paper_boxes",
1703
- # but it in fact generates a join table name of "paper_boxes_papers". Be aware of this caveat, and use the
1704
- # custom <tt>:join_table</tt> option if you need to.
1705
- # If your tables share a common prefix, it will only appear once at the beginning. For example,
1706
- # the tables "catalog_categories" and "catalog_products" generate a join table name of "catalog_categories_products".
1707
- #
1708
- # The join table should not have a primary key or a model associated with it. You must manually generate the
1709
- # join table with a migration such as this:
1710
- #
1711
- # class CreateDevelopersProjectsJoinTable < ActiveRecord::Migration[8.0]
1712
- # def change
1713
- # create_join_table :developers, :projects
1714
- # end
1715
- # end
1716
- #
1717
- # It's also a good idea to add indexes to each of those columns to speed up the joins process.
1718
- # However, in MySQL it is advised to add a compound index for both of the columns as MySQL only
1719
- # uses one index per table during the lookup.
1720
- #
1721
- # Adds the following methods for retrieval and query:
1722
- #
1723
- # +collection+ is a placeholder for the symbol passed as the +name+ argument, so
1724
- # <tt>has_and_belongs_to_many :categories</tt> would add among others <tt>categories.empty?</tt>.
1725
- #
1726
- # [<tt>collection</tt>]
1727
- # Returns a Relation of all the associated objects.
1728
- # An empty Relation is returned if none are found.
1729
- # [<tt>collection<<(object, ...)</tt>]
1730
- # Adds one or more objects to the collection by creating associations in the join table
1731
- # (<tt>collection.push</tt> and <tt>collection.concat</tt> are aliases to this method).
1732
- # Note that this operation instantly fires update SQL without waiting for the save or update call on the
1733
- # parent object, unless the parent object is a new record.
1734
- # [<tt>collection.delete(object, ...)</tt>]
1735
- # Removes one or more objects from the collection by removing their associations from the join table.
1736
- # This does not destroy the objects.
1737
- # [<tt>collection.destroy(object, ...)</tt>]
1738
- # Removes one or more objects from the collection by running destroy on each association in the join table, overriding any dependent option.
1739
- # This does not destroy the objects.
1740
- # [<tt>collection=objects</tt>]
1741
- # Replaces the collection's content by deleting and adding objects as appropriate.
1742
- # [<tt>collection_singular_ids</tt>]
1743
- # Returns an array of the associated objects' ids.
1744
- # [<tt>collection_singular_ids=ids</tt>]
1745
- # Replace the collection by the objects identified by the primary keys in +ids+.
1746
- # [<tt>collection.clear</tt>]
1747
- # Removes every object from the collection. This does not destroy the objects.
1748
- # [<tt>collection.empty?</tt>]
1749
- # Returns +true+ if there are no associated objects.
1750
- # [<tt>collection.size</tt>]
1751
- # Returns the number of associated objects.
1752
- # [<tt>collection.find(id)</tt>]
1753
- # Finds an associated object responding to the +id+ and that
1754
- # meets the condition that it has to be associated with this object.
1755
- # Uses the same rules as ActiveRecord::FinderMethods#find.
1756
- # [<tt>collection.exists?(...)</tt>]
1757
- # Checks whether an associated object with the given conditions exists.
1758
- # Uses the same rules as ActiveRecord::FinderMethods#exists?.
1759
- # [<tt>collection.build(attributes = {})</tt>]
1760
- # Returns a new object of the collection type that has been instantiated
1761
- # with +attributes+ and linked to this object through the join table, but has not yet been saved.
1762
- # [<tt>collection.create(attributes = {})</tt>]
1763
- # Returns a new object of the collection type that has been instantiated
1764
- # with +attributes+, linked to this object through the join table, and that has already been
1765
- # saved (if it passed the validation).
1766
- # [<tt>collection.reload</tt>]
1767
- # Returns a Relation of all of the associated objects, forcing a database read.
1768
- # An empty Relation is returned if none are found.
1769
- #
1770
- # ==== Example
1771
- #
1772
- # class Developer < ActiveRecord::Base
1773
- # has_and_belongs_to_many :projects
1774
- # end
1775
- #
1776
- # Declaring <tt>has_and_belongs_to_many :projects</tt> adds the following methods (and more):
1777
- #
1778
- # developer = Developer.find(11)
1779
- # project = Project.find(9)
1780
- #
1781
- # developer.projects
1782
- # developer.projects << project
1783
- # developer.projects.delete(project)
1784
- # developer.projects.destroy(project)
1785
- # developer.projects = [project]
1786
- # developer.project_ids
1787
- # developer.project_ids = [9]
1788
- # developer.projects.clear
1789
- # developer.projects.empty?
1790
- # developer.projects.size
1791
- # developer.projects.find(9)
1792
- # developer.projects.exists?(9)
1793
- # developer.projects.build # similar to Project.new(developer_id: 11)
1794
- # developer.projects.create # similar to Project.create(developer_id: 11)
1795
- # developer.projects.reload
1796
- #
1797
- # The declaration may include an +options+ hash to specialize the behavior of the association.
1798
- #
1799
- # ==== Scopes
1800
- #
1801
- # You can pass a second argument +scope+ as a callable (i.e. proc or
1802
- # lambda) to retrieve a specific set of records or customize the generated
1803
- # query when you access the associated collection.
1804
- #
1805
- # Scope examples:
1806
- # has_and_belongs_to_many :projects, -> { includes(:milestones, :manager) }
1807
- # has_and_belongs_to_many :categories, ->(post) {
1808
- # where("default_category = ?", post.default_category)
1809
- # }
1810
- #
1811
- # ==== Extensions
1812
- #
1813
- # The +extension+ argument allows you to pass a block into a
1814
- # has_and_belongs_to_many association. This is useful for adding new
1815
- # finders, creators, and other factory-type methods to be used as part of
1816
- # the association.
1817
- #
1818
- # Extension examples:
1819
- # has_and_belongs_to_many :contractors do
1820
- # def find_or_create_by_name(name)
1821
- # first_name, last_name = name.split(" ", 2)
1822
- # find_or_create_by(first_name: first_name, last_name: last_name)
1823
- # end
1824
- # end
1825
- #
1826
- # ==== Options
1827
- #
1828
- # [+:class_name+]
1829
- # Specify the class name of the association. Use it only if that name can't be inferred
1830
- # from the association name. So <tt>has_and_belongs_to_many :projects</tt> will by default be linked to the
1831
- # Project class, but if the real class name is SuperProject, you'll have to specify it with this option.
1832
- # [+:join_table+]
1833
- # Specify the name of the join table if the default based on lexical order isn't what you want.
1834
- # <b>WARNING:</b> If you're overwriting the table name of either class, the +table_name+ method
1835
- # MUST be declared underneath any #has_and_belongs_to_many declaration in order to work.
1836
- # [+:foreign_key+]
1837
- # Specify the foreign key used for the association. By default this is guessed to be the name
1838
- # of this class in lower-case and "_id" suffixed. So a Person class that makes
1839
- # a #has_and_belongs_to_many association to Project will use "person_id" as the
1840
- # default <tt>:foreign_key</tt>.
1841
- #
1842
- # Setting the <tt>:foreign_key</tt> option prevents automatic detection of the association's
1843
- # inverse, so it is generally a good idea to set the <tt>:inverse_of</tt> option as well.
1844
- # [+:association_foreign_key+]
1845
- # Specify the foreign key used for the association on the receiving side of the association.
1846
- # By default this is guessed to be the name of the associated class in lower-case and "_id" suffixed.
1847
- # So if a Person class makes a #has_and_belongs_to_many association to Project,
1848
- # the association will use "project_id" as the default <tt>:association_foreign_key</tt>.
1849
- # [+:validate+]
1850
- # When set to +true+, validates new objects added to association when saving the parent object. +true+ by default.
1851
- # If you want to ensure associated objects are revalidated on every update, use +validates_associated+.
1852
- # [+:autosave+]
1853
- # If true, always save the associated objects or destroy them if marked for destruction, when
1854
- # saving the parent object.
1855
- # If false, never save or destroy the associated objects.
1856
- # By default, only save associated objects that are new records.
1857
- #
1858
- # Note that NestedAttributes::ClassMethods#accepts_nested_attributes_for sets
1859
- # <tt>:autosave</tt> to <tt>true</tt>.
1860
- # [+:strict_loading+]
1861
- # Enforces strict loading every time an associated record is loaded through this association.
1862
- #
1863
- # Option examples:
1864
- # has_and_belongs_to_many :projects
1865
- # has_and_belongs_to_many :projects, -> { includes(:milestones, :manager) }
1866
- # has_and_belongs_to_many :nations, class_name: "Country"
1867
- # has_and_belongs_to_many :categories, join_table: "prods_cats"
1868
- # has_and_belongs_to_many :categories, -> { readonly }
1869
- # has_and_belongs_to_many :categories, strict_loading: true
1870
- def has_and_belongs_to_many(name, scope = nil, **options, &extension)
1871
- habtm_reflection = ActiveRecord::Reflection::HasAndBelongsToManyReflection.new(name, scope, options, self)
1872
-
1873
- builder = Builder::HasAndBelongsToMany.new name, self, options
1874
-
1875
- join_model = builder.through_model
1876
-
1877
- const_set join_model.name, join_model
1878
- private_constant join_model.name
1879
-
1880
- middle_reflection = builder.middle_reflection join_model
1881
-
1882
- Builder::HasMany.define_callbacks self, middle_reflection
1883
- Reflection.add_reflection self, middle_reflection.name, middle_reflection
1884
- middle_reflection.parent_reflection = habtm_reflection
1885
-
1886
- include Module.new {
1887
- class_eval <<-RUBY, __FILE__, __LINE__ + 1
1888
- def destroy_associations
1889
- association(:#{middle_reflection.name}).delete_all(:delete_all)
1890
- association(:#{name}).reset
1891
- super
1892
- end
1893
- RUBY
1894
- }
1895
-
1896
- hm_options = {}
1897
- hm_options[:through] = middle_reflection.name
1898
- hm_options[:source] = join_model.right_reflection.name
1899
-
1900
- [:before_add, :after_add, :before_remove, :after_remove, :autosave, :validate, :join_table, :class_name, :extend, :strict_loading].each do |k|
1901
- hm_options[k] = options[k] if options.key? k
1902
- end
1903
-
1904
- has_many name, scope, **hm_options, &extension
1905
- _reflections[name].parent_reflection = habtm_reflection
1906
- end
1907
- end
1908
- end
1909
- end