sorbet-rails 0.7.32 → 0.7.34

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci-master.yml +1 -1
  3. data/.github/workflows/ci.yml +1 -1
  4. data/.github/workflows/publish-gem.yml +9 -19
  5. data/CONTRIBUTING.md +1 -0
  6. data/Gemfile +4 -0
  7. data/README.md +1 -3
  8. data/Rakefile +27 -1
  9. data/lib/sorbet-rails/active_record_rbi_formatter.rb +4 -4
  10. data/lib/sorbet-rails/model_plugins/active_record_querying.rb +14 -0
  11. data/lib/sorbet-rails/model_rbi_formatter.rb +3 -3
  12. data/lib/sorbet-rails/rails_mixins/active_record_overrides.rb +1 -1
  13. data/lib/sorbet-rails/tasks/rails_rbi.rake +15 -0
  14. data/sorbet-rails.gemspec +2 -2
  15. data/spec/bin/run_all_specs.sh +1 -0
  16. data/spec/generators/rails-template.rb +2 -7
  17. data/spec/rails_helper.rb +2 -0
  18. data/spec/rake_rails_rbi_models_spec.rb +1 -1
  19. data/spec/support/v5.2/Gemfile.lock +76 -67
  20. data/spec/support/v5.2/sorbet_test_cases.rb +8 -0
  21. data/spec/support/v6.0/Gemfile.lock +93 -85
  22. data/spec/support/v6.0/sorbet_test_cases.rb +8 -0
  23. data/spec/support/v6.1/Gemfile +1 -1
  24. data/spec/support/v6.1/Gemfile.lock +115 -108
  25. data/spec/support/v6.1/sorbet_test_cases.rb +8 -0
  26. data/spec/support/v7.0/.gitattributes +7 -0
  27. data/spec/support/v7.0/.gitignore +35 -0
  28. data/spec/support/v7.0/Gemfile +48 -0
  29. data/spec/support/v7.0/Gemfile.lock +218 -0
  30. data/spec/support/v7.0/README.md +24 -0
  31. data/spec/support/v7.0/Rakefile +6 -0
  32. data/spec/support/v7.0/app/assets/images/.keep +0 -0
  33. data/spec/support/v7.0/app/assets/stylesheets/application.css +1 -0
  34. data/spec/support/v7.0/app/controllers/application_controller.rb +3 -0
  35. data/spec/support/v7.0/app/controllers/concerns/.keep +0 -0
  36. data/spec/support/v7.0/app/helpers/application_helper.rb +3 -0
  37. data/spec/support/v7.0/app/helpers/bar_helper.rb +3 -0
  38. data/spec/support/v7.0/app/helpers/baz_helper.rb +3 -0
  39. data/spec/support/v7.0/app/helpers/foo_helper.rb +3 -0
  40. data/spec/support/v7.0/app/jobs/application_job.rb +8 -0
  41. data/spec/support/v7.0/app/jobs/award_house_point_hourglasses.rb +12 -0
  42. data/spec/support/v7.0/app/mailers/application_mailer.rb +5 -0
  43. data/spec/support/v7.0/app/mailers/daily_prophet_mailer.rb +9 -0
  44. data/spec/support/v7.0/app/mailers/hogwarts_acceptance_mailer.rb +29 -0
  45. data/spec/support/v7.0/app/models/application_record.rb +4 -0
  46. data/spec/support/v7.0/app/models/concerns/.keep +0 -0
  47. data/spec/support/v7.0/app/models/concerns/mythical.rb +11 -0
  48. data/spec/support/v7.0/app/models/headmaster.rb +8 -0
  49. data/spec/support/v7.0/app/models/potion.rb +6 -0
  50. data/spec/support/v7.0/app/models/robe.rb +4 -0
  51. data/spec/support/v7.0/app/models/school.rb +5 -0
  52. data/spec/support/v7.0/app/models/spell.rb +5 -0
  53. data/spec/support/v7.0/app/models/spell_book.rb +18 -0
  54. data/spec/support/v7.0/app/models/squib.rb +6 -0
  55. data/spec/support/v7.0/app/models/subject.rb +5 -0
  56. data/spec/support/v7.0/app/models/wand.rb +19 -0
  57. data/spec/support/v7.0/app/models/wizard.rb +65 -0
  58. data/spec/support/v7.0/app/views/layouts/application.html.erb +15 -0
  59. data/spec/support/v7.0/app/views/layouts/mailer.html.erb +13 -0
  60. data/spec/support/v7.0/app/views/layouts/mailer.text.erb +1 -0
  61. data/spec/support/v7.0/bin/bundle +114 -0
  62. data/spec/support/v7.0/bin/rails +4 -0
  63. data/spec/support/v7.0/bin/rake +4 -0
  64. data/spec/support/v7.0/bin/setup +33 -0
  65. data/spec/support/v7.0/config/application.rb +38 -0
  66. data/spec/support/v7.0/config/boot.rb +4 -0
  67. data/spec/support/v7.0/config/database.yml +25 -0
  68. data/spec/support/v7.0/config/environment.rb +6 -0
  69. data/spec/support/v7.0/config/environments/development.rb +69 -0
  70. data/spec/support/v7.0/config/environments/production.rb +83 -0
  71. data/spec/support/v7.0/config/environments/test.rb +61 -0
  72. data/spec/support/v7.0/config/initializers/content_security_policy.rb +26 -0
  73. data/spec/support/v7.0/config/initializers/filter_parameter_logging.rb +9 -0
  74. data/spec/support/v7.0/config/initializers/inflections.rb +17 -0
  75. data/spec/support/v7.0/config/initializers/permissions_policy.rb +12 -0
  76. data/spec/support/v7.0/config/initializers/sorbet_rails.rb +3 -0
  77. data/spec/support/v7.0/config/locales/en.yml +33 -0
  78. data/spec/support/v7.0/config/puma.rb +44 -0
  79. data/spec/support/v7.0/config/routes.rb +8 -0
  80. data/spec/support/v7.0/config/storage.yml +34 -0
  81. data/spec/support/v7.0/config.ru +6 -0
  82. data/spec/support/v7.0/db/migrate/20190620000001_create_wizards.rb +14 -0
  83. data/spec/support/v7.0/db/migrate/20190620000002_create_wands.rb +12 -0
  84. data/spec/support/v7.0/db/migrate/20190620000003_create_spell_books.rb +10 -0
  85. data/spec/support/v7.0/db/migrate/20190620000004_add_more_column_types_to_wands.rb +14 -0
  86. data/spec/support/v7.0/db/migrate/20190620000005_add_broom_to_wizard.rb +6 -0
  87. data/spec/support/v7.0/db/migrate/20190620000006_add_more_enums_to_wizard.rb +9 -0
  88. data/spec/support/v7.0/db/migrate/20190620000007_add_type_to_wizard.rb +6 -0
  89. data/spec/support/v7.0/db/migrate/20190620000008_add_robe_to_wizard.rb +8 -0
  90. data/spec/support/v7.0/db/migrate/20190620000009_add_school.rb +10 -0
  91. data/spec/support/v7.0/db/migrate/20190620000010_add_subject.rb +8 -0
  92. data/spec/support/v7.0/db/migrate/20190620000011_add_subjects_wizards.rb +8 -0
  93. data/spec/support/v7.0/db/migrate/20190620000012_add_spell.rb +8 -0
  94. data/spec/support/v7.0/db/migrate/20190620000013_add_spells_spell_books.rb +8 -0
  95. data/spec/support/v7.0/db/migrate/20190620000014_create_headmasters.rb +9 -0
  96. data/spec/support/v7.0/db/migrate/20190620000015_add_serialized_to_wizards.rb +9 -0
  97. data/spec/support/v7.0/db/schema.rb +98 -0
  98. data/spec/support/v7.0/db/seeds.rb +8 -0
  99. data/spec/support/v7.0/lib/assets/.keep +0 -0
  100. data/spec/support/v7.0/lib/mythical_rbi_plugin.rb +16 -0
  101. data/spec/support/v7.0/lib/tasks/.keep +0 -0
  102. data/spec/support/v7.0/log/.keep +0 -0
  103. data/spec/support/v7.0/sorbet_test_cases.rb +439 -0
  104. data/spec/support/v7.0/storage/.keep +0 -0
  105. data/spec/support/v7.0/tmp/.keep +0 -0
  106. data/spec/support/v7.0/tmp/pids/.keep +0 -0
  107. data/spec/support/v7.0/tmp/storage/.keep +0 -0
  108. data/spec/support/v7.0/vendor/.keep +0 -0
  109. data/spec/test_data/v5.2/expected_active_record_base.rbi +6 -0
  110. data/spec/test_data/v5.2/expected_active_record_relation.rbi +8 -2
  111. data/spec/test_data/v5.2/expected_attachment.rbi +3 -3
  112. data/spec/test_data/v5.2/expected_blob.rbi +3 -3
  113. data/spec/test_data/v5.2/expected_habtm_subjects.rbi +3 -3
  114. data/spec/test_data/v5.2/expected_habtm_wizards.rbi +3 -3
  115. data/spec/test_data/v5.2/expected_headmaster.rbi +3 -3
  116. data/spec/test_data/v5.2/expected_internal_metadata.rbi +3 -3
  117. data/spec/test_data/v5.2/expected_potion.rbi +3 -3
  118. data/spec/test_data/v5.2/expected_robe.rbi +3 -3
  119. data/spec/test_data/v5.2/expected_schema_migration.rbi +3 -3
  120. data/spec/test_data/v5.2/expected_school.rbi +3 -3
  121. data/spec/test_data/v5.2/expected_spell/habtm_spell_books.rbi +3 -3
  122. data/spec/test_data/v5.2/expected_spell.rbi +3 -3
  123. data/spec/test_data/v5.2/expected_spell_book/habtm_spell_books.rbi +3 -3
  124. data/spec/test_data/v5.2/expected_spell_book/habtm_spells.rbi +3 -3
  125. data/spec/test_data/v5.2/expected_spell_book.rbi +3 -3
  126. data/spec/test_data/v5.2/expected_squib.rbi +3 -3
  127. data/spec/test_data/v5.2/expected_subject/habtm_wizards.rbi +3 -3
  128. data/spec/test_data/v5.2/expected_subject.rbi +3 -3
  129. data/spec/test_data/v5.2/expected_wand.rbi +3 -3
  130. data/spec/test_data/v5.2/expected_wizard/habtm_subjects.rbi +3 -3
  131. data/spec/test_data/v5.2/expected_wizard.rbi +3 -3
  132. data/spec/test_data/v5.2/expected_wizard_wo_spellbook.rbi +3 -3
  133. data/spec/test_data/v6.0/expected_active_record_base.rbi +6 -0
  134. data/spec/test_data/v6.0/expected_active_record_relation.rbi +8 -2
  135. data/spec/test_data/v6.0/expected_attachment.rbi +3 -3
  136. data/spec/test_data/v6.0/expected_blob.rbi +3 -3
  137. data/spec/test_data/v6.0/expected_habtm_subjects.rbi +3 -3
  138. data/spec/test_data/v6.0/expected_habtm_wizards.rbi +3 -3
  139. data/spec/test_data/v6.0/expected_headmaster.rbi +3 -3
  140. data/spec/test_data/v6.0/expected_internal_metadata.rbi +3 -3
  141. data/spec/test_data/v6.0/expected_potion.rbi +3 -3
  142. data/spec/test_data/v6.0/expected_robe.rbi +3 -3
  143. data/spec/test_data/v6.0/expected_schema_migration.rbi +3 -3
  144. data/spec/test_data/v6.0/expected_school.rbi +3 -3
  145. data/spec/test_data/v6.0/expected_spell/habtm_spell_books.rbi +3 -3
  146. data/spec/test_data/v6.0/expected_spell.rbi +3 -3
  147. data/spec/test_data/v6.0/expected_spell_book/habtm_spell_books.rbi +3 -3
  148. data/spec/test_data/v6.0/expected_spell_book/habtm_spells.rbi +3 -3
  149. data/spec/test_data/v6.0/expected_spell_book.rbi +3 -3
  150. data/spec/test_data/v6.0/expected_squib.rbi +3 -3
  151. data/spec/test_data/v6.0/expected_subject/habtm_wizards.rbi +3 -3
  152. data/spec/test_data/v6.0/expected_subject.rbi +3 -3
  153. data/spec/test_data/v6.0/expected_wand.rbi +3 -3
  154. data/spec/test_data/v6.0/expected_wizard/habtm_subjects.rbi +3 -3
  155. data/spec/test_data/v6.0/expected_wizard.rbi +3 -3
  156. data/spec/test_data/v6.0/expected_wizard_wo_spellbook.rbi +3 -3
  157. data/spec/test_data/v6.1/expected_active_record_base.rbi +6 -0
  158. data/spec/test_data/v6.1/expected_active_record_relation.rbi +8 -2
  159. data/spec/test_data/v6.1/expected_attachment.rbi +3 -3
  160. data/spec/test_data/v6.1/expected_blob.rbi +3 -3
  161. data/spec/test_data/v6.1/expected_habtm_subjects.rbi +3 -3
  162. data/spec/test_data/v6.1/expected_habtm_wizards.rbi +3 -3
  163. data/spec/test_data/v6.1/expected_headmaster.rbi +3 -3
  164. data/spec/test_data/v6.1/expected_internal_metadata.rbi +3 -3
  165. data/spec/test_data/v6.1/expected_potion.rbi +3 -3
  166. data/spec/test_data/v6.1/expected_record.rbi +3 -3
  167. data/spec/test_data/v6.1/expected_robe.rbi +3 -3
  168. data/spec/test_data/v6.1/expected_schema_migration.rbi +3 -3
  169. data/spec/test_data/v6.1/expected_school.rbi +3 -3
  170. data/spec/test_data/v6.1/expected_spell/habtm_spell_books.rbi +3 -3
  171. data/spec/test_data/v6.1/expected_spell.rbi +3 -3
  172. data/spec/test_data/v6.1/expected_spell_book/habtm_spell_books.rbi +3 -3
  173. data/spec/test_data/v6.1/expected_spell_book/habtm_spells.rbi +3 -3
  174. data/spec/test_data/v6.1/expected_spell_book.rbi +3 -3
  175. data/spec/test_data/v6.1/expected_squib.rbi +3 -3
  176. data/spec/test_data/v6.1/expected_subject/habtm_wizards.rbi +3 -3
  177. data/spec/test_data/v6.1/expected_subject.rbi +3 -3
  178. data/spec/test_data/v6.1/expected_variant_record.rbi +3 -3
  179. data/spec/test_data/v6.1/expected_wand.rbi +3 -3
  180. data/spec/test_data/v6.1/expected_wizard/habtm_subjects.rbi +3 -3
  181. data/spec/test_data/v6.1/expected_wizard.rbi +3 -3
  182. data/spec/test_data/v6.1/expected_wizard_wo_spellbook.rbi +3 -3
  183. data/spec/test_data/v7.0/expected_active_record_base.rbi +119 -0
  184. data/spec/test_data/v7.0/expected_active_record_relation.rbi +180 -0
  185. data/spec/test_data/v7.0/expected_application_job.rbi +20 -0
  186. data/spec/test_data/v7.0/expected_application_mailer.rbi +5 -0
  187. data/spec/test_data/v7.0/expected_attachment.rbi +358 -0
  188. data/spec/test_data/v7.0/expected_award_house_point_hourglasses.rbi +20 -0
  189. data/spec/test_data/v7.0/expected_blob.rbi +394 -0
  190. data/spec/test_data/v7.0/expected_custom_application_job.rbi +21 -0
  191. data/spec/test_data/v7.0/expected_custom_application_mailer.rbi +6 -0
  192. data/spec/test_data/v7.0/expected_custom_award_house_point_hourglasses.rbi +21 -0
  193. data/spec/test_data/v7.0/expected_custom_daily_prophet_mailer.rbi +8 -0
  194. data/spec/test_data/v7.0/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
  195. data/spec/test_data/v7.0/expected_daily_prophet_mailer.rbi +7 -0
  196. data/spec/test_data/v7.0/expected_headmaster.rbi +376 -0
  197. data/spec/test_data/v7.0/expected_helpers.rbi +27 -0
  198. data/spec/test_data/v7.0/expected_helpers_with_application_and_devise_helpers.rbi +34 -0
  199. data/spec/test_data/v7.0/expected_hogwarts_acceptance_mailer.rbi +20 -0
  200. data/spec/test_data/v7.0/expected_internal_metadata.rbi +346 -0
  201. data/spec/test_data/v7.0/expected_no_routes.rbi +4 -0
  202. data/spec/test_data/v7.0/expected_potion.rbi +328 -0
  203. data/spec/test_data/v7.0/expected_record.rbi +307 -0
  204. data/spec/test_data/v7.0/expected_robe.rbi +349 -0
  205. data/spec/test_data/v7.0/expected_routes.rbi +182 -0
  206. data/spec/test_data/v7.0/expected_schema_migration.rbi +319 -0
  207. data/spec/test_data/v7.0/expected_school.rbi +349 -0
  208. data/spec/test_data/v7.0/expected_spell/habtm_spell_books.rbi +367 -0
  209. data/spec/test_data/v7.0/expected_spell.rbi +340 -0
  210. data/spec/test_data/v7.0/expected_spell_book/habtm_spells.rbi +367 -0
  211. data/spec/test_data/v7.0/expected_spell_book.rbi +499 -0
  212. data/spec/test_data/v7.0/expected_squib.rbi +1204 -0
  213. data/spec/test_data/v7.0/expected_srb_tc_output.txt +1 -0
  214. data/spec/test_data/v7.0/expected_subject/habtm_wizards.rbi +367 -0
  215. data/spec/test_data/v7.0/expected_subject.rbi +340 -0
  216. data/spec/test_data/v7.0/expected_variant_record.rbi +382 -0
  217. data/spec/test_data/v7.0/expected_wand.rbi +611 -0
  218. data/spec/test_data/v7.0/expected_wizard/habtm_subjects.rbi +367 -0
  219. data/spec/test_data/v7.0/expected_wizard.rbi +1280 -0
  220. data/spec/test_data/v7.0/expected_wizard_wo_spellbook.rbi +1274 -0
  221. metadata +245 -3
