sorbet-rails 0.7.3 → 0.7.33

Sign up to get free protection for your applications and to get access to all the features.
Files changed (376) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +7 -0
  3. data/.github/workflows/ci-master.yml +30 -0
  4. data/.github/workflows/ci.yml +26 -0
  5. data/.github/workflows/publish-gem.yml +17 -0
  6. data/CONTRIBUTING.md +1 -2
  7. data/Gemfile +5 -9
  8. data/README.md +44 -6
  9. data/Rakefile +13 -24
  10. data/lib/sorbet-rails/active_record_rbi_formatter.rb +18 -15
  11. data/lib/sorbet-rails/dependent_gem_rbis/activerecord.rbi +4 -0
  12. data/lib/sorbet-rails/dependent_gem_rbis/parlour.rbi +1896 -0
  13. data/lib/sorbet-rails/gem_plugins/aasm_plugin.rb +55 -0
  14. data/lib/sorbet-rails/gem_plugins/attr_json_plugin.rb +137 -0
  15. data/lib/sorbet-rails/gem_plugins/flag_shih_tzu_plugin.rb +201 -0
  16. data/lib/sorbet-rails/gem_plugins/kaminari_plugin.rb +20 -0
  17. data/lib/sorbet-rails/gem_plugins/money_rails_plugin.rb +76 -0
  18. data/lib/sorbet-rails/gem_plugins/shrine_plugin.rb +1 -1
  19. data/lib/sorbet-rails/job_rbi_formatter.rb +1 -1
  20. data/lib/sorbet-rails/model_column_utils.rb +1 -1
  21. data/lib/sorbet-rails/model_plugins/active_record_assoc.rb +1 -1
  22. data/lib/sorbet-rails/model_plugins/active_record_querying.rb +38 -1
  23. data/lib/sorbet-rails/model_plugins/active_record_serialized_attribute.rb +3 -2
  24. data/lib/sorbet-rails/model_plugins/base.rb +8 -1
  25. data/lib/sorbet-rails/model_plugins/custom_finder_methods.rb +1 -1
  26. data/lib/sorbet-rails/model_plugins/plugins.rb +12 -0
  27. data/lib/sorbet-rails/model_rbi_formatter.rb +7 -4
  28. data/lib/sorbet-rails/model_utils.rb +14 -7
  29. data/lib/sorbet-rails/rails_mixins/custom_finder_methods.rb +12 -0
  30. data/lib/sorbet-rails/railtie.rb +1 -1
  31. data/lib/sorbet-rails/routes_rbi_formatter.rb +8 -0
  32. data/lib/sorbet-rails/tasks/rails_rbi.rake +12 -8
  33. data/sorbet-rails.gemspec +3 -3
  34. data/spec/bin/run_all_specs.sh +3 -4
  35. data/spec/bin/run_spec.sh +4 -1
  36. data/spec/custom_finder_methods_spec.rb +23 -0
  37. data/spec/generators/rails-template.rb +3 -20
  38. data/spec/generators/sorbet_test_cases.rb +26 -4
  39. data/spec/rails_helper.rb +6 -10
  40. data/spec/rake_rails_rbi_models_spec.rb +11 -4
  41. data/spec/sorbet_spec.rb +5 -1
  42. data/spec/support/v5.2/Gemfile +1 -3
  43. data/spec/support/v5.2/Gemfile.lock +88 -81
  44. data/spec/support/v5.2/app/controllers/application_controller.rb +1 -1
  45. data/spec/support/v5.2/app/mailers/application_mailer.rb +1 -1
  46. data/spec/support/v5.2/app/mailers/daily_prophet_mailer.rb +1 -1
  47. data/spec/support/v5.2/app/mailers/hogwarts_acceptance_mailer.rb +1 -1
  48. data/spec/support/v5.2/app/models/spell_book.rb +1 -1
  49. data/spec/support/v5.2/app/models/wand.rb +1 -1
  50. data/spec/support/v5.2/app/models/wizard.rb +1 -1
  51. data/spec/support/v5.2/config/environments/development.rb +1 -1
  52. data/spec/support/v5.2/config/environments/production.rb +1 -1
  53. data/spec/support/v5.2/config/environments/test.rb +1 -1
  54. data/spec/support/v5.2/config/initializers/wrap_parameters.rb +1 -1
  55. data/spec/support/v5.2/config/routes.rb +1 -1
  56. data/spec/support/v5.2/sorbet_test_cases.rb +26 -4
  57. data/spec/support/v6.0/Gemfile +1 -1
  58. data/spec/support/v6.0/Gemfile.lock +103 -96
  59. data/spec/support/v6.0/app/mailers/application_mailer.rb +1 -1
  60. data/spec/support/v6.0/config/environments/development.rb +1 -1
  61. data/spec/support/v6.0/config/environments/test.rb +1 -1
  62. data/spec/support/v6.0/config/initializers/cookies_serializer.rb +1 -1
  63. data/spec/support/v6.0/config/initializers/sorbet_rails.rb +1 -1
  64. data/spec/support/v6.0/config/routes.rb +1 -1
  65. data/spec/support/v6.0/sorbet_test_cases.rb +26 -4
  66. data/spec/support/{v5.1 → v6.1}/.gitignore +13 -2
  67. data/spec/support/{v5.1 → v6.1}/Gemfile +12 -15
  68. data/spec/support/v6.1/Gemfile.lock +203 -0
  69. data/spec/support/{v5.0 → v6.1}/README.md +0 -0
  70. data/spec/support/{v5.0 → v6.1}/Rakefile +0 -0
  71. data/spec/support/{v5.0 → v6.1}/app/assets/config/manifest.js +0 -0
  72. data/spec/support/{v5.0 → v6.1}/app/assets/images/.keep +0 -0
  73. data/spec/support/{v5.1 → v6.1}/app/assets/stylesheets/application.css +0 -0
  74. data/spec/support/{v5.0 → v6.1}/app/controllers/application_controller.rb +1 -2
  75. data/spec/support/{v5.0 → v6.1}/app/controllers/concerns/.keep +0 -0
  76. data/spec/support/{v5.0 → v6.1}/app/helpers/application_helper.rb +0 -0
  77. data/spec/support/{v5.0 → v6.1}/app/helpers/bar_helper.rb +0 -0
  78. data/spec/support/{v5.0 → v6.1}/app/helpers/baz_helper.rb +0 -0
  79. data/spec/support/{v5.0 → v6.1}/app/helpers/foo_helper.rb +0 -0
  80. data/spec/support/v6.1/app/jobs/application_job.rb +8 -0
  81. data/spec/support/{v5.0 → v6.1}/app/jobs/award_house_point_hourglasses.rb +0 -0
  82. data/spec/support/{v5.1 → v6.1}/app/mailers/application_mailer.rb +1 -1
  83. data/spec/support/{v5.0 → v6.1}/app/mailers/daily_prophet_mailer.rb +0 -0
  84. data/spec/support/{v5.0 → v6.1}/app/mailers/hogwarts_acceptance_mailer.rb +0 -0
  85. data/spec/support/{v5.0 → v6.1}/app/models/application_record.rb +0 -0
  86. data/spec/support/{v5.0 → v6.1}/app/models/concerns/.keep +0 -0
  87. data/spec/support/{v5.0 → v6.1}/app/models/concerns/mythical.rb +0 -0
  88. data/spec/support/{v5.1 → v6.1}/app/models/headmaster.rb +1 -1
  89. data/spec/support/{v5.1 → v6.1}/app/models/potion.rb +0 -0
  90. data/spec/support/{v5.1 → v6.1}/app/models/robe.rb +0 -0
  91. data/spec/support/{v5.0 → v6.1}/app/models/school.rb +1 -1
  92. data/spec/support/{v5.1 → v6.1}/app/models/spell.rb +0 -0
  93. data/spec/support/{v5.0 → v6.1}/app/models/spell_book.rb +0 -0
  94. data/spec/support/{v5.0 → v6.1}/app/models/squib.rb +0 -0
  95. data/spec/support/{v5.1 → v6.1}/app/models/subject.rb +0 -0
  96. data/spec/support/{v5.0 → v6.1}/app/models/wand.rb +0 -0
  97. data/spec/support/{v5.0 → v6.1}/app/models/wizard.rb +2 -1
  98. data/spec/support/{v5.1 → v6.1}/app/views/layouts/application.html.erb +2 -1
  99. data/spec/support/{v5.0 → v6.1}/app/views/layouts/mailer.html.erb +0 -0
  100. data/spec/support/{v5.0 → v6.1}/app/views/layouts/mailer.text.erb +0 -0
  101. data/spec/support/v6.1/bin/bundle +114 -0
  102. data/spec/support/{v5.0 → v6.1}/bin/rails +0 -0
  103. data/spec/support/{v5.0 → v6.1}/bin/rake +0 -0
  104. data/spec/support/{v5.1 → v6.1}/bin/setup +6 -11
  105. data/spec/support/{v5.1 → v6.1}/config/application.rb +8 -4
  106. data/spec/support/{v5.0 → v6.1}/config/boot.rb +0 -0
  107. data/spec/support/{v5.1 → v6.1}/config/database.yml +1 -1
  108. data/spec/support/{v5.0 → v6.1}/config/environment.rb +0 -0
  109. data/spec/support/{v5.1 → v6.1}/config/environments/development.rb +12 -4
  110. data/spec/support/{v5.1 → v6.1}/config/environments/production.rb +29 -7
  111. data/spec/support/{v5.1 → v6.1}/config/environments/test.rb +13 -7
  112. data/spec/support/{v5.0 → v6.1}/config/initializers/application_controller_renderer.rb +0 -0
  113. data/spec/support/{v5.0 → v6.1}/config/initializers/backtrace_silencers.rb +0 -0
  114. data/spec/support/v6.1/config/initializers/content_security_policy.rb +29 -0
  115. data/spec/support/{v5.1 → v6.1}/config/initializers/cookies_serializer.rb +1 -1
  116. data/spec/support/{v5.0 → v6.1}/config/initializers/filter_parameter_logging.rb +0 -0
  117. data/spec/support/{v5.0 → v6.1}/config/initializers/inflections.rb +0 -0
  118. data/spec/support/{v5.0 → v6.1}/config/initializers/mime_types.rb +0 -0
  119. data/spec/support/{v5.0 → v6.1}/config/initializers/sorbet_rails.rb +1 -1
  120. data/spec/support/{v5.0 → v6.1}/config/initializers/wrap_parameters.rb +1 -1
  121. data/spec/support/{v5.1 → v6.1}/config/locales/en.yml +1 -1
  122. data/spec/support/{v5.1 → v6.1}/config/puma.rb +8 -26
  123. data/spec/support/v6.1/config/routes.rb +5 -0
  124. data/spec/support/v6.1/config/storage.yml +34 -0
  125. data/spec/support/{v5.0 → v6.1}/config.ru +0 -0
  126. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000001_create_wizards.rb +2 -2
  127. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000002_create_wands.rb +2 -2
  128. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000003_create_spell_books.rb +2 -2
  129. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000004_add_more_column_types_to_wands.rb +2 -2
  130. data/spec/support/v6.1/db/migrate/20190620000005_add_broom_to_wizard.rb +6 -0
  131. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000006_add_more_enums_to_wizard.rb +2 -2
  132. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000007_add_type_to_wizard.rb +2 -2
  133. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000008_add_robe_to_wizard.rb +2 -2
  134. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000009_add_school.rb +2 -2
  135. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000010_add_subject.rb +2 -2
  136. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000011_add_subjects_wizards.rb +2 -2
  137. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000012_add_spell.rb +2 -2
  138. data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000013_add_spells_spell_books.rb +2 -2
  139. data/spec/support/{v5.0 → v6.1}/db/migrate/20190620000014_create_headmasters.rb +2 -2
  140. data/spec/support/{v5.0 → v6.1}/db/migrate/20190620000015_add_serialized_to_wizards.rb +2 -2
  141. data/spec/support/{v5.1 → v6.1}/db/schema.rb +14 -11
  142. data/spec/support/{v5.0 → v6.1}/db/seeds.rb +0 -0
  143. data/spec/support/{v5.0 → v6.1}/lib/assets/.keep +0 -0
  144. data/spec/support/{v5.0 → v6.1}/lib/mythical_rbi_plugin.rb +0 -0
  145. data/spec/support/{v5.0 → v6.1}/lib/tasks/.keep +0 -0
  146. data/spec/support/{v5.0 → v6.1}/log/.keep +0 -0
  147. data/spec/support/{v5.0 → v6.1}/sorbet_test_cases.rb +29 -4
  148. data/spec/support/{v5.0/tmp → v6.1/storage}/.keep +0 -0
  149. data/spec/support/{v5.0/vendor/assets/stylesheets → v6.1/tmp}/.keep +0 -0
  150. data/spec/support/{v5.1/app/assets/images → v6.1/tmp/pids}/.keep +0 -0
  151. data/spec/support/{v5.1/app/controllers/concerns → v6.1/vendor}/.keep +0 -0
  152. data/spec/test_data/v5.2/expected_active_record_base.rbi +10 -10
  153. data/spec/test_data/v5.2/expected_active_record_relation.rbi +12 -13
  154. data/spec/test_data/v5.2/expected_attachment.rbi +16 -10
  155. data/spec/test_data/v5.2/expected_blob.rbi +16 -10
  156. data/spec/test_data/v5.2/expected_habtm_subjects.rbi +3 -3
  157. data/spec/test_data/v5.2/expected_habtm_wizards.rbi +3 -3
  158. data/spec/test_data/v5.2/expected_headmaster.rbi +16 -10
  159. data/spec/test_data/v5.2/expected_internal_metadata.rbi +16 -10
  160. data/spec/test_data/v5.2/expected_potion.rbi +16 -10
  161. data/spec/test_data/v5.2/expected_robe.rbi +16 -10
  162. data/spec/test_data/v5.2/expected_routes.rbi +8 -0
  163. data/spec/test_data/v5.2/expected_schema_migration.rbi +16 -10
  164. data/spec/test_data/v5.2/expected_school.rbi +16 -10
  165. data/spec/test_data/v5.2/expected_spell/habtm_spell_books.rbi +16 -10
  166. data/spec/test_data/v5.2/expected_spell.rbi +16 -10
  167. data/spec/test_data/v5.2/expected_spell_book/habtm_spell_books.rbi +3 -3
  168. data/spec/test_data/v5.2/expected_spell_book/habtm_spells.rbi +16 -10
  169. data/spec/test_data/v5.2/expected_spell_book.rbi +16 -10
  170. data/spec/test_data/v5.2/expected_squib.rbi +18 -12
  171. data/spec/test_data/v5.2/expected_subject/habtm_wizards.rbi +16 -10
  172. data/spec/test_data/v5.2/expected_subject.rbi +16 -10
  173. data/spec/test_data/v5.2/expected_wand.rbi +16 -10
  174. data/spec/test_data/v5.2/expected_wizard/habtm_subjects.rbi +16 -10
  175. data/spec/test_data/v5.2/expected_wizard.rbi +18 -12
  176. data/spec/test_data/v5.2/expected_wizard_wo_spellbook.rbi +21 -15
  177. data/spec/test_data/v6.0/expected_active_record_base.rbi +10 -10
  178. data/spec/test_data/v6.0/expected_active_record_relation.rbi +12 -13
  179. data/spec/test_data/v6.0/expected_attachment.rbi +16 -10
  180. data/spec/test_data/v6.0/expected_blob.rbi +16 -10
  181. data/spec/test_data/v6.0/expected_habtm_subjects.rbi +3 -3
  182. data/spec/test_data/v6.0/expected_habtm_wizards.rbi +3 -3
  183. data/spec/test_data/v6.0/expected_headmaster.rbi +16 -10
  184. data/spec/test_data/v6.0/expected_internal_metadata.rbi +16 -10
  185. data/spec/test_data/v6.0/expected_potion.rbi +16 -10
  186. data/spec/test_data/v6.0/expected_robe.rbi +16 -10
  187. data/spec/test_data/v6.0/expected_routes.rbi +8 -0
  188. data/spec/test_data/v6.0/expected_schema_migration.rbi +16 -10
  189. data/spec/test_data/v6.0/expected_school.rbi +16 -10
  190. data/spec/test_data/v6.0/expected_spell/habtm_spell_books.rbi +16 -10
  191. data/spec/test_data/v6.0/expected_spell.rbi +16 -10
  192. data/spec/test_data/v6.0/expected_spell_book/habtm_spell_books.rbi +3 -3
  193. data/spec/test_data/v6.0/expected_spell_book/habtm_spells.rbi +16 -10
  194. data/spec/test_data/v6.0/expected_spell_book.rbi +16 -10
  195. data/spec/test_data/v6.0/expected_squib.rbi +18 -12
  196. data/spec/test_data/v6.0/expected_subject/habtm_wizards.rbi +16 -10
  197. data/spec/test_data/v6.0/expected_subject.rbi +16 -10
  198. data/spec/test_data/v6.0/expected_wand.rbi +16 -10
  199. data/spec/test_data/v6.0/expected_wizard/habtm_subjects.rbi +16 -10
  200. data/spec/test_data/v6.0/expected_wizard.rbi +18 -12
  201. data/spec/test_data/v6.0/expected_wizard_wo_spellbook.rbi +21 -15
  202. data/spec/test_data/{v5.1 → v6.1}/expected_active_record_base.rbi +16 -16
  203. data/spec/test_data/{v5.1 → v6.1}/expected_active_record_relation.rbi +28 -32
  204. data/spec/test_data/{v5.0 → v6.1}/expected_application_job.rbi +0 -0
  205. data/spec/test_data/{v5.0 → v6.1}/expected_application_mailer.rbi +0 -0
  206. data/spec/test_data/v6.1/expected_attachment.rbi +340 -0
  207. data/spec/test_data/{v5.0 → v6.1}/expected_award_house_point_hourglasses.rbi +0 -0
  208. data/spec/test_data/v6.1/expected_blob.rbi +388 -0
  209. data/spec/test_data/{v5.0 → v6.1}/expected_custom_application_job.rbi +0 -0
  210. data/spec/test_data/{v5.0 → v6.1}/expected_custom_application_mailer.rbi +0 -0
  211. data/spec/test_data/{v5.0 → v6.1}/expected_custom_award_house_point_hourglasses.rbi +0 -0
  212. data/spec/test_data/{v5.0 → v6.1}/expected_custom_daily_prophet_mailer.rbi +0 -0
  213. data/spec/test_data/{v5.0 → v6.1}/expected_custom_hogwarts_acceptance_mailer.rbi +0 -0
  214. data/spec/test_data/{v5.0 → v6.1}/expected_daily_prophet_mailer.rbi +0 -0
  215. data/spec/test_data/{v5.1 → v6.1}/expected_habtm_subjects.rbi +51 -3
  216. data/spec/test_data/{v5.1 → v6.1}/expected_habtm_wizards.rbi +51 -3
  217. data/spec/test_data/{v5.1 → v6.1}/expected_headmaster.rbi +42 -6
  218. data/spec/test_data/{v5.0 → v6.1}/expected_helpers.rbi +0 -0
  219. data/spec/test_data/{v5.0 → v6.1}/expected_helpers_with_application_and_devise_helpers.rbi +0 -0
  220. data/spec/test_data/{v5.0 → v6.1}/expected_hogwarts_acceptance_mailer.rbi +0 -0
  221. data/spec/test_data/{v5.1 → v6.1}/expected_internal_metadata.rbi +42 -6
  222. data/spec/test_data/{v5.0 → v6.1}/expected_no_routes.rbi +0 -0
  223. data/spec/test_data/{v5.1 → v6.1}/expected_potion.rbi +42 -6
  224. data/spec/test_data/v6.1/expected_record.rbi +301 -0
  225. data/spec/test_data/{v5.1 → v6.1}/expected_robe.rbi +42 -6
  226. data/spec/test_data/v6.1/expected_routes.rbi +175 -0
  227. data/spec/test_data/{v5.1 → v6.1}/expected_schema_migration.rbi +42 -6
  228. data/spec/test_data/{v5.1 → v6.1}/expected_school.rbi +42 -6
  229. data/spec/test_data/{v5.1 → v6.1}/expected_spell/habtm_spell_books.rbi +42 -6
  230. data/spec/test_data/{v5.1 → v6.1}/expected_spell.rbi +42 -6
  231. data/spec/test_data/{v5.1 → v6.1}/expected_spell_book/habtm_spell_books.rbi +51 -3
  232. data/spec/test_data/{v5.1 → v6.1}/expected_spell_book/habtm_spells.rbi +42 -6
  233. data/spec/test_data/{v5.1 → v6.1}/expected_spell_book.rbi +78 -6
  234. data/spec/test_data/{v5.1 → v6.1}/expected_squib.rbi +514 -64
  235. data/spec/test_data/{v5.0 → v6.1}/expected_srb_tc_output.txt +0 -0
  236. data/spec/test_data/{v5.1 → v6.1}/expected_subject/habtm_wizards.rbi +42 -6
  237. data/spec/test_data/{v5.1 → v6.1}/expected_subject.rbi +42 -6
  238. data/spec/test_data/v6.1/expected_variant_record.rbi +376 -0
  239. data/spec/test_data/{v5.1 → v6.1}/expected_wand.rbi +108 -6
  240. data/spec/test_data/{v5.1 → v6.1}/expected_wizard/habtm_subjects.rbi +42 -6
  241. data/spec/test_data/{v5.1 → v6.1}/expected_wizard.rbi +514 -64
  242. data/spec/test_data/{v5.1 → v6.1}/expected_wizard_wo_spellbook.rbi +508 -58
  243. metadata +271 -503
  244. data/.travis.yml +0 -42
  245. data/lib/sorbet-rails/type_assert/actionpack.rbi +0 -4
  246. data/spec/support/v5.0/.gitignore +0 -21
  247. data/spec/support/v5.0/Gemfile +0 -37
  248. data/spec/support/v5.0/Gemfile.lock +0 -158
  249. data/spec/support/v5.0/app/assets/stylesheets/application.css +0 -15
  250. data/spec/support/v5.0/app/jobs/application_job.rb +0 -3
  251. data/spec/support/v5.0/app/mailers/application_mailer.rb +0 -5
  252. data/spec/support/v5.0/app/models/headmaster.rb +0 -8
  253. data/spec/support/v5.0/app/models/potion.rb +0 -6
  254. data/spec/support/v5.0/app/models/robe.rb +0 -4
  255. data/spec/support/v5.0/app/models/spell.rb +0 -5
  256. data/spec/support/v5.0/app/models/subject.rb +0 -5
  257. data/spec/support/v5.0/app/views/layouts/application.html.erb +0 -13
  258. data/spec/support/v5.0/bin/bundle +0 -3
  259. data/spec/support/v5.0/bin/setup +0 -34
  260. data/spec/support/v5.0/bin/update +0 -29
  261. data/spec/support/v5.0/config/application.rb +0 -27
  262. data/spec/support/v5.0/config/database.yml +0 -25
  263. data/spec/support/v5.0/config/environments/development.rb +0 -48
  264. data/spec/support/v5.0/config/environments/production.rb +0 -75
  265. data/spec/support/v5.0/config/environments/test.rb +0 -43
  266. data/spec/support/v5.0/config/initializers/cookies_serializer.rb +0 -6
  267. data/spec/support/v5.0/config/initializers/new_framework_defaults.rb +0 -27
  268. data/spec/support/v5.0/config/initializers/session_store.rb +0 -4
  269. data/spec/support/v5.0/config/locales/en.yml +0 -23
  270. data/spec/support/v5.0/config/puma.rb +0 -48
  271. data/spec/support/v5.0/config/routes.rb +0 -5
  272. data/spec/support/v5.0/db/migrate/20190620000001_create_wizards.rb +0 -14
  273. data/spec/support/v5.0/db/migrate/20190620000002_create_wands.rb +0 -12
  274. data/spec/support/v5.0/db/migrate/20190620000003_create_spell_books.rb +0 -10
  275. data/spec/support/v5.0/db/migrate/20190620000004_add_more_column_types_to_wands.rb +0 -17
  276. data/spec/support/v5.0/db/migrate/20190620000005_add_broom_to_wizard.rb +0 -6
  277. data/spec/support/v5.0/db/migrate/20190620000006_add_more_enums_to_wizard.rb +0 -9
  278. data/spec/support/v5.0/db/migrate/20190620000007_add_type_to_wizard.rb +0 -6
  279. data/spec/support/v5.0/db/migrate/20190620000008_add_robe_to_wizard.rb +0 -8
  280. data/spec/support/v5.0/db/migrate/20190620000009_add_school.rb +0 -10
  281. data/spec/support/v5.0/db/migrate/20190620000010_add_subject.rb +0 -8
  282. data/spec/support/v5.0/db/migrate/20190620000011_add_subjects_wizards.rb +0 -8
  283. data/spec/support/v5.0/db/migrate/20190620000012_add_spell.rb +0 -8
  284. data/spec/support/v5.0/db/migrate/20190620000013_add_spells_spell_books.rb +0 -8
  285. data/spec/support/v5.0/db/schema.rb +0 -96
  286. data/spec/support/v5.0/public/robots.txt +0 -5
  287. data/spec/support/v5.1/Gemfile.lock +0 -165
  288. data/spec/support/v5.1/README.md +0 -24
  289. data/spec/support/v5.1/Rakefile +0 -6
  290. data/spec/support/v5.1/app/assets/config/manifest.js +0 -2
  291. data/spec/support/v5.1/app/controllers/application_controller.rb +0 -4
  292. data/spec/support/v5.1/app/helpers/application_helper.rb +0 -3
  293. data/spec/support/v5.1/app/helpers/bar_helper.rb +0 -3
  294. data/spec/support/v5.1/app/helpers/baz_helper.rb +0 -3
  295. data/spec/support/v5.1/app/helpers/foo_helper.rb +0 -3
  296. data/spec/support/v5.1/app/jobs/application_job.rb +0 -3
  297. data/spec/support/v5.1/app/jobs/award_house_point_hourglasses.rb +0 -12
  298. data/spec/support/v5.1/app/mailers/daily_prophet_mailer.rb +0 -9
  299. data/spec/support/v5.1/app/mailers/hogwarts_acceptance_mailer.rb +0 -29
  300. data/spec/support/v5.1/app/models/application_record.rb +0 -4
  301. data/spec/support/v5.1/app/models/concerns/.keep +0 -0
  302. data/spec/support/v5.1/app/models/concerns/mythical.rb +0 -11
  303. data/spec/support/v5.1/app/models/school.rb +0 -5
  304. data/spec/support/v5.1/app/models/spell_book.rb +0 -18
  305. data/spec/support/v5.1/app/models/squib.rb +0 -6
  306. data/spec/support/v5.1/app/models/wand.rb +0 -19
  307. data/spec/support/v5.1/app/models/wizard.rb +0 -65
  308. data/spec/support/v5.1/app/views/layouts/mailer.html.erb +0 -13
  309. data/spec/support/v5.1/app/views/layouts/mailer.text.erb +0 -1
  310. data/spec/support/v5.1/bin/bundle +0 -3
  311. data/spec/support/v5.1/bin/rails +0 -4
  312. data/spec/support/v5.1/bin/rake +0 -4
  313. data/spec/support/v5.1/bin/update +0 -29
  314. data/spec/support/v5.1/bin/yarn +0 -11
  315. data/spec/support/v5.1/config/boot.rb +0 -4
  316. data/spec/support/v5.1/config/environment.rb +0 -6
  317. data/spec/support/v5.1/config/initializers/application_controller_renderer.rb +0 -9
  318. data/spec/support/v5.1/config/initializers/backtrace_silencers.rb +0 -8
  319. data/spec/support/v5.1/config/initializers/filter_parameter_logging.rb +0 -5
  320. data/spec/support/v5.1/config/initializers/inflections.rb +0 -17
  321. data/spec/support/v5.1/config/initializers/mime_types.rb +0 -5
  322. data/spec/support/v5.1/config/initializers/sorbet_rails.rb +0 -3
  323. data/spec/support/v5.1/config/initializers/wrap_parameters.rb +0 -15
  324. data/spec/support/v5.1/config/routes.rb +0 -5
  325. data/spec/support/v5.1/config.ru +0 -5
  326. data/spec/support/v5.1/db/migrate/20190620000005_add_broom_to_wizard.rb +0 -6
  327. data/spec/support/v5.1/db/migrate/20190620000014_create_headmasters.rb +0 -9
  328. data/spec/support/v5.1/db/migrate/20190620000015_add_serialized_to_wizards.rb +0 -9
  329. data/spec/support/v5.1/db/seeds.rb +0 -8
  330. data/spec/support/v5.1/lib/assets/.keep +0 -0
  331. data/spec/support/v5.1/lib/mythical_rbi_plugin.rb +0 -16
  332. data/spec/support/v5.1/lib/tasks/.keep +0 -0
  333. data/spec/support/v5.1/log/.keep +0 -0
  334. data/spec/support/v5.1/package.json +0 -5
  335. data/spec/support/v5.1/public/robots.txt +0 -1
  336. data/spec/support/v5.1/sorbet_test_cases.rb +0 -409
  337. data/spec/support/v5.1/tmp/.keep +0 -0
  338. data/spec/support/v5.1/vendor/.keep +0 -0
  339. data/spec/test_data/v5.0/expected_active_record_base.rbi +0 -113
  340. data/spec/test_data/v5.0/expected_active_record_relation.rbi +0 -199
  341. data/spec/test_data/v5.0/expected_habtm_subjects.rbi +0 -660
  342. data/spec/test_data/v5.0/expected_habtm_wizards.rbi +0 -660
  343. data/spec/test_data/v5.0/expected_headmaster.rbi +0 -328
  344. data/spec/test_data/v5.0/expected_internal_metadata.rbi +0 -298
  345. data/spec/test_data/v5.0/expected_potion.rbi +0 -280
  346. data/spec/test_data/v5.0/expected_robe.rbi +0 -301
  347. data/spec/test_data/v5.0/expected_routes.rbi +0 -27
  348. data/spec/test_data/v5.0/expected_schema_migration.rbi +0 -271
  349. data/spec/test_data/v5.0/expected_school.rbi +0 -301
  350. data/spec/test_data/v5.0/expected_spell/habtm_spell_books.rbi +0 -319
  351. data/spec/test_data/v5.0/expected_spell.rbi +0 -292
  352. data/spec/test_data/v5.0/expected_spell_book/habtm_spell_books.rbi +0 -637
  353. data/spec/test_data/v5.0/expected_spell_book/habtm_spells.rbi +0 -319
  354. data/spec/test_data/v5.0/expected_spell_book.rbi +0 -415
  355. data/spec/test_data/v5.0/expected_squib.rbi +0 -832
  356. data/spec/test_data/v5.0/expected_subject/habtm_wizards.rbi +0 -319
  357. data/spec/test_data/v5.0/expected_subject.rbi +0 -292
  358. data/spec/test_data/v5.0/expected_wand.rbi +0 -497
  359. data/spec/test_data/v5.0/expected_wizard/habtm_subjects.rbi +0 -319
  360. data/spec/test_data/v5.0/expected_wizard.rbi +0 -908
  361. data/spec/test_data/v5.0/expected_wizard_wo_spellbook.rbi +0 -902
  362. data/spec/test_data/v5.1/expected_application_job.rbi +0 -20
  363. data/spec/test_data/v5.1/expected_application_mailer.rbi +0 -5
  364. data/spec/test_data/v5.1/expected_award_house_point_hourglasses.rbi +0 -20
  365. data/spec/test_data/v5.1/expected_custom_application_job.rbi +0 -21
  366. data/spec/test_data/v5.1/expected_custom_application_mailer.rbi +0 -6
  367. data/spec/test_data/v5.1/expected_custom_award_house_point_hourglasses.rbi +0 -21
  368. data/spec/test_data/v5.1/expected_custom_daily_prophet_mailer.rbi +0 -8
  369. data/spec/test_data/v5.1/expected_custom_hogwarts_acceptance_mailer.rbi +0 -21
  370. data/spec/test_data/v5.1/expected_daily_prophet_mailer.rbi +0 -7
  371. data/spec/test_data/v5.1/expected_helpers.rbi +0 -27
  372. data/spec/test_data/v5.1/expected_helpers_with_application_and_devise_helpers.rbi +0 -34
  373. data/spec/test_data/v5.1/expected_hogwarts_acceptance_mailer.rbi +0 -20
  374. data/spec/test_data/v5.1/expected_no_routes.rbi +0 -4
  375. data/spec/test_data/v5.1/expected_routes.rbi +0 -27
  376. data/spec/test_data/v5.1/expected_srb_tc_output.txt +0 -1
