sorbet-rails 0.6.3 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (173) hide show
  1. checksums.yaml +4 -4
  2. data/.gitattributes +1 -2
  3. data/.gitignore +2 -1
  4. data/.travis.yml +3 -1
  5. data/README.md +54 -7
  6. data/Rakefile +3 -3
  7. data/lib/bundled_rbi/customizabel_rbi_formatter.rbi +29 -0
  8. data/lib/bundled_rbi/pluck_to_tstruct.rbi +2 -1
  9. data/lib/bundled_rbi/typed_enum.rbi +7 -0
  10. data/lib/sorbet-rails.rb +1 -3
  11. data/lib/sorbet-rails/active_record_rbi_formatter.rb +8 -2
  12. data/lib/sorbet-rails/config.rb +11 -0
  13. data/lib/sorbet-rails/deprecation.rb +1 -0
  14. data/lib/sorbet-rails/gem_plugins/active_flag_plugin.rb +0 -1
  15. data/lib/sorbet-rails/gem_plugins/kaminari_plugin.rb +8 -0
  16. data/lib/sorbet-rails/gem_plugins/paperclip_plugin.rb +0 -1
  17. data/lib/sorbet-rails/job_rbi_formatter.rb +73 -62
  18. data/lib/sorbet-rails/mailer_rbi_formatter.rb +40 -27
  19. data/lib/sorbet-rails/model_column_utils.rb +129 -0
  20. data/lib/sorbet-rails/model_plugins/active_record_assoc.rb +37 -3
  21. data/lib/sorbet-rails/model_plugins/active_record_attribute.rb +0 -103
  22. data/lib/sorbet-rails/model_plugins/active_record_enum.rb +0 -1
  23. data/lib/sorbet-rails/model_plugins/active_record_named_scope.rb +15 -6
  24. data/lib/sorbet-rails/model_plugins/active_record_querying.rb +34 -3
  25. data/lib/sorbet-rails/model_plugins/active_storage_methods.rb +1 -1
  26. data/lib/sorbet-rails/model_plugins/base.rb +0 -9
  27. data/lib/sorbet-rails/model_rbi_formatter.rb +4 -8
  28. data/lib/sorbet-rails/model_utils.rb +73 -32
  29. data/lib/sorbet-rails/rails_mixins/generated_url_helpers.rb +2 -3
  30. data/lib/sorbet-rails/rails_mixins/pluck_to_tstruct.rb +17 -7
  31. data/lib/sorbet-rails/railtie.rb +0 -2
  32. data/lib/sorbet-rails/sorbet_utils.rb +152 -150
  33. data/lib/sorbet-rails/tasks/rails_rbi.rake +18 -26
  34. data/sorbet-rails.gemspec +1 -1
  35. data/spec/generators/rails-template.rb +3 -6
  36. data/spec/generators/sorbet_test_cases.rb +66 -88
  37. data/spec/job_rbi_formatter_spec.rb +1 -1
  38. data/spec/pluck_to_tstruct_spec.rb +74 -1
  39. data/spec/rails_helper.rb +2 -2
  40. data/spec/rake_rails_rbi_jobs_spec.rb +20 -0
  41. data/spec/rake_rails_rbi_mailers_spec.rb +21 -0
  42. data/spec/support/v5.0/Gemfile +1 -1
  43. data/spec/support/v5.0/Gemfile.lock +9 -9
  44. data/spec/support/v5.0/app/models/spell_book.rb +2 -0
  45. data/spec/support/v5.0/app/models/wizard.rb +1 -1
  46. data/spec/support/v5.0/sorbet_test_cases.rb +66 -88
  47. data/spec/support/v5.1/Gemfile.lock +7 -7
  48. data/spec/support/v5.1/app/models/spell_book.rb +2 -0
  49. data/spec/support/v5.1/app/models/wizard.rb +1 -1
  50. data/spec/support/v5.1/sorbet_test_cases.rb +66 -88
  51. data/spec/support/v5.2/Gemfile +1 -1
  52. data/spec/support/v5.2/Gemfile.lock +9 -9
  53. data/spec/support/v5.2/app/models/spell_book.rb +2 -0
  54. data/spec/support/v5.2/app/models/wizard.rb +1 -1
  55. data/spec/support/v5.2/sorbet_test_cases.rb +66 -88
  56. data/spec/support/v6.0/.gitignore +6 -0
  57. data/spec/support/v6.0/Gemfile +3 -3
  58. data/spec/support/v6.0/Gemfile.lock +77 -76
  59. data/spec/support/v6.0/app/models/spell_book.rb +2 -0
  60. data/spec/support/v6.0/app/models/wizard.rb +1 -1
  61. data/spec/support/v6.0/bin/bundle +22 -13
  62. data/spec/support/v6.0/config/environments/test.rb +1 -1
  63. data/spec/support/v6.0/sorbet_test_cases.rb +66 -88
  64. data/spec/support/v6.0/tmp/pids/.keep +0 -0
  65. data/spec/test_data/v5.0/expected_active_record_base.rbi +2 -2
  66. data/spec/test_data/v5.0/expected_active_record_relation.rbi +2 -2
  67. data/spec/test_data/v5.0/expected_custom_application_job.rbi +21 -0
  68. data/spec/test_data/v5.0/expected_custom_application_mailer.rbi +6 -0
  69. data/spec/test_data/v5.0/expected_custom_award_house_point_hourglasses.rbi +21 -0
  70. data/spec/test_data/v5.0/expected_custom_daily_prophet_mailer.rbi +8 -0
  71. data/spec/test_data/v5.0/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
  72. data/spec/test_data/v5.0/expected_headmaster.rbi +60 -190
  73. data/spec/test_data/v5.0/expected_internal_metadata.rbi +42 -188
  74. data/spec/test_data/v5.0/expected_potion.rbi +51 -188
  75. data/spec/test_data/v5.0/expected_robe.rbi +51 -190
  76. data/spec/test_data/v5.0/expected_schema_migration.rbi +42 -188
  77. data/spec/test_data/v5.0/expected_school.rbi +51 -190
  78. data/spec/test_data/v5.0/expected_spell.rbi +42 -190
  79. data/spec/test_data/v5.0/expected_spell/habtm_spell_books.rbi +60 -190
  80. data/spec/test_data/v5.0/expected_spell_book.rbi +86 -215
  81. data/spec/test_data/v5.0/expected_spell_book/habtm_spells.rbi +60 -190
  82. data/spec/test_data/v5.0/expected_squib.rbi +131 -263
  83. data/spec/test_data/v5.0/expected_subject.rbi +42 -190
  84. data/spec/test_data/v5.0/expected_subject/habtm_wizards.rbi +60 -190
  85. data/spec/test_data/v5.0/expected_wand.rbi +84 -225
  86. data/spec/test_data/v5.0/expected_wizard.rbi +131 -263
  87. data/spec/test_data/v5.0/expected_wizard/habtm_subjects.rbi +60 -190
  88. data/spec/test_data/v5.0/expected_wizard_wo_spellbook.rbi +131 -263
  89. data/spec/test_data/v5.1/expected_active_record_base.rbi +2 -2
  90. data/spec/test_data/v5.1/expected_active_record_relation.rbi +2 -2
  91. data/spec/test_data/v5.1/expected_custom_application_job.rbi +21 -0
  92. data/spec/test_data/v5.1/expected_custom_application_mailer.rbi +6 -0
  93. data/spec/test_data/v5.1/expected_custom_award_house_point_hourglasses.rbi +21 -0
  94. data/spec/test_data/v5.1/expected_custom_daily_prophet_mailer.rbi +8 -0
  95. data/spec/test_data/v5.1/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
  96. data/spec/test_data/v5.1/expected_headmaster.rbi +60 -196
  97. data/spec/test_data/v5.1/expected_internal_metadata.rbi +42 -194
  98. data/spec/test_data/v5.1/expected_potion.rbi +51 -194
  99. data/spec/test_data/v5.1/expected_robe.rbi +51 -196
  100. data/spec/test_data/v5.1/expected_schema_migration.rbi +42 -194
  101. data/spec/test_data/v5.1/expected_school.rbi +51 -196
  102. data/spec/test_data/v5.1/expected_spell.rbi +42 -196
  103. data/spec/test_data/v5.1/expected_spell/habtm_spell_books.rbi +60 -196
  104. data/spec/test_data/v5.1/expected_spell_book.rbi +86 -221
  105. data/spec/test_data/v5.1/expected_spell_book/habtm_spells.rbi +60 -196
  106. data/spec/test_data/v5.1/expected_squib.rbi +132 -270
  107. data/spec/test_data/v5.1/expected_subject.rbi +42 -196
  108. data/spec/test_data/v5.1/expected_subject/habtm_wizards.rbi +60 -196
  109. data/spec/test_data/v5.1/expected_wand.rbi +84 -231
  110. data/spec/test_data/v5.1/expected_wizard.rbi +132 -270
  111. data/spec/test_data/v5.1/expected_wizard/habtm_subjects.rbi +60 -196
  112. data/spec/test_data/v5.1/expected_wizard_wo_spellbook.rbi +132 -270
  113. data/spec/test_data/v5.2/expected_active_record_base.rbi +2 -2
  114. data/spec/test_data/v5.2/expected_active_record_relation.rbi +2 -2
  115. data/spec/test_data/v5.2/expected_attachment.rbi +60 -194
  116. data/spec/test_data/v5.2/expected_blob.rbi +80 -214
  117. data/spec/test_data/v5.2/expected_custom_application_job.rbi +21 -0
  118. data/spec/test_data/v5.2/expected_custom_application_mailer.rbi +6 -0
  119. data/spec/test_data/v5.2/expected_custom_award_house_point_hourglasses.rbi +21 -0
  120. data/spec/test_data/v5.2/expected_custom_daily_prophet_mailer.rbi +8 -0
  121. data/spec/test_data/v5.2/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
  122. data/spec/test_data/v5.2/expected_headmaster.rbi +60 -196
  123. data/spec/test_data/v5.2/expected_internal_metadata.rbi +42 -194
  124. data/spec/test_data/v5.2/expected_potion.rbi +51 -194
  125. data/spec/test_data/v5.2/expected_robe.rbi +51 -196
  126. data/spec/test_data/v5.2/expected_schema_migration.rbi +42 -194
  127. data/spec/test_data/v5.2/expected_school.rbi +51 -196
  128. data/spec/test_data/v5.2/expected_spell.rbi +42 -196
  129. data/spec/test_data/v5.2/expected_spell/habtm_spell_books.rbi +60 -196
  130. data/spec/test_data/v5.2/expected_spell_book.rbi +86 -221
  131. data/spec/test_data/v5.2/expected_spell_book/habtm_spells.rbi +60 -196
  132. data/spec/test_data/v5.2/expected_squib.rbi +156 -276
  133. data/spec/test_data/v5.2/expected_subject.rbi +42 -196
  134. data/spec/test_data/v5.2/expected_subject/habtm_wizards.rbi +60 -196
  135. data/spec/test_data/v5.2/expected_wand.rbi +84 -231
  136. data/spec/test_data/v5.2/expected_wizard.rbi +156 -276
  137. data/spec/test_data/v5.2/expected_wizard/habtm_subjects.rbi +60 -196
  138. data/spec/test_data/v5.2/expected_wizard_wo_spellbook.rbi +156 -276
  139. data/spec/test_data/v6.0/expected_active_record_base.rbi +2 -2
  140. data/spec/test_data/v6.0/expected_active_record_relation.rbi +10 -10
  141. data/spec/test_data/v6.0/expected_attachment.rbi +60 -218
  142. data/spec/test_data/v6.0/expected_blob.rbi +80 -238
  143. data/spec/test_data/v6.0/expected_custom_application_job.rbi +21 -0
  144. data/spec/test_data/v6.0/expected_custom_application_mailer.rbi +6 -0
  145. data/spec/test_data/v6.0/expected_custom_award_house_point_hourglasses.rbi +21 -0
  146. data/spec/test_data/v6.0/expected_custom_daily_prophet_mailer.rbi +8 -0
  147. data/spec/test_data/v6.0/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
  148. data/spec/test_data/v6.0/expected_headmaster.rbi +60 -220
  149. data/spec/test_data/v6.0/expected_internal_metadata.rbi +42 -218
  150. data/spec/test_data/v6.0/expected_potion.rbi +51 -218
  151. data/spec/test_data/v6.0/expected_robe.rbi +51 -220
  152. data/spec/test_data/v6.0/expected_routes.rbi +14 -7
  153. data/spec/test_data/v6.0/expected_schema_migration.rbi +42 -218
  154. data/spec/test_data/v6.0/expected_school.rbi +51 -220
  155. data/spec/test_data/v6.0/expected_spell.rbi +42 -220
  156. data/spec/test_data/v6.0/expected_spell/habtm_spell_books.rbi +60 -220
  157. data/spec/test_data/v6.0/expected_spell_book.rbi +98 -257
  158. data/spec/test_data/v6.0/expected_spell_book/habtm_spells.rbi +60 -220
  159. data/spec/test_data/v6.0/expected_squib.rbi +182 -326
  160. data/spec/test_data/v6.0/expected_subject.rbi +42 -220
  161. data/spec/test_data/v6.0/expected_subject/habtm_wizards.rbi +60 -220
  162. data/spec/test_data/v6.0/expected_wand.rbi +100 -271
  163. data/spec/test_data/v6.0/expected_wizard.rbi +182 -326
  164. data/spec/test_data/v6.0/expected_wizard/habtm_subjects.rbi +60 -220
  165. data/spec/test_data/v6.0/expected_wizard_wo_spellbook.rbi +182 -326
  166. metadata +46 -11
  167. data/lib/bundled_rbi/parameters.rbi +0 -28
  168. data/lib/sorbet-rails/custom_types/boolean_string.rb +0 -42
  169. data/lib/sorbet-rails/custom_types/integer_string.rb +0 -45
  170. data/lib/sorbet-rails/rails_mixins/custom_params_methods.rb +0 -57
  171. data/spec/boolean_string_spec.rb +0 -59
  172. data/spec/custom_params_methods_spec.rb +0 -138
  173. data/spec/integer_string_spec.rb +0 -46