@@ -314,20 +314,20 @@ class Robe::ActiveRecord_Relation < ActiveRecord::Relation
314
314
  include Robe::ActiveRelation_WhereNot
315
315
  include Robe::CustomFinderMethods
316
316
  include Robe::QueryMethodsReturningRelation
317
- Elem = type_member(fixed: Robe)
317
+ Elem = type_member {{fixed: Robe}}
318
318
  end
319
319
 
320
320
  class Robe::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
321
321
  include Robe::ActiveRelation_WhereNot
322
322
  include Robe::CustomFinderMethods
323
323
  include Robe::QueryMethodsReturningAssociationRelation
324
- Elem = type_member(fixed: Robe)
324
+ Elem = type_member {{fixed: Robe}}
325
325
  end
326
326
 
327
327
  class Robe::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
328
328
  include Robe::CustomFinderMethods
329
329
  include Robe::QueryMethodsReturningAssociationRelation
330
- Elem = type_member(fixed: Robe)
330
+ Elem = type_member {{fixed: Robe}}
331
331
 
332
332
  sig { params(records: T.any(Robe, T::Array[Robe])).returns(T.self_type) }
333
333
  def <<(*records); end
@@ -284,20 +284,20 @@ class ActiveRecord::SchemaMigration::ActiveRecord_Relation < ActiveRecord::Relat
284
284
  include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