@@ -28,7 +28,7 @@ module ActiveRecord::SchemaMigration::CustomFinderMethods
28
28
  sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[ActiveRecord::SchemaMigration]) }
29
29
  def find_n(*args); end
30
30
 
31
- sig { params(id: Integer).returns(T.nilable(ActiveRecord::SchemaMigration)) }
31
+ sig { params(id: T.nilable(Integer)).returns(T.nilable(ActiveRecord::SchemaMigration)) }
32
32
  def find_by_id(id); end
33
33
 
34
34
  sig { params(id: Integer).returns(ActiveRecord::SchemaMigration) }
@@ -50,7 +50,7 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
50
50
  def unscoped(&block); end
51
51
 
52
52
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
53
- def select(*args); end
53
+ def reselect(*args); end
54
54
 
55
55
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
56
56
  def order(*args); end
@@ -85,6 +85,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
85
85
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
86
86
  def preload(*args); end
87
87
 
88
+ sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
89
+ def extract_associated(*args); end
90
+
88
91
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
89
92
  def eager_load(*args); end
90
93
 
@@ -121,12 +124,27 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
121
124
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
122
125
  def unscope(*args); end
123
126
 
127
+ sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
128
+ def optimizer_hints(*args); end
129
+
124
130
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
125
131
  def merge(*args); end