@@ -21,13 +21,6 @@ module GeneratedUrlHelpers
21
21
  sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
22
22
  def test_index_url(*args, **kwargs); end
23
23
 
24
- # Sigs for route /rails/action_mailbox/mandrill/inbound_emails(.:format)
25
- sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
26
- def rails_mandrill_inbound_emails_path(*args, **kwargs); end
27
-
28
- sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
29
- def rails_mandrill_inbound_emails_url(*args, **kwargs); end
30
-
31
24
  # Sigs for route /rails/action_mailbox/postmark/inbound_emails(.:format)
32
25
  sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
33
26
  def rails_postmark_inbound_emails_path(*args, **kwargs); end
@@ -49,6 +42,20 @@ module GeneratedUrlHelpers
49
42
  sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
50
43
  def rails_sendgrid_inbound_emails_url(*args, **kwargs); end
51
44
 
45
+ # Sigs for route /rails/action_mailbox/mandrill/inbound_emails(.:format)
46
+ sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
47
+ def rails_mandrill_inbound_health_check_path(*args, **kwargs); end
48
+
49
+ sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
50
+ def rails_mandrill_inbound_health_check_url(*args, **kwargs); end
51
+
52
+ # Sigs for route /rails/action_mailbox/mandrill/inbound_emails(.:format)
53
+ sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
54
+ def rails_mandrill_inbound_emails_path(*args, **kwargs); end
55
+
56
+ sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
57
+ def rails_mandrill_inbound_emails_url(*args, **kwargs); end
58
+
52
59
  # Sigs for route /rails/action_mailbox/mailgun/inbound_emails/mime(.:format)