285
285
  include ActiveRecord::SchemaMigration::CustomFinderMethods
286
286
  include ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
287
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
287
+ Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
288
288
  end
289
289
 
290
290
  class ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
291
291
  include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
292
292
  include ActiveRecord::SchemaMigration::CustomFinderMethods
293
293
  include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
294
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
294
+ Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
295
295
  end
296
296
 
297
297
  class ActiveRecord::SchemaMigration::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
298
298
  include ActiveRecord::SchemaMigration::CustomFinderMethods
299
299
  include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
300
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
300
+ Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
301
301
 
302
302
  sig { params(records: T.any(ActiveRecord::SchemaMigration, T::Array[ActiveRecord::SchemaMigration])).returns(T.self_type) }
303
303
  def <<(*records); end
@@ -314,20 +314,20 @@ class School::ActiveRecord_Relation < ActiveRecord::Relation
314
314
  include School::ActiveRelation_WhereNot
315
315
  include School::CustomFinderMethods
316
316
  include School::QueryMethodsReturningRelation
317
- Elem = type_member(fixed: School)
317
+ Elem = type_member {{fixed: School}}
318
318
  end
319
319
 
320
320
  class School::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
321
321
  include School::ActiveRelation_WhereNot
322
322
  include School::CustomFinderMethods
323
323
  include School::QueryMethodsReturningAssociationRelation