126
132
 
127
133
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
128
134
  def except(*args); end
129
135
 
136
+ sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
137
+ def only(*args); end
138
+
139
+ sig { params(block: T.proc.params(e: ActiveRecord::SchemaMigration).returns(T::Boolean)).returns(T::Array[ActiveRecord::SchemaMigration]) }
140
+ def select(&block); end
141
+
142
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
143
+ def select_columns(*args); end
144
+
145
+ sig { params(args: Symbol).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
146
+ def where_missing(*args); end
147
+
130
148
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
131
149
  def extending(*args, &block); end
132
150
 
@@ -151,7 +169,7 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
151
169
  def unscoped(&block); end
152
170
 
153
171
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
154
- def select(*args); end
172
+ def reselect(*args); end
155
173
 
156
174
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
157
175
  def order(*args); end
@@ -186,6 +204,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
186
204
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
187
205
  def preload(*args); end
188
206
 
207
+ sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
208
+ def extract_associated(*args); end
209
+
189
210
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
190
211
  def eager_load(*args); end
191
212
 
@@ -222,12 +243,27 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
222
243
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
223
244
  def unscope(*args); end
224
245
 
246
+ sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
247
+ def optimizer_hints(*args); end
248
+
225
249
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
226
250
  def merge(*args); end
227
251
 
228
252
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
229
253
  def except(*args); end
230
254
 
255
+ sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
256
+ def only(*args); end
257
+
258
+ sig { params(block: T.proc.params(e: ActiveRecord::SchemaMigration).returns(T::Boolean)).returns(T::Array[ActiveRecord::SchemaMigration]) }
259
+ def select(&block); end
260
+
261
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
262
+ def select_columns(*args); end
263
+
264
+ sig { params(args: Symbol).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
265
+ def where_missing(*args); end
266
+
231
267
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
232
268
  def extending(*args, &block); end
233
269
 
@@ -248,20 +284,20 @@ class ActiveRecord::SchemaMigration::ActiveRecord_Relation < ActiveRecord::Relat
248
284
  include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
249
285
  include ActiveRecord::SchemaMigration::CustomFinderMethods
250
286
  include ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
251
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
287
+ Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
252
288
  end
253
289
 
254
290
  class ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
255
291
  include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
256
292
  include ActiveRecord::SchemaMigration::CustomFinderMethods
257
293
  include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
258
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
294
+ Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
259
295
  end
260
296
 
261
297
  class ActiveRecord::SchemaMigration::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
262
298
  include ActiveRecord::SchemaMigration::CustomFinderMethods
263
299
  include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
264
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
300
+ Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
265
301
 
266
302
  sig { params(records: T.any(ActiveRecord::SchemaMigration, T::Array[ActiveRecord::SchemaMigration])).returns(T.self_type) }
267
303
  def <<(*records); end
@@ -57,7 +57,7 @@ module School::CustomFinderMethods
57
57
  sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[School]) }