53
60
  sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
54
61
  def rails_mailgun_inbound_emails_path(*args, **kwargs); end
@@ -8,8 +8,6 @@ module ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
8
8
  end
9
9
 
10
10
  module ActiveRecord::SchemaMigration::GeneratedAttributeMethods
11
- extend T::Sig
12
-
13
11
  sig { returns(String) }
14
12
  def version; end
15
13
 
@@ -40,117 +38,11 @@ end
40
38
  class ActiveRecord::SchemaMigration < ActiveRecord::Base
41
39
  include ActiveRecord::SchemaMigration::GeneratedAttributeMethods
42
40
  extend ActiveRecord::SchemaMigration::CustomFinderMethods
43
- extend T::Sig
44
- extend T::Generic
41
+ extend ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
45
42
  RelationType = T.type_alias { T.any(ActiveRecord::SchemaMigration::ActiveRecord_Relation, ActiveRecord::SchemaMigration::ActiveRecord_Associations_CollectionProxy, ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
46
-
47
- sig { returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
48
- def self.all; end
49
-
50
- sig { params(block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
51
- def self.unscoped(&block); end
52
-
53
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
54
- def self.select(*args); end
55
-
56
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
57
- def self.reselect(*args); end
58
-
59
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
60
- def self.order(*args); end
61
-
62
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
63
- def self.reorder(*args); end
64
-
65
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
66
- def self.group(*args); end
67
-
68
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
69
- def self.limit(*args); end
70
-
71
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
72
- def self.offset(*args); end
73
-
74
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
75
- def self.joins(*args); end
76
-
77
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
78
- def self.left_joins(*args); end
79
-
80
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
81
- def self.left_outer_joins(*args); end
82
-
83
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
84
- def self.where(*args); end
85
-
86
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
87
- def self.rewhere(*args); end
88
-
89
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
90
- def self.preload(*args); end
91
-
92
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
93
- def self.extract_associated(*args); end
94
-
95
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
96
- def self.eager_load(*args); end
97
-
98
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
99
- def self.includes(*args); end
100
-
101
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
102
- def self.from(*args); end
103
-
104
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
105
- def self.lock(*args); end
106
-
107
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
108
- def self.readonly(*args); end
109
-
110
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
111
- def self.or(*args); end
112
-
113
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
114
- def self.having(*args); end
115
-
116
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
117
- def self.create_with(*args); end
118
-
119
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
120
- def self.distinct(*args); end
121
-
122
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
123
- def self.references(*args); end
124
-
125
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
126
- def self.none(*args); end
127
-
128
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
129
- def self.unscope(*args); end
130
-
131
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
132
- def self.optimizer_hints(*args); end
133
-
134
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
135
- def self.merge(*args); end
136
-
137
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
138
- def self.except(*args); end
139
-
140
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
141
- def self.only(*args); end
142
-
143
- sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
144
- def self.extending(*args, &block); end
145
43
  end
146
44
 
147
- class ActiveRecord::SchemaMigration::ActiveRecord_Relation < ActiveRecord::Relation
148
- include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
149
- include ActiveRecord::SchemaMigration::CustomFinderMethods
150
- extend T::Sig
151
- extend T::Generic
152
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
153
-
45
+ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
154
46
  sig { returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
155
47
  def all; end
156
48
 
@@ -249,19 +141,25 @@ class ActiveRecord::SchemaMigration::ActiveRecord_Relation < ActiveRecord::Relat
249
141
 
250
142
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
251
143
  def extending(*args, &block); end
252
- end
253
144
 
254
- class ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
255
- include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
256
- include ActiveRecord::SchemaMigration::CustomFinderMethods
257
- extend T::Sig
258
- extend T::Generic
259
- Elem = type_member(fixed: ActiveRecord::SchemaMigration)
145
+ sig do
146
+ params(
147
+ of: T.nilable(Integer),
148
+ start: T.nilable(Integer),
149
+ finish: T.nilable(Integer),
150
+ load: T.nilable(T::Boolean),
151
+ error_on_ignore: T.nilable(T::Boolean),
152
+ block: T.nilable(T.proc.params(e: ActiveRecord::SchemaMigration::ActiveRecord_Relation).void)
153
+ ).returns(ActiveRecord::Batches::BatchEnumerator)
154
+ end
155
+ def in_batches(of: 1000, start: nil, finish: nil, load: false, error_on_ignore: nil, &block); end
156
+ end
260
157
 
158
+ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
261
159
  sig { returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
262
160
  def all; end
263
161
 
264
- sig { params(block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
162
+ sig { params(block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
265
163
  def unscoped(&block); end
266
164
 
267
165
  sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
@@ -356,112 +254,38 @@ class ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation < ActiveRe
356
254
 
357
255
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
358
256
  def extending(*args, &block); end
257
+
258
+ sig do
259
+ params(
260
+ of: T.nilable(Integer),
261
+ start: T.nilable(Integer),
262
+ finish: T.nilable(Integer),
263
+ load: T.nilable(T::Boolean),
264
+ error_on_ignore: T.nilable(T::Boolean),
265
+ block: T.nilable(T.proc.params(e: ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation).void)
266
+ ).returns(ActiveRecord::Batches::BatchEnumerator)
267
+ end
268
+ def in_batches(of: 1000, start: nil, finish: nil, load: false, error_on_ignore: nil, &block); end
359
269
  end
360
270
 
361
- class ActiveRecord::SchemaMigration::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
271
+ class ActiveRecord::SchemaMigration::ActiveRecord_Relation < ActiveRecord::Relation
272
+ include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
362
273
  include ActiveRecord::SchemaMigration::CustomFinderMethods
363
- extend T::Sig
364
- extend T::Generic
274
+ include ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
365
275
  Elem = type_member(fixed: ActiveRecord::SchemaMigration)
276
+ end
366
277
 
367
- sig { returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
368
- def all; end
369
-
370
- sig { params(block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
371
- def unscoped(&block); end
372
-
373
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
374
- def select(*args); end
375
-
376
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
377
- def reselect(*args); end
378
-
379
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
380
- def order(*args); end
381
-
382
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
383
- def reorder(*args); end
384
-
385
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
386
- def group(*args); end
387
-
388
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
389
- def limit(*args); end
390
-
391
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
392
- def offset(*args); end
393
-
394
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
395
- def joins(*args); end
396
-
397
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
398
- def left_joins(*args); end
399
-
400
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
401
- def left_outer_joins(*args); end
402
-
403
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
404
- def where(*args); end
405
-
406
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
407
- def rewhere(*args); end
408
-
409
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
410
- def preload(*args); end
411
-
412
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
413
- def extract_associated(*args); end
414
-
415
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
416
- def eager_load(*args); end
417
-
418
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
419
- def includes(*args); end
420
-
421
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
422
- def from(*args); end
423
-
424
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
425
- def lock(*args); end
426
-
427
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
428
- def readonly(*args); end
429
-
430
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
431
- def or(*args); end
432
-
433
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
434
- def having(*args); end
435
-
436
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
437
- def create_with(*args); end
438
-
439
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
440
- def distinct(*args); end
441
-
442
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
443
- def references(*args); end
444
-
445
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
446
- def none(*args); end
447
-
448
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
449
- def unscope(*args); end
450
-
451
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
452
- def optimizer_hints(*args); end
453
-
454
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
455
- def merge(*args); end
456
-
457
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
458
- def except(*args); end
459
-
460
- sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
461
- def only(*args); end
278
+ class ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
279
+ include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
280
+ include ActiveRecord::SchemaMigration::CustomFinderMethods
281
+ include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
282
+ Elem = type_member(fixed: ActiveRecord::SchemaMigration)
283
+ end
462
284
 
463
- sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
464
- def extending(*args, &block); end
285
+ class ActiveRecord::SchemaMigration::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
286
+ include ActiveRecord::SchemaMigration::CustomFinderMethods
287
+ include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
288
+ Elem = type_member(fixed: ActiveRecord::SchemaMigration)
465
289
 
466
290
  sig { params(records: T.any(ActiveRecord::SchemaMigration, T::Array[ActiveRecord::SchemaMigration])).returns(T.self_type) }
467
291
  def <<(*records); end
@@ -8,8 +8,6 @@ module School::ActiveRelation_WhereNot
8
8
  end
9
9
 
10
10
  module School::GeneratedAttributeMethods
11
- extend T::Sig
12
-
13
11
  sig { returns(Integer) }
14
12
  def id; end
15
13
 
@@ -30,11 +28,18 @@ module School::GeneratedAttributeMethods
30
28
  end
31
29
 
32
30
  module School::GeneratedAssociationMethods
33
- extend T::Sig
34
-
35
31
  sig { returns(::Headmaster) }
36
32
  def headmaster; end
37
33
 
34
+ sig { params(args: T.untyped, block: T.nilable(T.proc.params(object: ::Headmaster).void)).returns(::Headmaster) }
35
+ def build_headmaster(*args, &block); end
36
+
37
+ sig { params(args: T.untyped, block: T.nilable(T.proc.params(object: ::Headmaster).void)).returns(::Headmaster) }
38
+ def create_headmaster(*args, &block); end
39
+
40
+ sig { params(args: T.untyped, block: T.nilable(T.proc.params(object: ::Headmaster).void)).returns(::Headmaster) }
41
+ def create_headmaster!(*args, &block); end
42
+
38
43
  sig { params(value: ::Headmaster).void }
39
44
  def headmaster=(value); end
40
45
  end
@@ -60,117 +65,11 @@ class School < ApplicationRecord
60
65
  include School::GeneratedAttributeMethods
61
66
  include School::GeneratedAssociationMethods
62
67
  extend School::CustomFinderMethods
63
- extend T::Sig
64
- extend T::Generic
68
+ extend School::QueryMethodsReturningRelation
65
69
  RelationType = T.type_alias { T.any(School::ActiveRecord_Relation, School::ActiveRecord_Associations_CollectionProxy, School::ActiveRecord_AssociationRelation) }
66
-
67
- sig { returns(School::ActiveRecord_Relation) }
68
- def self.all; end
69
-
70
- sig { params(block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
71
- def self.unscoped(&block); end
72
-
73
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
74
- def self.select(*args); end
75
-
76
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
77
- def self.reselect(*args); end
78
-
79
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
80
- def self.order(*args); end
81
-
82
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
83
- def self.reorder(*args); end
84
-
85
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
86
- def self.group(*args); end
87
-
88
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
89
- def self.limit(*args); end
90
-
91
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
92
- def self.offset(*args); end
93
-
94
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
95
- def self.joins(*args); end
96
-
97
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
98
- def self.left_joins(*args); end
99
-
100
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
101
- def self.left_outer_joins(*args); end
102
-
103
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
104
- def self.where(*args); end
105
-
106
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
107
- def self.rewhere(*args); end
108
-
109
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
110
- def self.preload(*args); end
111
-
112
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
113
- def self.extract_associated(*args); end
114
-
115
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
116
- def self.eager_load(*args); end
117
-
118
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
119
- def self.includes(*args); end
120
-
121
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
122
- def self.from(*args); end
123
-
124
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
125
- def self.lock(*args); end
126
-
127
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
128
- def self.readonly(*args); end
129
-
130
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
131
- def self.or(*args); end
132
-
133
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
134
- def self.having(*args); end
135
-
136
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
137
- def self.create_with(*args); end
138
-
139
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
140
- def self.distinct(*args); end
141
-
142
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
143
- def self.references(*args); end
144
-
145
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
146
- def self.none(*args); end
147
-
148
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
149
- def self.unscope(*args); end
150
-
151
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
152
- def self.optimizer_hints(*args); end
153
-
154
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
155
- def self.merge(*args); end
156
-
157
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
158
- def self.except(*args); end
159
-
160
- sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
161
- def self.only(*args); end
162
-
163
- sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
164
- def self.extending(*args, &block); end
165
70
  end
166
71
 
167
- class School::ActiveRecord_Relation < ActiveRecord::Relation
168
- include School::ActiveRelation_WhereNot
169
- include School::CustomFinderMethods
170
- extend T::Sig
171
- extend T::Generic
172
- Elem = type_member(fixed: School)
173
-
72
+ module School::QueryMethodsReturningRelation
174
73
  sig { returns(School::ActiveRecord_Relation) }
175
74
  def all; end
176
75
 
@@ -269,19 +168,25 @@ class School::ActiveRecord_Relation < ActiveRecord::Relation
269
168
 
270
169
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
271
170
  def extending(*args, &block); end
272
- end
273
171
 
274
- class School::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
275
- include School::ActiveRelation_WhereNot
276
- include School::CustomFinderMethods
277
- extend T::Sig
278
- extend T::Generic
279
- Elem = type_member(fixed: School)
172
+ sig do
173
+ params(
174
+ of: T.nilable(Integer),
175
+ start: T.nilable(Integer),
176
+ finish: T.nilable(Integer),
177
+ load: T.nilable(T::Boolean),
178
+ error_on_ignore: T.nilable(T::Boolean),
179
+ block: T.nilable(T.proc.params(e: School::ActiveRecord_Relation).void)
180
+ ).returns(ActiveRecord::Batches::BatchEnumerator)
181
+ end
182
+ def in_batches(of: 1000, start: nil, finish: nil, load: false, error_on_ignore: nil, &block); end
183
+ end
280
184
 
185
+ module School::QueryMethodsReturningAssociationRelation
281
186
  sig { returns(School::ActiveRecord_AssociationRelation) }
282
187
  def all; end
283
188
 
284
- sig { params(block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
189
+ sig { params(block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
285
190
  def unscoped(&block); end
286
191
 
287
192
  sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
@@ -376,112 +281,38 @@ class School::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelati
376
281
 
377
282
  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
378
283
  def extending(*args, &block); end
284
+
285
+ sig do
286
+ params(
287
+ of: T.nilable(Integer),
288
+ start: T.nilable(Integer),
289
+ finish: T.nilable(Integer),
290
+ load: T.nilable(T::Boolean),
291
+ error_on_ignore: T.nilable(T::Boolean),
292
+ block: T.nilable(T.proc.params(e: School::ActiveRecord_AssociationRelation).void)
293
+ ).returns(ActiveRecord::Batches::BatchEnumerator)
294
+ end
295
+ def in_batches(of: 1000, start: nil, finish: nil, load: false, error_on_ignore: nil, &block); end
379
296
  end
380
297
 
381
- class School::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
298
+ class School::ActiveRecord_Relation < ActiveRecord::Relation
299
+ include School::ActiveRelation_WhereNot
382
300
  include School::CustomFinderMethods
383
- extend T::Sig
384
- extend T::Generic
301
+ include School::QueryMethodsReturningRelation
385
302
  Elem = type_member(fixed: School)
303
+ end
386
304
 
387
- sig { returns(School::ActiveRecord_AssociationRelation) }
388
- def all; end
389
-
390
- sig { params(block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
391
- def unscoped(&block); end
392
-
393
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
394
- def select(*args); end
395
-
396
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
397
- def reselect(*args); end
398
-
399
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
400
- def order(*args); end
401
-
402
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
403
- def reorder(*args); end
404
-
405
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
406
- def group(*args); end
407
-
408
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
409
- def limit(*args); end
410
-
411
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
412
- def offset(*args); end
413
-
414
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
415
- def joins(*args); end
416
-
417
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
418
- def left_joins(*args); end
419
-
420
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
421
- def left_outer_joins(*args); end
422
-
423
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
424
- def where(*args); end
425
-
426
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
427
- def rewhere(*args); end
428
-
429
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
430
- def preload(*args); end
431
-
432
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
433
- def extract_associated(*args); end
434
-
435
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
436
- def eager_load(*args); end
437
-
438
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
439
- def includes(*args); end
440
-
441
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
442
- def from(*args); end
443
-
444
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
445
- def lock(*args); end
446
-
447
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
448
- def readonly(*args); end
449
-
450
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
451
- def or(*args); end
452
-
453
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
454
- def having(*args); end
455
-
456
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
457
- def create_with(*args); end
458
-
459
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
460
- def distinct(*args); end
461
-
462
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
463
- def references(*args); end
464
-
465
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
466
- def none(*args); end
467
-
468
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
469
- def unscope(*args); end
470
-
471
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
472
- def optimizer_hints(*args); end
473
-
474
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
475
- def merge(*args); end
476
-
477
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
478
- def except(*args); end
479
-
480
- sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
481
- def only(*args); end
305
+ class School::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
306
+ include School::ActiveRelation_WhereNot
307
+ include School::CustomFinderMethods
308
+ include School::QueryMethodsReturningAssociationRelation
309
+ Elem = type_member(fixed: School)
310
+ end
482
311
 
483
- sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
484
- def extending(*args, &block); end
312
+ class School::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
313
+ include School::CustomFinderMethods
314
+ include School::QueryMethodsReturningAssociationRelation
315
+ Elem = type_member(fixed: School)
485
316
 
486
317
  sig { params(records: T.any(School, T::Array[School])).returns(T.self_type) }
487
318
  def <<(*records); end