324
- Elem = type_member(fixed: School)
324
+ Elem = type_member {{fixed: School}}
325
325
  end
326
326
 
327
327
  class School::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
328
328
  include School::CustomFinderMethods
329
329
  include School::QueryMethodsReturningAssociationRelation
330
- Elem = type_member(fixed: School)
330
+ Elem = type_member {{fixed: School}}
331
331
 
332
332
  sig { params(records: T.any(School, T::Array[School])).returns(T.self_type) }
333
333
  def <<(*records); end
@@ -332,20 +332,20 @@ class Spell::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relation
332
332
  include Spell::HABTM_SpellBooks::ActiveRelation_WhereNot
333
333
  include Spell::HABTM_SpellBooks::CustomFinderMethods
334
334
  include Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
335
- Elem = type_member(fixed: Spell::HABTM_SpellBooks)
335
+ Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
336
336
  end
337
337
 
338
338
  class Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
339
339
  include Spell::HABTM_SpellBooks::ActiveRelation_WhereNot
340
340
  include Spell::HABTM_SpellBooks::CustomFinderMethods
341
341
  include Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
342
- Elem = type_member(fixed: Spell::HABTM_SpellBooks)
342
+ Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
343
343
  end
344
344
 
345
345
  class Spell::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
346
346
  include Spell::HABTM_SpellBooks::CustomFinderMethods