58
58
  def find_n(*args); end
59
59
 
60
- sig { params(id: Integer).returns(T.nilable(School)) }
60
+ sig { params(id: T.nilable(Integer)).returns(T.nilable(School)) }
61
61
  def find_by_id(id); end
62
62
 
63
63
  sig { params(id: Integer).returns(School) }
@@ -80,7 +80,7 @@ module School::QueryMethodsReturningRelation
80
80
  def unscoped(&block); end
81
81
 
82
82
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
83
- def select(*args); end
83
+ def reselect(*args); end
84
84
 
85
85
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
86
86
  def order(*args); end
@@ -115,6 +115,9 @@ module School::QueryMethodsReturningRelation
115
115
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
116
116
  def preload(*args); end
117
117
 
118
+ sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
119
+ def extract_associated(*args); end
120
+
118
121
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
119
122
  def eager_load(*args); end
120
123
 
@@ -151,12 +154,27 @@ module School::QueryMethodsReturningRelation
151
154
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
152
155
  def unscope(*args); end
153
156
 
157
+ sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
158
+ def optimizer_hints(*args); end
159
+
154
160
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
155
161
  def merge(*args); end
156
162
 
157
163
  sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
158
164
  def except(*args); end
159
165
 
166
+ sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
167
+ def only(*args); end
168
+
169
+ sig { params(block: T.proc.params(e: School).returns(T::Boolean)).returns(T::Array[School]) }
170
+ def select(&block); end
171
+
172
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(School::ActiveRecord_Relation) }
173
+ def select_columns(*args); end
174
+
175
+ sig { params(args: Symbol).returns(School::ActiveRecord_Relation) }
176
+ def where_missing(*args); end
177
+
160
178
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
161
179
  def extending(*args, &block); end
162
180
 
@@ -181,7 +199,7 @@ module School::QueryMethodsReturningAssociationRelation
181
199
  def unscoped(&block); end
182
200
 
183
201
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
184
- def select(*args); end
202
+ def reselect(*args); end
185
203
 
186
204
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
187
205
  def order(*args); end
@@ -216,6 +234,9 @@ module School::QueryMethodsReturningAssociationRelation
216
234
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
217
235
  def preload(*args); end
218
236
 
237
+ sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
238
+ def extract_associated(*args); end
239
+
219
240
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
220
241
  def eager_load(*args); end
221
242
 
@@ -252,12 +273,27 @@ module School::QueryMethodsReturningAssociationRelation
252
273
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
253
274
  def unscope(*args); end
254
275
 
276
+ sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
277
+ def optimizer_hints(*args); end
278
+
255
279
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
256
280
  def merge(*args); end
257
281
 
258
282
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
259
283
  def except(*args); end
260
284
 
285
+ sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
286
+ def only(*args); end
287
+
288
+ sig { params(block: T.proc.params(e: School).returns(T::Boolean)).returns(T::Array[School]) }
289
+ def select(&block); end
290
+
291
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(School::ActiveRecord_AssociationRelation) }
292
+ def select_columns(*args); end
293
+
294
+ sig { params(args: Symbol).returns(School::ActiveRecord_AssociationRelation) }
295
+ def where_missing(*args); end
296
+
261
297
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
262
298
  def extending(*args, &block); end