347
347
  include Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
348
- Elem = type_member(fixed: Spell::HABTM_SpellBooks)
348
+ Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
349
349
 
350
350
  sig { params(records: T.any(Spell::HABTM_SpellBooks, T::Array[Spell::HABTM_SpellBooks])).returns(T.self_type) }
351
351
  def <<(*records); end
@@ -305,20 +305,20 @@ class Spell::ActiveRecord_Relation < ActiveRecord::Relation
305
305
  include Spell::ActiveRelation_WhereNot
306
306
  include Spell::CustomFinderMethods
307
307
  include Spell::QueryMethodsReturningRelation
308
- Elem = type_member(fixed: Spell)
308
+ Elem = type_member {{fixed: Spell}}
309
309
  end
310
310
 
311
311
  class Spell::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
312
312
  include Spell::ActiveRelation_WhereNot
313
313
  include Spell::CustomFinderMethods
314
314
  include Spell::QueryMethodsReturningAssociationRelation
315
- Elem = type_member(fixed: Spell)
315
+ Elem = type_member {{fixed: Spell}}
316
316
  end
317
317
 
318
318
  class Spell::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
319
319
  include Spell::CustomFinderMethods
320
320
  include Spell::QueryMethodsReturningAssociationRelation
321
- Elem = type_member(fixed: Spell)
321
+ Elem = type_member {{fixed: Spell}}
322
322
 
323
323
  sig { params(records: T.any(Spell, T::Array[Spell])).returns(T.self_type) }
324
324
  def <<(*records); end
@@ -171,7 +171,7 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
171
171
  include Enumerable
172
172
  extend T::Sig
173
173
  extend T::Generic
174
- Elem = type_member(fixed: SpellBook::HABTM_SpellBooks)
174
+ Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
175
175
 
176
176
  sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
177
177
  def all; end
@@ -297,7 +297,7 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
297
297
  include Enumerable
298
298
  extend T::Sig
299
299
  extend T::Generic
300
- Elem = type_member(fixed: SpellBook::HABTM_SpellBooks)
300
+ Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
301
301
 
302
302
  sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
303
303
  def all; end
@@ -493,7 +493,7 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
493
493
  include Enumerable
494
494
  extend T::Sig
495
495
  extend T::Generic
496
- Elem = type_member(fixed: SpellBook::HABTM_SpellBooks)
496
+ Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
497
497
 
498
498
  sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
499
499
  def all; end
@@ -332,20 +332,20 @@ class SpellBook::HABTM_Spells::ActiveRecord_Relation < ActiveRecord::Relation
332
332
  include SpellBook::HABTM_Spells::ActiveRelation_WhereNot
333
333
  include SpellBook::HABTM_Spells::CustomFinderMethods
334
334
  include SpellBook::HABTM_Spells::QueryMethodsReturningRelation
335
- Elem = type_member(fixed: SpellBook::HABTM_Spells)
335
+ Elem = type_member {{fixed: SpellBook::HABTM_Spells}}
336
336
  end
337
337
 
338
338
  class SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
339
339
  include SpellBook::HABTM_Spells::ActiveRelation_WhereNot
340
340
  include SpellBook::HABTM_Spells::CustomFinderMethods
341
341
  include SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
342
- Elem = type_member(fixed: SpellBook::HABTM_Spells)
342
+ Elem = type_member {{fixed: SpellBook::HABTM_Spells}}
343
343
  end
344
344
 
345
345
  class SpellBook::HABTM_Spells::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
346
346
  include SpellBook::HABTM_Spells::CustomFinderMethods
347
347
  include SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
348
- Elem = type_member(fixed: SpellBook::HABTM_Spells)
348
+ Elem = type_member {{fixed: SpellBook::HABTM_Spells}}
349
349
 
350
350
  sig { params(records: T.any(SpellBook::HABTM_Spells, T::Array[SpellBook::HABTM_Spells])).returns(T.self_type) }
351
351
  def <<(*records); end
@@ -163,7 +163,7 @@ class SpellBook::ActiveRecord_Relation < ActiveRecord::Relation
163
163
  include SpellBook::ActiveRelation_WhereNot
164
164
  include SpellBook::CustomFinderMethods
165
165
  include SpellBook::QueryMethodsReturningRelation
166
- Elem = type_member(fixed: SpellBook)
166
+ Elem = type_member {{fixed: SpellBook}}
167
167
 
168
168
  sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
169
169
  def biology(*args); end
@@ -191,7 +191,7 @@ class SpellBook::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRel
191
191
  include SpellBook::ActiveRelation_WhereNot
192
192
  include SpellBook::CustomFinderMethods
193
193
  include SpellBook::QueryMethodsReturningAssociationRelation
194
- Elem = type_member(fixed: SpellBook)
194
+ Elem = type_member {{fixed: SpellBook}}
195
195
 
196
196
  sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
197
197
  def biology(*args); end
@@ -218,7 +218,7 @@ end
218
218
  class SpellBook::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
219
219
  include SpellBook::CustomFinderMethods
220
220
  include SpellBook::QueryMethodsReturningAssociationRelation
221
- Elem = type_member(fixed: SpellBook)
221
+ Elem = type_member {{fixed: SpellBook}}
222
222
 
223
223
  sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
224
224
  def biology(*args); end
@@ -476,7 +476,7 @@ class Squib::ActiveRecord_Relation < ActiveRecord::Relation
476
476
  include Squib::ActiveRelation_WhereNot
477
477
  include Squib::CustomFinderMethods
478
478
  include Squib::QueryMethodsReturningRelation
479
- Elem = type_member(fixed: Squib)
479
+ Elem = type_member {{fixed: Squib}}
480
480
 