263
299
 
@@ -278,20 +314,20 @@ class School::ActiveRecord_Relation < ActiveRecord::Relation
278
314
  include School::ActiveRelation_WhereNot
279
315
  include School::CustomFinderMethods
280
316
  include School::QueryMethodsReturningRelation
281
- Elem = type_member(fixed: School)
317
+ Elem = type_member {{fixed: School}}
282
318
  end
283
319
 
284
320
  class School::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
285
321
  include School::ActiveRelation_WhereNot
286
322
  include School::CustomFinderMethods
287
323
  include School::QueryMethodsReturningAssociationRelation
288
- Elem = type_member(fixed: School)
324
+ Elem = type_member {{fixed: School}}
289
325
  end
290
326
 
291
327
  class School::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
292
328
  include School::CustomFinderMethods
293
329
  include School::QueryMethodsReturningAssociationRelation
294
- Elem = type_member(fixed: School)
330
+ Elem = type_member {{fixed: School}}
295
331
 
296
332
  sig { params(records: T.any(School, T::Array[School])).returns(T.self_type) }
297
333
  def <<(*records); end
@@ -75,7 +75,7 @@ module Spell::HABTM_SpellBooks::CustomFinderMethods
75
75
  sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[Spell::HABTM_SpellBooks]) }
76
76
  def find_n(*args); end
77
77
 
78
- sig { params(id: Integer).returns(T.nilable(Spell::HABTM_SpellBooks)) }
78
+ sig { params(id: T.nilable(Integer)).returns(T.nilable(Spell::HABTM_SpellBooks)) }
79
79
  def find_by_id(id); end
80
80
 
81
81
  sig { params(id: Integer).returns(Spell::HABTM_SpellBooks) }
@@ -98,7 +98,7 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
98
98
  def unscoped(&block); end
99
99
 
100
100
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
101
- def select(*args); end
101
+ def reselect(*args); end
102
102
 
103
103
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
104
104
  def order(*args); end
@@ -133,6 +133,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
133
133
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
134
134
  def preload(*args); end
135
135
 
136
+ sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
137
+ def extract_associated(*args); end
138
+
136
139
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
137
140
  def eager_load(*args); end
138
141
 
@@ -169,12 +172,27 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
169
172
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
170
173
  def unscope(*args); end
171
174
 
175
+ sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
176
+ def optimizer_hints(*args); end
177
+
172
178
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
173
179
  def merge(*args); end
174
180
 
175
181
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
176
182
  def except(*args); end
177
183
 
184
+ sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
185
+ def only(*args); end
186
+
187
+ sig { params(block: T.proc.params(e: Spell::HABTM_SpellBooks).returns(T::Boolean)).returns(T::Array[Spell::HABTM_SpellBooks]) }
188
+ def select(&block); end
189
+
190
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
191
+ def select_columns(*args); end
192
+
193
+ sig { params(args: Symbol).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
194
+ def where_missing(*args); end
195
+
178
196
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
179
197
  def extending(*args, &block); end
180
198
 
@@ -199,7 +217,7 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
199
217
  def unscoped(&block); end
200
218
 
201
219
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
202
- def select(*args); end
220
+ def reselect(*args); end
203
221
 
204
222
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
205
223
  def order(*args); end
@@ -234,6 +252,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
234
252
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
235
253
  def preload(*args); end
236
254
 
255
+ sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
256
+ def extract_associated(*args); end
257
+
237
258
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
238
259
  def eager_load(*args); end
239
260
 
@@ -270,12 +291,27 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
270
291
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
271
292
  def unscope(*args); end
272
293
 
294
+ sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
295
+ def optimizer_hints(*args); end
296
+
273
297
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
274
298
  def merge(*args); end
275
299
 
276
300
  sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
277
301
  def except(*args); end
278
302
 
303
+ sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
304
+ def only(*args); end
305
+
306
+ sig { params(block: T.proc.params(e: Spell::HABTM_SpellBooks).returns(T::Boolean)).returns(T::Array[Spell::HABTM_SpellBooks]) }
307
+ def select(&block); end
308
+
309
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
310
+ def select_columns(*args); end
311
+
312
+ sig { params(args: Symbol).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
313
+ def where_missing(*args); end
314
+
279
315
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
280
316
  def extending(*args, &block); end
281
317
 
@@ -296,20 +332,20 @@ class Spell::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relation
296
332
  include Spell::HABTM_SpellBooks::ActiveRelation_WhereNot
297
333
  include Spell::HABTM_SpellBooks::CustomFinderMethods
298
334
  include Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
299
- Elem = type_member(fixed: Spell::HABTM_SpellBooks)
335
+ Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
300
336
  end
301
337
 
302
338
  class Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
303
339
  include Spell::HABTM_SpellBooks::ActiveRelation_WhereNot
304
340
  include Spell::HABTM_SpellBooks::CustomFinderMethods
305
341
  include Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
306
- Elem = type_member(fixed: Spell::HABTM_SpellBooks)
342
+ Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
307
343
  end
308
344
 
309
345
  class Spell::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
310
346
  include Spell::HABTM_SpellBooks::CustomFinderMethods
311
347
  include Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
312
- Elem = type_member(fixed: Spell::HABTM_SpellBooks)
348
+ Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
313
349
 
314
350
  sig { params(records: T.any(Spell::HABTM_SpellBooks, T::Array[Spell::HABTM_SpellBooks])).returns(T.self_type) }
315
351
  def <<(*records); end
@@ -48,7 +48,7 @@ module Spell::CustomFinderMethods
48
48
  sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[Spell]) }
49
49
  def find_n(*args); end
50
50
 
51
- sig { params(id: Integer).returns(T.nilable(Spell)) }
51
+ sig { params(id: T.nilable(Integer)).returns(T.nilable(Spell)) }
52
52
  def find_by_id(id); end
53
53
 
54
54
  sig { params(id: Integer).returns(Spell) }
@@ -71,7 +71,7 @@ module Spell::QueryMethodsReturningRelation
71
71
  def unscoped(&block); end
72
72
 
73
73
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
74
- def select(*args); end
74
+ def reselect(*args); end
75
75
 
76
76
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
77
77
  def order(*args); end
@@ -106,6 +106,9 @@ module Spell::QueryMethodsReturningRelation
106
106
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
107
107
  def preload(*args); end
108
108
 
109
+ sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
110
+ def extract_associated(*args); end
111
+
109
112
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
110
113
  def eager_load(*args); end
111
114
 
@@ -142,12 +145,27 @@ module Spell::QueryMethodsReturningRelation
142
145
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
143
146
  def unscope(*args); end
144
147
 
148
+ sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
149
+ def optimizer_hints(*args); end
150
+
145
151
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
146
152
  def merge(*args); end
147
153
 
148
154
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
149
155
  def except(*args); end
150
156
 
157
+ sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
158
+ def only(*args); end
159
+
160
+ sig { params(block: T.proc.params(e: Spell).returns(T::Boolean)).returns(T::Array[Spell]) }
161
+ def select(&block); end
162
+
163
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::ActiveRecord_Relation) }
164
+ def select_columns(*args); end
165
+
166
+ sig { params(args: Symbol).returns(Spell::ActiveRecord_Relation) }
167
+ def where_missing(*args); end
168
+
151
169
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::ActiveRecord_Relation) }
152
170
  def extending(*args, &block); end
153
171
 
@@ -172,7 +190,7 @@ module Spell::QueryMethodsReturningAssociationRelation
172
190
  def unscoped(&block); end
173
191
 
174
192
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
175
- def select(*args); end
193
+ def reselect(*args); end
176
194
 
177
195
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
178
196
  def order(*args); end
@@ -207,6 +225,9 @@ module Spell::QueryMethodsReturningAssociationRelation
207
225
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
208
226
  def preload(*args); end