481
481
  sig { params(args: T.untyped).returns(Squib::ActiveRecord_Relation) }
482
482
  def Alastor_Mad_Eye_Moody(*args); end
@@ -624,7 +624,7 @@ class Squib::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelatio
624
624
  include Squib::ActiveRelation_WhereNot
625
625
  include Squib::CustomFinderMethods
626
626
  include Squib::QueryMethodsReturningAssociationRelation
627
- Elem = type_member(fixed: Squib)
627
+ Elem = type_member {{fixed: Squib}}
628
628
 
629
629
  sig { params(args: T.untyped).returns(Squib::ActiveRecord_AssociationRelation) }
630
630
  def Alastor_Mad_Eye_Moody(*args); end
@@ -771,7 +771,7 @@ end
771
771
  class Squib::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
772
772
  include Squib::CustomFinderMethods
773
773
  include Squib::QueryMethodsReturningAssociationRelation
774
- Elem = type_member(fixed: Squib)
774
+ Elem = type_member {{fixed: Squib}}
775
775
 
776
776
  sig { params(args: T.untyped).returns(Squib::ActiveRecord_AssociationRelation) }
777
777
  def Alastor_Mad_Eye_Moody(*args); end
@@ -332,20 +332,20 @@ class Subject::HABTM_Wizards::ActiveRecord_Relation < ActiveRecord::Relation
332
332
  include Subject::HABTM_Wizards::ActiveRelation_WhereNot
333
333
  include Subject::HABTM_Wizards::CustomFinderMethods
334
334
  include Subject::HABTM_Wizards::QueryMethodsReturningRelation
335
- Elem = type_member(fixed: Subject::HABTM_Wizards)
335
+ Elem = type_member {{fixed: Subject::HABTM_Wizards}}
336
336
  end
337
337
 
338
338
  class Subject::HABTM_Wizards::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
339
339
  include Subject::HABTM_Wizards::ActiveRelation_WhereNot
340
340
  include Subject::HABTM_Wizards::CustomFinderMethods
341
341
  include Subject::HABTM_Wizards::QueryMethodsReturningAssociationRelation
342
- Elem = type_member(fixed: Subject::HABTM_Wizards)
342
+ Elem = type_member {{fixed: Subject::HABTM_Wizards}}
343
343
  end
344
344
 
345
345
  class Subject::HABTM_Wizards::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
346
346
  include Subject::HABTM_Wizards::CustomFinderMethods
347
347
  include Subject::HABTM_Wizards::QueryMethodsReturningAssociationRelation
348
- Elem = type_member(fixed: Subject::HABTM_Wizards)
348
+ Elem = type_member {{fixed: Subject::HABTM_Wizards}}
349
349
 
350
350
  sig { params(records: T.any(Subject::HABTM_Wizards, T::Array[Subject::HABTM_Wizards])).returns(T.self_type) }
351
351
  def <<(*records); end
@@ -305,20 +305,20 @@ class Subject::ActiveRecord_Relation < ActiveRecord::Relation
305
305
  include Subject::ActiveRelation_WhereNot
306
306
  include Subject::CustomFinderMethods
307
307
  include Subject::QueryMethodsReturningRelation
308
- Elem = type_member(fixed: Subject)
308
+ Elem = type_member {{fixed: Subject}}
309
309
  end
310
310
 
311
311
  class Subject::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
312
312
  include Subject::ActiveRelation_WhereNot
313
313
  include Subject::CustomFinderMethods
314
314
  include Subject::QueryMethodsReturningAssociationRelation
315
- Elem = type_member(fixed: Subject)
315
+ Elem = type_member {{fixed: Subject}}
316
316
  end
317
317
 
318
318
  class Subject::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
319
319
  include Subject::CustomFinderMethods
320
320
  include Subject::QueryMethodsReturningAssociationRelation
321
- Elem = type_member(fixed: Subject)
321
+ Elem = type_member {{fixed: Subject}}
322
322
 
323
323
  sig { params(records: T.any(Subject, T::Array[Subject])).returns(T.self_type) }
324
324
  def <<(*records); end
@@ -38,7 +38,7 @@ class ActiveStorage::VariantRecord::ActiveRecord_Relation < ActiveRecord::Relati
38
38
  include ActiveStorage::VariantRecord::ActiveRelation_WhereNot
39
39
  include ActiveStorage::VariantRecord::CustomFinderMethods
40
40
  include ActiveStorage::VariantRecord::QueryMethodsReturningRelation
41
- Elem = type_member(fixed: ActiveStorage::VariantRecord)
41
+ Elem = type_member {{fixed: ActiveStorage::VariantRecord}}
42
42
 
43
43
  sig { params(args: T.untyped).returns(ActiveStorage::VariantRecord::ActiveRecord_Relation) }
44
44
  def with_attached_image(*args); end
@@ -48,7 +48,7 @@ class ActiveStorage::VariantRecord::ActiveRecord_AssociationRelation < ActiveRec
48
48
  include ActiveStorage::VariantRecord::ActiveRelation_WhereNot
49
49
  include ActiveStorage::VariantRecord::CustomFinderMethods
50
50
  include ActiveStorage::VariantRecord::QueryMethodsReturningAssociationRelation
51
- Elem = type_member(fixed: ActiveStorage::VariantRecord)
51
+ Elem = type_member {{fixed: ActiveStorage::VariantRecord}}
52
52
 
53
53
  sig { params(args: T.untyped).returns(ActiveStorage::VariantRecord::ActiveRecord_AssociationRelation) }
54
54
  def with_attached_image(*args); end
@@ -57,7 +57,7 @@ end
57
57
  class ActiveStorage::VariantRecord::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
58
58
  include ActiveStorage::VariantRecord::CustomFinderMethods
59
59
  include ActiveStorage::VariantRecord::QueryMethodsReturningAssociationRelation
60
- Elem = type_member(fixed: ActiveStorage::VariantRecord)
60
+ Elem = type_member {{fixed: ActiveStorage::VariantRecord}}
61
61
 
62
62
  sig { params(args: T.untyped).returns(ActiveStorage::VariantRecord::ActiveRecord_AssociationRelation) }
63
63
  def with_attached_image(*args); end
@@ -266,7 +266,7 @@ class Wand::ActiveRecord_Relation < ActiveRecord::Relation
266
266
  include Wand::ActiveRelation_WhereNot
267
267
  include Wand::CustomFinderMethods
268
268
  include Wand::QueryMethodsReturningRelation
269
- Elem = type_member(fixed: Wand)
269
+ Elem = type_member {{fixed: Wand}}
270
270
 
271
271
  sig { params(args: T.untyped).returns(Wand::ActiveRecord_Relation) }
272
272
  def basilisk_horn(*args); end
@@ -297,7 +297,7 @@ class Wand::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
297
297
  include Wand::ActiveRelation_WhereNot
298
298
  include Wand::CustomFinderMethods
299
299
  include Wand::QueryMethodsReturningAssociationRelation
300
- Elem = type_member(fixed: Wand)
300
+ Elem = type_member {{fixed: Wand}}
301
301
 
302
302
  sig { params(args: T.untyped).returns(Wand::ActiveRecord_AssociationRelation) }
303
303
  def basilisk_horn(*args); end
@@ -327,7 +327,7 @@ end
327
327
  class Wand::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
328
328
  include Wand::CustomFinderMethods
329
329
  include Wand::QueryMethodsReturningAssociationRelation
330
- Elem = type_member(fixed: Wand)
330
+ Elem = type_member {{fixed: Wand}}
331
331
 
332
332
  sig { params(args: T.untyped).returns(Wand::ActiveRecord_AssociationRelation) }
333
333
  def basilisk_horn(*args); end
@@ -332,20 +332,20 @@ class Wizard::HABTM_Subjects::ActiveRecord_Relation < ActiveRecord::Relation
332
332
  include Wizard::HABTM_Subjects::ActiveRelation_WhereNot
333
333
  include Wizard::HABTM_Subjects::CustomFinderMethods
334
334
  include Wizard::HABTM_Subjects::QueryMethodsReturningRelation
335
- Elem = type_member(fixed: Wizard::HABTM_Subjects)
335
+ Elem = type_member {{fixed: Wizard::HABTM_Subjects}}
336
336
  end
337
337
 
338
338
  class Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
339
339
  include Wizard::HABTM_Subjects::ActiveRelation_WhereNot
340
340
  include Wizard::HABTM_Subjects::CustomFinderMethods
341
341
  include Wizard::HABTM_Subjects::QueryMethodsReturningAssociationRelation
342
- Elem = type_member(fixed: Wizard::HABTM_Subjects)
342
+ Elem = type_member {{fixed: Wizard::HABTM_Subjects}}
343
343
  end
344
344
 
345
345
  class Wizard::HABTM_Subjects::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
346
346
  include Wizard::HABTM_Subjects::CustomFinderMethods
347
347
  include Wizard::HABTM_Subjects::QueryMethodsReturningAssociationRelation
348
- Elem = type_member(fixed: Wizard::HABTM_Subjects)
348
+ Elem = type_member {{fixed: Wizard::HABTM_Subjects}}
349
349
 
350
350
  sig { params(records: T.any(Wizard::HABTM_Subjects, T::Array[Wizard::HABTM_Subjects])).returns(T.self_type) }
351
351
  def <<(*records); end
@@ -552,7 +552,7 @@ class Wizard::ActiveRecord_Relation < ActiveRecord::Relation
552
552
  include Wizard::ActiveRelation_WhereNot
553
553
  include Wizard::CustomFinderMethods
554
554
  include Wizard::QueryMethodsReturningRelation
555
- Elem = type_member(fixed: Wizard)
555
+ Elem = type_member {{fixed: Wizard}}
556
556
 
557
557
  sig { params(args: T.untyped).returns(Wizard::ActiveRecord_Relation) }
558
558
  def Alastor_Mad_Eye_Moody(*args); end
@@ -700,7 +700,7 @@ class Wizard::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelati
700
700
  include Wizard::ActiveRelation_WhereNot
701
701
  include Wizard::CustomFinderMethods
702
702
  include Wizard::QueryMethodsReturningAssociationRelation
703
- Elem = type_member(fixed: Wizard)
703
+ Elem = type_member {{fixed: Wizard}}
704
704
 
705
705
  sig { params(args: T.untyped).returns(Wizard::ActiveRecord_AssociationRelation) }
706
706
  def Alastor_Mad_Eye_Moody(*args); end
@@ -847,7 +847,7 @@ end
847
847
  class Wizard::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
848
848
  include Wizard::CustomFinderMethods
849
849
  include Wizard::QueryMethodsReturningAssociationRelation
850
- Elem = type_member(fixed: Wizard)
850
+ Elem = type_member {{fixed: Wizard}}
851
851
 
852
852
  sig { params(args: T.untyped).returns(Wizard::ActiveRecord_AssociationRelation) }
853
853
  def Alastor_Mad_Eye_Moody(*args); end
@@ -552,7 +552,7 @@ class Wizard::ActiveRecord_Relation < ActiveRecord::Relation
552
552
  include Wizard::ActiveRelation_WhereNot
553
553
  include Wizard::CustomFinderMethods