209
227
 
228
+ sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
229
+ def extract_associated(*args); end
230
+
210
231
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
211
232
  def eager_load(*args); end
212
233
 
@@ -243,12 +264,27 @@ module Spell::QueryMethodsReturningAssociationRelation
243
264
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
244
265
  def unscope(*args); end
245
266
 
267
+ sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
268
+ def optimizer_hints(*args); end
269
+
246
270
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
247
271
  def merge(*args); end
248
272
 
249
273
  sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
250
274
  def except(*args); end
251
275
 
276
+ sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
277
+ def only(*args); end
278
+
279
+ sig { params(block: T.proc.params(e: Spell).returns(T::Boolean)).returns(T::Array[Spell]) }
280
+ def select(&block); end
281
+
282
+ sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::ActiveRecord_AssociationRelation) }
283
+ def select_columns(*args); end
284
+
285
+ sig { params(args: Symbol).returns(Spell::ActiveRecord_AssociationRelation) }
286
+ def where_missing(*args); end
287
+
252
288
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::ActiveRecord_AssociationRelation) }
253
289
  def extending(*args, &block); end
254
290
 
@@ -269,20 +305,20 @@ class Spell::ActiveRecord_Relation < ActiveRecord::Relation
269
305
  include Spell::ActiveRelation_WhereNot
270
306
  include Spell::CustomFinderMethods
271
307
  include Spell::QueryMethodsReturningRelation
272
- Elem = type_member(fixed: Spell)
308
+ Elem = type_member {{fixed: Spell}}
273
309
  end
274
310
 
275
311
  class Spell::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
276
312
  include Spell::ActiveRelation_WhereNot
277
313
  include Spell::CustomFinderMethods
278
314
  include Spell::QueryMethodsReturningAssociationRelation
279
- Elem = type_member(fixed: Spell)
315
+ Elem = type_member {{fixed: Spell}}
280
316
  end
281
317
 
282
318
  class Spell::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
283
319
  include Spell::CustomFinderMethods
284
320
  include Spell::QueryMethodsReturningAssociationRelation
285
- Elem = type_member(fixed: Spell)
321
+ Elem = type_member {{fixed: Spell}}
286
322
 
287
323
  sig { params(records: T.any(Spell, T::Array[Spell])).returns(T.self_type) }
288
324
  def <<(*records); end
@@ -56,6 +56,9 @@ class SpellBook::HABTM_SpellBooks < ActiveRecord::Base
56
56
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
57
57
  def self.select(*args); end
58
58
 
59
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
60
+ def self.reselect(*args); end
61
+
59
62
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
60
63
  def self.order(*args); end
61
64
 
@@ -89,6 +92,9 @@ class SpellBook::HABTM_SpellBooks < ActiveRecord::Base
89
92
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
90
93
  def self.preload(*args); end
91
94
 
95
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
96
+ def self.extract_associated(*args); end
97
+
92
98
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
93
99
  def self.eager_load(*args); end
94
100
 
@@ -125,12 +131,18 @@ class SpellBook::HABTM_SpellBooks < ActiveRecord::Base
125
131
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
126
132
  def self.unscope(*args); end
127
133
 
134
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
135
+ def self.optimizer_hints(*args); end
136
+
128
137
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
129
138
  def self.merge(*args); end
130
139
 
131
140
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
132
141
  def self.except(*args); end
133
142
 
143
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
144
+ def self.only(*args); end
145
+
134
146
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
135
147
  def self.extending(*args, &block); end
136
148
 
@@ -159,7 +171,7 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
159
171
  include Enumerable
160
172
  extend T::Sig
161
173
  extend T::Generic
162
- Elem = type_member(fixed: SpellBook::HABTM_SpellBooks)
174
+ Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
163
175
 
164
176
  sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
165
177
  def all; end
@@ -170,6 +182,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
170
182
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
171
183
  def select(*args); end
172
184
 
185
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
186
+ def reselect(*args); end
187
+
173
188
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
174
189
  def order(*args); end
175
190
 
@@ -203,6 +218,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
203
218
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
204
219
  def preload(*args); end
205
220
 
221
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
222
+ def extract_associated(*args); end
223
+
206
224
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
207
225
  def eager_load(*args); end
208
226
 
@@ -239,12 +257,18 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
239
257
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
240
258
  def unscope(*args); end
241
259
 
260
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
261
+ def optimizer_hints(*args); end
262
+
242
263
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
243
264
  def merge(*args); end
244
265
 
245
266
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
246
267
  def except(*args); end
247
268
 
269
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
270
+ def only(*args); end
271
+
248
272
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
249
273
  def extending(*args, &block); end
250
274
 
@@ -273,7 +297,7 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
273
297
  include Enumerable
274
298
  extend T::Sig
275
299
  extend T::Generic
276
- Elem = type_member(fixed: SpellBook::HABTM_SpellBooks)
300
+ Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
277
301
 
278
302
  sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
279
303
  def all; end
@@ -284,6 +308,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
284
308
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
285
309
  def select(*args); end
286
310
 
311
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
312
+ def reselect(*args); end
313
+
287
314
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
288
315
  def order(*args); end
289
316
 
@@ -317,6 +344,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
317
344
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
318
345
  def preload(*args); end
319
346
 
347
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
348
+ def extract_associated(*args); end
349
+
320
350
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
321
351
  def eager_load(*args); end
322
352
 
@@ -353,12 +383,18 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
353
383
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
354
384
  def unscope(*args); end
355
385
 
386
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
387
+ def optimizer_hints(*args); end
388
+
356
389
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
357
390
  def merge(*args); end
358
391
 
359
392
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
360
393
  def except(*args); end
361
394
 
395
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
396
+ def only(*args); end
397
+
362
398
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
363
399
  def extending(*args, &block); end
364
400
 
@@ -457,7 +493,7 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
457
493
  include Enumerable
458
494
  extend T::Sig
459
495
  extend T::Generic
460
- Elem = type_member(fixed: SpellBook::HABTM_SpellBooks)
496
+ Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
461
497
 
462
498
  sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
463
499
  def all; end
@@ -468,6 +504,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
468
504
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
469
505
  def select(*args); end
470
506
 
507
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
508
+ def reselect(*args); end
509
+
471
510
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
472
511
  def order(*args); end
473
512
 
@@ -501,6 +540,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
501
540
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
502
541
  def preload(*args); end
503
542
 
543
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
544
+ def extract_associated(*args); end
545
+
504
546
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
505
547
  def eager_load(*args); end
506
548
 
@@ -537,12 +579,18 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
537
579
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
538
580
  def unscope(*args); end
539
581
 
582
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
583
+ def optimizer_hints(*args); end
584
+
540
585
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
541
586
  def merge(*args); end
542
587
 
543
588
  sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
544
589
  def except(*args); end
545
590
 
591
+ sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
592
+ def only(*args); end
593
+
546
594
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
547
595
  def extending(*args, &block); end
548
596