554
554
  include Wizard::QueryMethodsReturningRelation
555
- Elem = type_member(fixed: Wizard)
555
+ Elem = type_member {{fixed: Wizard}}
556
556
 
557
557
  sig { params(args: T.untyped).returns(Wizard::ActiveRecord_Relation) }
558
558
  def Alastor_Mad_Eye_Moody(*args); end
@@ -700,7 +700,7 @@ class Wizard::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelati
700
700
  include Wizard::ActiveRelation_WhereNot
701
701
  include Wizard::CustomFinderMethods
702
702
  include Wizard::QueryMethodsReturningAssociationRelation
703
- Elem = type_member(fixed: Wizard)
703
+ Elem = type_member {{fixed: Wizard}}
704
704
 
705
705
  sig { params(args: T.untyped).returns(Wizard::ActiveRecord_AssociationRelation) }
706
706
  def Alastor_Mad_Eye_Moody(*args); end
@@ -847,7 +847,7 @@ end
847
847
  class Wizard::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
848
848
  include Wizard::CustomFinderMethods
849
849
  include Wizard::QueryMethodsReturningAssociationRelation
850
- Elem = type_member(fixed: Wizard)
850
+ Elem = type_member {{fixed: Wizard}}
851
851
 
852
852
  sig { params(args: T.untyped).returns(Wizard::ActiveRecord_AssociationRelation) }
853
853
  def Alastor_Mad_Eye_Moody(*args); end
@@ -0,0 +1,119 @@
1
+ # typed: strong
2
+ # This is an autogenerated file for Rails' ActiveRecord.
3
+ # Please rerun bundle exec rake rails_rbi:active_record to regenerate.
4
+ class ActiveRecord::Base
5
+ sig { params(args: T.untyped).returns(T.attached_class) }
6
+ def self.find(*args); end
7
+
8
+ sig { params(args: T.untyped).returns(T.nilable(T.attached_class)) }
9
+ def self.find_by(*args); end
10
+
11
+ sig { params(args: T.untyped).returns(T.attached_class) }
12
+ def self.find_by!(*args); end
13
+
14
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
15
+ def self.find_or_initialize_by(attributes, &block); end
16
+
17
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
18
+ def self.find_or_create_by(attributes, &block); end
19
+
20
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
21
+ def self.find_or_create_by!(attributes, &block); end
22
+
23
+ sig { returns(T.nilable(T.attached_class)) }
24
+ def self.first; end
25
+
26
+ sig { returns(T.attached_class) }
27
+ def self.first!; end
28
+
29
+ sig { returns(T.nilable(T.attached_class)) }
30
+ def self.second; end
31
+
32
+ sig { returns(T.attached_class) }
33
+ def self.second!; end
34
+
35
+ sig { returns(T.nilable(T.attached_class)) }
36
+ def self.third; end
37
+
38
+ sig { returns(T.attached_class) }
39
+ def self.third!; end
40
+
41
+ sig { returns(T.nilable(T.attached_class)) }
42
+ def self.third_to_last; end
43
+
44
+ sig { returns(T.attached_class) }
45
+ def self.third_to_last!; end
46
+
47
+ sig { returns(T.nilable(T.attached_class)) }
48
+ def self.second_to_last; end
49
+
50
+ sig { returns(T.attached_class) }
51
+ def self.second_to_last!; end
52
+
53
+ sig { returns(T.nilable(T.attached_class)) }
54
+ def self.last; end
55
+
56
+ sig { returns(T.attached_class) }
57
+ def self.last!; end
58
+
59
+ sig { returns(T.nilable(T.attached_class)) }
60
+ def self.take; end
61
+
62
+ sig { returns(T.attached_class) }
63
+ def self.take!; end
64
+
65
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
66
+ def self.create(attributes = nil, &block); end
67
+
68
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
69
+ def self.create!(attributes = nil, &block); end
70
+
71
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
72
+ def self.new(attributes = nil, &block); end
73
+
74
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
75
+ def self.first_or_create(attributes = nil, &block); end
76
+
77
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
78
+ def self.first_or_create!(attributes = nil, &block); end
79
+
80
+ sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
81
+ def self.first_or_initialize(attributes = nil, &block); end
82
+
83
+ sig do
84
+ params(
85
+ start: T.nilable(Integer),
86
+ finish: T.nilable(Integer),
87
+ batch_size: T.nilable(Integer),
88
+ error_on_ignore: T.nilable(T::Boolean),
89
+ block: T.nilable(T.proc.params(e: T.attached_class).void)
90
+ ).returns(T::Enumerator[T.attached_class])
91
+ end
92
+ def self.find_each(start: nil, finish: nil, batch_size: 1000, error_on_ignore: nil, &block); end
93
+
94
+ sig do
95
+ params(
96
+ start: T.nilable(Integer),
97
+ finish: T.nilable(Integer),
98
+ batch_size: T.nilable(Integer),
99
+ error_on_ignore: T.nilable(T::Boolean),
100
+ block: T.nilable(T.proc.params(e: T::Array[T.attached_class]).void)
101
+ ).returns(T::Enumerator[T::Array[T.attached_class]])
102
+ end
103
+ def self.find_in_batches(start: nil, finish: nil, batch_size: 1000, error_on_ignore: nil, &block); end
104
+
105
+ sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
106
+ def self.any?(&block); end
107
+
108
+ sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
109
+ def self.many?(&block); end
110
+
111
+ sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
112
+ def self.none?(&block); end
113
+
114
+ sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
115
+ def self.one?(&block); end
116
+
117
+ sig { params(conditions: T.untyped).returns(T::Boolean) }
118
+ def self.exists?(conditions = nil); end
119
+ end