sorbet-rails 0.7.31 → 0.7.34
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci-master.yml +1 -1
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/publish-gem.yml +9 -19
- data/CONTRIBUTING.md +1 -0
- data/Gemfile +4 -0
- data/README.md +14 -3
- data/Rakefile +27 -1
- data/lib/sorbet-rails/active_record_rbi_formatter.rb +4 -4
- data/lib/sorbet-rails/model_plugins/active_record_querying.rb +27 -0
- data/lib/sorbet-rails/model_rbi_formatter.rb +3 -3
- data/lib/sorbet-rails/rails_mixins/active_record_overrides.rb +1 -1
- data/lib/sorbet-rails/rails_mixins/custom_finder_methods.rb +8 -0
- data/lib/sorbet-rails/tasks/rails_rbi.rake +15 -0
- data/sorbet-rails.gemspec +2 -2
- data/spec/bin/run_all_specs.sh +1 -0
- data/spec/custom_finder_methods_spec.rb +23 -0
- data/spec/generators/rails-template.rb +2 -7
- data/spec/rails_helper.rb +2 -0
- data/spec/rake_rails_rbi_models_spec.rb +1 -1
- data/spec/support/v5.2/Gemfile.lock +76 -67
- data/spec/support/v5.2/sorbet_test_cases.rb +8 -0
- data/spec/support/v6.0/Gemfile.lock +93 -85
- data/spec/support/v6.0/sorbet_test_cases.rb +8 -0
- data/spec/support/v6.1/Gemfile +1 -1
- data/spec/support/v6.1/Gemfile.lock +115 -108
- data/spec/support/v6.1/sorbet_test_cases.rb +11 -0
- data/spec/support/v7.0/.gitattributes +7 -0
- data/spec/support/v7.0/.gitignore +35 -0
- data/spec/support/v7.0/Gemfile +48 -0
- data/spec/support/v7.0/Gemfile.lock +218 -0
- data/spec/support/v7.0/README.md +24 -0
- data/spec/support/v7.0/Rakefile +6 -0
- data/spec/support/v7.0/app/assets/images/.keep +0 -0
- data/spec/support/v7.0/app/assets/stylesheets/application.css +1 -0
- data/spec/support/v7.0/app/controllers/application_controller.rb +3 -0
- data/spec/support/v7.0/app/controllers/concerns/.keep +0 -0
- data/spec/support/v7.0/app/helpers/application_helper.rb +3 -0
- data/spec/support/v7.0/app/helpers/bar_helper.rb +3 -0
- data/spec/support/v7.0/app/helpers/baz_helper.rb +3 -0
- data/spec/support/v7.0/app/helpers/foo_helper.rb +3 -0
- data/spec/support/v7.0/app/jobs/application_job.rb +8 -0
- data/spec/support/v7.0/app/jobs/award_house_point_hourglasses.rb +12 -0
- data/spec/support/v7.0/app/mailers/application_mailer.rb +5 -0
- data/spec/support/v7.0/app/mailers/daily_prophet_mailer.rb +9 -0
- data/spec/support/v7.0/app/mailers/hogwarts_acceptance_mailer.rb +29 -0
- data/spec/support/v7.0/app/models/application_record.rb +4 -0
- data/spec/support/v7.0/app/models/concerns/.keep +0 -0
- data/spec/support/v7.0/app/models/concerns/mythical.rb +11 -0
- data/spec/support/v7.0/app/models/headmaster.rb +8 -0
- data/spec/support/v7.0/app/models/potion.rb +6 -0
- data/spec/support/v7.0/app/models/robe.rb +4 -0
- data/spec/support/v7.0/app/models/school.rb +5 -0
- data/spec/support/v7.0/app/models/spell.rb +5 -0
- data/spec/support/v7.0/app/models/spell_book.rb +18 -0
- data/spec/support/v7.0/app/models/squib.rb +6 -0
- data/spec/support/v7.0/app/models/subject.rb +5 -0
- data/spec/support/v7.0/app/models/wand.rb +19 -0
- data/spec/support/v7.0/app/models/wizard.rb +65 -0
- data/spec/support/v7.0/app/views/layouts/application.html.erb +15 -0
- data/spec/support/v7.0/app/views/layouts/mailer.html.erb +13 -0
- data/spec/support/v7.0/app/views/layouts/mailer.text.erb +1 -0
- data/spec/support/v7.0/bin/bundle +114 -0
- data/spec/support/v7.0/bin/rails +4 -0
- data/spec/support/v7.0/bin/rake +4 -0
- data/spec/support/v7.0/bin/setup +33 -0
- data/spec/support/v7.0/config/application.rb +38 -0
- data/spec/support/v7.0/config/boot.rb +4 -0
- data/spec/support/v7.0/config/database.yml +25 -0
- data/spec/support/v7.0/config/environment.rb +6 -0
- data/spec/support/v7.0/config/environments/development.rb +69 -0
- data/spec/support/v7.0/config/environments/production.rb +83 -0
- data/spec/support/v7.0/config/environments/test.rb +61 -0
- data/spec/support/v7.0/config/initializers/content_security_policy.rb +26 -0
- data/spec/support/v7.0/config/initializers/filter_parameter_logging.rb +9 -0
- data/spec/support/v7.0/config/initializers/inflections.rb +17 -0
- data/spec/support/v7.0/config/initializers/permissions_policy.rb +12 -0
- data/spec/support/v7.0/config/initializers/sorbet_rails.rb +3 -0
- data/spec/support/v7.0/config/locales/en.yml +33 -0
- data/spec/support/v7.0/config/puma.rb +44 -0
- data/spec/support/v7.0/config/routes.rb +8 -0
- data/spec/support/v7.0/config/storage.yml +34 -0
- data/spec/support/v7.0/config.ru +6 -0
- data/spec/support/v7.0/db/migrate/20190620000001_create_wizards.rb +14 -0
- data/spec/support/v7.0/db/migrate/20190620000002_create_wands.rb +12 -0
- data/spec/support/v7.0/db/migrate/20190620000003_create_spell_books.rb +10 -0
- data/spec/support/v7.0/db/migrate/20190620000004_add_more_column_types_to_wands.rb +14 -0
- data/spec/support/v7.0/db/migrate/20190620000005_add_broom_to_wizard.rb +6 -0
- data/spec/support/v7.0/db/migrate/20190620000006_add_more_enums_to_wizard.rb +9 -0
- data/spec/support/v7.0/db/migrate/20190620000007_add_type_to_wizard.rb +6 -0
- data/spec/support/v7.0/db/migrate/20190620000008_add_robe_to_wizard.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000009_add_school.rb +10 -0
- data/spec/support/v7.0/db/migrate/20190620000010_add_subject.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000011_add_subjects_wizards.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000012_add_spell.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000013_add_spells_spell_books.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000014_create_headmasters.rb +9 -0
- data/spec/support/v7.0/db/migrate/20190620000015_add_serialized_to_wizards.rb +9 -0
- data/spec/support/v7.0/db/schema.rb +98 -0
- data/spec/support/v7.0/db/seeds.rb +8 -0
- data/spec/support/v7.0/lib/assets/.keep +0 -0
- data/spec/support/v7.0/lib/mythical_rbi_plugin.rb +16 -0
- data/spec/support/v7.0/lib/tasks/.keep +0 -0
- data/spec/support/v7.0/log/.keep +0 -0
- data/spec/support/v7.0/sorbet_test_cases.rb +439 -0
- data/spec/support/v7.0/storage/.keep +0 -0
- data/spec/support/v7.0/tmp/.keep +0 -0
- data/spec/support/v7.0/tmp/pids/.keep +0 -0
- data/spec/support/v7.0/tmp/storage/.keep +0 -0
- data/spec/support/v7.0/vendor/.keep +0 -0
- data/spec/test_data/v5.2/expected_active_record_base.rbi +6 -0
- data/spec/test_data/v5.2/expected_active_record_relation.rbi +8 -2
- data/spec/test_data/v5.2/expected_attachment.rbi +3 -3
- data/spec/test_data/v5.2/expected_blob.rbi +3 -3
- data/spec/test_data/v5.2/expected_habtm_subjects.rbi +3 -3
- data/spec/test_data/v5.2/expected_habtm_wizards.rbi +3 -3
- data/spec/test_data/v5.2/expected_headmaster.rbi +3 -3
- data/spec/test_data/v5.2/expected_internal_metadata.rbi +3 -3
- data/spec/test_data/v5.2/expected_potion.rbi +3 -3
- data/spec/test_data/v5.2/expected_robe.rbi +3 -3
- data/spec/test_data/v5.2/expected_schema_migration.rbi +3 -3
- data/spec/test_data/v5.2/expected_school.rbi +3 -3
- data/spec/test_data/v5.2/expected_spell/habtm_spell_books.rbi +3 -3
- data/spec/test_data/v5.2/expected_spell.rbi +3 -3
- data/spec/test_data/v5.2/expected_spell_book/habtm_spell_books.rbi +3 -3
- data/spec/test_data/v5.2/expected_spell_book/habtm_spells.rbi +3 -3
- data/spec/test_data/v5.2/expected_spell_book.rbi +3 -3
- data/spec/test_data/v5.2/expected_squib.rbi +3 -3
- data/spec/test_data/v5.2/expected_subject/habtm_wizards.rbi +3 -3
- data/spec/test_data/v5.2/expected_subject.rbi +3 -3
- data/spec/test_data/v5.2/expected_wand.rbi +3 -3
- data/spec/test_data/v5.2/expected_wizard/habtm_subjects.rbi +3 -3
- data/spec/test_data/v5.2/expected_wizard.rbi +3 -3
- data/spec/test_data/v5.2/expected_wizard_wo_spellbook.rbi +3 -3
- data/spec/test_data/v6.0/expected_active_record_base.rbi +6 -0
- data/spec/test_data/v6.0/expected_active_record_relation.rbi +8 -2
- data/spec/test_data/v6.0/expected_attachment.rbi +3 -3
- data/spec/test_data/v6.0/expected_blob.rbi +3 -3
- data/spec/test_data/v6.0/expected_habtm_subjects.rbi +3 -3
- data/spec/test_data/v6.0/expected_habtm_wizards.rbi +3 -3
- data/spec/test_data/v6.0/expected_headmaster.rbi +3 -3
- data/spec/test_data/v6.0/expected_internal_metadata.rbi +3 -3
- data/spec/test_data/v6.0/expected_potion.rbi +3 -3
- data/spec/test_data/v6.0/expected_robe.rbi +3 -3
- data/spec/test_data/v6.0/expected_schema_migration.rbi +3 -3
- data/spec/test_data/v6.0/expected_school.rbi +3 -3
- data/spec/test_data/v6.0/expected_spell/habtm_spell_books.rbi +3 -3
- data/spec/test_data/v6.0/expected_spell.rbi +3 -3
- data/spec/test_data/v6.0/expected_spell_book/habtm_spell_books.rbi +3 -3
- data/spec/test_data/v6.0/expected_spell_book/habtm_spells.rbi +3 -3
- data/spec/test_data/v6.0/expected_spell_book.rbi +3 -3
- data/spec/test_data/v6.0/expected_squib.rbi +3 -3
- data/spec/test_data/v6.0/expected_subject/habtm_wizards.rbi +3 -3
- data/spec/test_data/v6.0/expected_subject.rbi +3 -3
- data/spec/test_data/v6.0/expected_wand.rbi +3 -3
- data/spec/test_data/v6.0/expected_wizard/habtm_subjects.rbi +3 -3
- data/spec/test_data/v6.0/expected_wizard.rbi +3 -3
- data/spec/test_data/v6.0/expected_wizard_wo_spellbook.rbi +3 -3
- data/spec/test_data/v6.1/expected_active_record_base.rbi +6 -0
- data/spec/test_data/v6.1/expected_active_record_relation.rbi +8 -2
- data/spec/test_data/v6.1/expected_attachment.rbi +9 -3
- data/spec/test_data/v6.1/expected_blob.rbi +9 -3
- data/spec/test_data/v6.1/expected_habtm_subjects.rbi +3 -3
- data/spec/test_data/v6.1/expected_habtm_wizards.rbi +3 -3
- data/spec/test_data/v6.1/expected_headmaster.rbi +9 -3
- data/spec/test_data/v6.1/expected_internal_metadata.rbi +9 -3
- data/spec/test_data/v6.1/expected_potion.rbi +9 -3
- data/spec/test_data/v6.1/expected_record.rbi +9 -3
- data/spec/test_data/v6.1/expected_robe.rbi +9 -3
- data/spec/test_data/v6.1/expected_schema_migration.rbi +9 -3
- data/spec/test_data/v6.1/expected_school.rbi +9 -3
- data/spec/test_data/v6.1/expected_spell/habtm_spell_books.rbi +9 -3
- data/spec/test_data/v6.1/expected_spell.rbi +9 -3
- data/spec/test_data/v6.1/expected_spell_book/habtm_spell_books.rbi +3 -3
- data/spec/test_data/v6.1/expected_spell_book/habtm_spells.rbi +9 -3
- data/spec/test_data/v6.1/expected_spell_book.rbi +9 -3
- data/spec/test_data/v6.1/expected_squib.rbi +9 -3
- data/spec/test_data/v6.1/expected_subject/habtm_wizards.rbi +9 -3
- data/spec/test_data/v6.1/expected_subject.rbi +9 -3
- data/spec/test_data/v6.1/expected_variant_record.rbi +9 -3
- data/spec/test_data/v6.1/expected_wand.rbi +9 -3
- data/spec/test_data/v6.1/expected_wizard/habtm_subjects.rbi +9 -3
- data/spec/test_data/v6.1/expected_wizard.rbi +9 -3
- data/spec/test_data/v6.1/expected_wizard_wo_spellbook.rbi +9 -3
- data/spec/test_data/v7.0/expected_active_record_base.rbi +119 -0
- data/spec/test_data/v7.0/expected_active_record_relation.rbi +180 -0
- data/spec/test_data/v7.0/expected_application_job.rbi +20 -0
- data/spec/test_data/v7.0/expected_application_mailer.rbi +5 -0
- data/spec/test_data/v7.0/expected_attachment.rbi +358 -0
- data/spec/test_data/v7.0/expected_award_house_point_hourglasses.rbi +20 -0
- data/spec/test_data/v7.0/expected_blob.rbi +394 -0
- data/spec/test_data/v7.0/expected_custom_application_job.rbi +21 -0
- data/spec/test_data/v7.0/expected_custom_application_mailer.rbi +6 -0
- data/spec/test_data/v7.0/expected_custom_award_house_point_hourglasses.rbi +21 -0
- data/spec/test_data/v7.0/expected_custom_daily_prophet_mailer.rbi +8 -0
- data/spec/test_data/v7.0/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
- data/spec/test_data/v7.0/expected_daily_prophet_mailer.rbi +7 -0
- data/spec/test_data/v7.0/expected_headmaster.rbi +376 -0
- data/spec/test_data/v7.0/expected_helpers.rbi +27 -0
- data/spec/test_data/v7.0/expected_helpers_with_application_and_devise_helpers.rbi +34 -0
- data/spec/test_data/v7.0/expected_hogwarts_acceptance_mailer.rbi +20 -0
- data/spec/test_data/v7.0/expected_internal_metadata.rbi +346 -0
- data/spec/test_data/v7.0/expected_no_routes.rbi +4 -0
- data/spec/test_data/v7.0/expected_potion.rbi +328 -0
- data/spec/test_data/v7.0/expected_record.rbi +307 -0
- data/spec/test_data/v7.0/expected_robe.rbi +349 -0
- data/spec/test_data/v7.0/expected_routes.rbi +182 -0
- data/spec/test_data/v7.0/expected_schema_migration.rbi +319 -0
- data/spec/test_data/v7.0/expected_school.rbi +349 -0
- data/spec/test_data/v7.0/expected_spell/habtm_spell_books.rbi +367 -0
- data/spec/test_data/v7.0/expected_spell.rbi +340 -0
- data/spec/test_data/v7.0/expected_spell_book/habtm_spells.rbi +367 -0
- data/spec/test_data/v7.0/expected_spell_book.rbi +499 -0
- data/spec/test_data/v7.0/expected_squib.rbi +1204 -0
- data/spec/test_data/v7.0/expected_srb_tc_output.txt +1 -0
- data/spec/test_data/v7.0/expected_subject/habtm_wizards.rbi +367 -0
- data/spec/test_data/v7.0/expected_subject.rbi +340 -0
- data/spec/test_data/v7.0/expected_variant_record.rbi +382 -0
- data/spec/test_data/v7.0/expected_wand.rbi +611 -0
- data/spec/test_data/v7.0/expected_wizard/habtm_subjects.rbi +367 -0
- data/spec/test_data/v7.0/expected_wizard.rbi +1280 -0
- data/spec/test_data/v7.0/expected_wizard_wo_spellbook.rbi +1274 -0
- metadata +245 -3
@@ -169,6 +169,9 @@ module ActiveRecord::InternalMetadata::QueryMethodsReturningRelation
|
|
169
169
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveRecord::InternalMetadata::ActiveRecord_Relation) }
|
170
170
|
def select_columns(*args); end
|
171
171
|
|
172
|
+
sig { params(args: Symbol).returns(ActiveRecord::InternalMetadata::ActiveRecord_Relation) }
|
173
|
+
def where_missing(*args); end
|
174
|
+
|
172
175
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::InternalMetadata::ActiveRecord_Relation) }
|
173
176
|
def extending(*args, &block); end
|
174
177
|
|
@@ -285,6 +288,9 @@ module ActiveRecord::InternalMetadata::QueryMethodsReturningAssociationRelation
|
|
285
288
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveRecord::InternalMetadata::ActiveRecord_AssociationRelation) }
|
286
289
|
def select_columns(*args); end
|
287
290
|
|
291
|
+
sig { params(args: Symbol).returns(ActiveRecord::InternalMetadata::ActiveRecord_AssociationRelation) }
|
292
|
+
def where_missing(*args); end
|
293
|
+
|
288
294
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::InternalMetadata::ActiveRecord_AssociationRelation) }
|
289
295
|
def extending(*args, &block); end
|
290
296
|
|
@@ -305,20 +311,20 @@ class ActiveRecord::InternalMetadata::ActiveRecord_Relation < ActiveRecord::Rela
|
|
305
311
|
include ActiveRecord::InternalMetadata::ActiveRelation_WhereNot
|
306
312
|
include ActiveRecord::InternalMetadata::CustomFinderMethods
|
307
313
|
include ActiveRecord::InternalMetadata::QueryMethodsReturningRelation
|
308
|
-
Elem = type_member
|
314
|
+
Elem = type_member {{fixed: ActiveRecord::InternalMetadata}}
|
309
315
|
end
|
310
316
|
|
311
317
|
class ActiveRecord::InternalMetadata::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
312
318
|
include ActiveRecord::InternalMetadata::ActiveRelation_WhereNot
|
313
319
|
include ActiveRecord::InternalMetadata::CustomFinderMethods
|
314
320
|
include ActiveRecord::InternalMetadata::QueryMethodsReturningAssociationRelation
|
315
|
-
Elem = type_member
|
321
|
+
Elem = type_member {{fixed: ActiveRecord::InternalMetadata}}
|
316
322
|
end
|
317
323
|
|
318
324
|
class ActiveRecord::InternalMetadata::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
319
325
|
include ActiveRecord::InternalMetadata::CustomFinderMethods
|
320
326
|
include ActiveRecord::InternalMetadata::QueryMethodsReturningAssociationRelation
|
321
|
-
Elem = type_member
|
327
|
+
Elem = type_member {{fixed: ActiveRecord::InternalMetadata}}
|
322
328
|
|
323
329
|
sig { params(records: T.any(ActiveRecord::InternalMetadata, T::Array[ActiveRecord::InternalMetadata])).returns(T.self_type) }
|
324
330
|
def <<(*records); end
|
@@ -151,6 +151,9 @@ module Potion::QueryMethodsReturningRelation
|
|
151
151
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Potion::ActiveRecord_Relation) }
|
152
152
|
def select_columns(*args); end
|
153
153
|
|
154
|
+
sig { params(args: Symbol).returns(Potion::ActiveRecord_Relation) }
|
155
|
+
def where_missing(*args); end
|
156
|
+
|
154
157
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Potion::ActiveRecord_Relation) }
|
155
158
|
def extending(*args, &block); end
|
156
159
|
|
@@ -267,6 +270,9 @@ module Potion::QueryMethodsReturningAssociationRelation
|
|
267
270
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Potion::ActiveRecord_AssociationRelation) }
|
268
271
|
def select_columns(*args); end
|
269
272
|
|
273
|
+
sig { params(args: Symbol).returns(Potion::ActiveRecord_AssociationRelation) }
|
274
|
+
def where_missing(*args); end
|
275
|
+
|
270
276
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Potion::ActiveRecord_AssociationRelation) }
|
271
277
|
def extending(*args, &block); end
|
272
278
|
|
@@ -287,20 +293,20 @@ class Potion::ActiveRecord_Relation < ActiveRecord::Relation
|
|
287
293
|
include Potion::ActiveRelation_WhereNot
|
288
294
|
include Potion::CustomFinderMethods
|
289
295
|
include Potion::QueryMethodsReturningRelation
|
290
|
-
Elem = type_member
|
296
|
+
Elem = type_member {{fixed: Potion}}
|
291
297
|
end
|
292
298
|
|
293
299
|
class Potion::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
294
300
|
include Potion::ActiveRelation_WhereNot
|
295
301
|
include Potion::CustomFinderMethods
|
296
302
|
include Potion::QueryMethodsReturningAssociationRelation
|
297
|
-
Elem = type_member
|
303
|
+
Elem = type_member {{fixed: Potion}}
|
298
304
|
end
|
299
305
|
|
300
306
|
class Potion::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
301
307
|
include Potion::CustomFinderMethods
|
302
308
|
include Potion::QueryMethodsReturningAssociationRelation
|
303
|
-
Elem = type_member
|
309
|
+
Elem = type_member {{fixed: Potion}}
|
304
310
|
|
305
311
|
sig { params(records: T.any(Potion, T::Array[Potion])).returns(T.self_type) }
|
306
312
|
def <<(*records); end
|
@@ -130,6 +130,9 @@ module ActiveStorage::Record::QueryMethodsReturningRelation
|
|
130
130
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
131
131
|
def select_columns(*args); end
|
132
132
|
|
133
|
+
sig { params(args: Symbol).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
134
|
+
def where_missing(*args); end
|
135
|
+
|
133
136
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
134
137
|
def extending(*args, &block); end
|
135
138
|
|
@@ -246,6 +249,9 @@ module ActiveStorage::Record::QueryMethodsReturningAssociationRelation
|
|
246
249
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
247
250
|
def select_columns(*args); end
|
248
251
|
|
252
|
+
sig { params(args: Symbol).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
253
|
+
def where_missing(*args); end
|
254
|
+
|
249
255
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
250
256
|
def extending(*args, &block); end
|
251
257
|
|
@@ -266,20 +272,20 @@ class ActiveStorage::Record::ActiveRecord_Relation < ActiveRecord::Relation
|
|
266
272
|
include ActiveStorage::Record::ActiveRelation_WhereNot
|
267
273
|
include ActiveStorage::Record::CustomFinderMethods
|
268
274
|
include ActiveStorage::Record::QueryMethodsReturningRelation
|
269
|
-
Elem = type_member
|
275
|
+
Elem = type_member {{fixed: ActiveStorage::Record}}
|
270
276
|
end
|
271
277
|
|
272
278
|
class ActiveStorage::Record::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
273
279
|
include ActiveStorage::Record::ActiveRelation_WhereNot
|
274
280
|
include ActiveStorage::Record::CustomFinderMethods
|
275
281
|
include ActiveStorage::Record::QueryMethodsReturningAssociationRelation
|
276
|
-
Elem = type_member
|
282
|
+
Elem = type_member {{fixed: ActiveStorage::Record}}
|
277
283
|
end
|
278
284
|
|
279
285
|
class ActiveStorage::Record::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
280
286
|
include ActiveStorage::Record::CustomFinderMethods
|
281
287
|
include ActiveStorage::Record::QueryMethodsReturningAssociationRelation
|
282
|
-
Elem = type_member
|
288
|
+
Elem = type_member {{fixed: ActiveStorage::Record}}
|
283
289
|
|
284
290
|
sig { params(records: T.any(ActiveStorage::Record, T::Array[ActiveStorage::Record])).returns(T.self_type) }
|
285
291
|
def <<(*records); end
|
@@ -172,6 +172,9 @@ module Robe::QueryMethodsReturningRelation
|
|
172
172
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Robe::ActiveRecord_Relation) }
|
173
173
|
def select_columns(*args); end
|
174
174
|
|
175
|
+
sig { params(args: Symbol).returns(Robe::ActiveRecord_Relation) }
|
176
|
+
def where_missing(*args); end
|
177
|
+
|
175
178
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Robe::ActiveRecord_Relation) }
|
176
179
|
def extending(*args, &block); end
|
177
180
|
|
@@ -288,6 +291,9 @@ module Robe::QueryMethodsReturningAssociationRelation
|
|
288
291
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Robe::ActiveRecord_AssociationRelation) }
|
289
292
|
def select_columns(*args); end
|
290
293
|
|
294
|
+
sig { params(args: Symbol).returns(Robe::ActiveRecord_AssociationRelation) }
|
295
|
+
def where_missing(*args); end
|
296
|
+
|
291
297
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Robe::ActiveRecord_AssociationRelation) }
|
292
298
|
def extending(*args, &block); end
|
293
299
|
|
@@ -308,20 +314,20 @@ class Robe::ActiveRecord_Relation < ActiveRecord::Relation
|
|
308
314
|
include Robe::ActiveRelation_WhereNot
|
309
315
|
include Robe::CustomFinderMethods
|
310
316
|
include Robe::QueryMethodsReturningRelation
|
311
|
-
Elem = type_member
|
317
|
+
Elem = type_member {{fixed: Robe}}
|
312
318
|
end
|
313
319
|
|
314
320
|
class Robe::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
315
321
|
include Robe::ActiveRelation_WhereNot
|
316
322
|
include Robe::CustomFinderMethods
|
317
323
|
include Robe::QueryMethodsReturningAssociationRelation
|
318
|
-
Elem = type_member
|
324
|
+
Elem = type_member {{fixed: Robe}}
|
319
325
|
end
|
320
326
|
|
321
327
|
class Robe::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
322
328
|
include Robe::CustomFinderMethods
|
323
329
|
include Robe::QueryMethodsReturningAssociationRelation
|
324
|
-
Elem = type_member
|
330
|
+
Elem = type_member {{fixed: Robe}}
|
325
331
|
|
326
332
|
sig { params(records: T.any(Robe, T::Array[Robe])).returns(T.self_type) }
|
327
333
|
def <<(*records); end
|
@@ -142,6 +142,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
|
|
142
142
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
143
143
|
def select_columns(*args); end
|
144
144
|
|
145
|
+
sig { params(args: Symbol).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
146
|
+
def where_missing(*args); end
|
147
|
+
|
145
148
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
146
149
|
def extending(*args, &block); end
|
147
150
|
|
@@ -258,6 +261,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
|
|
258
261
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
259
262
|
def select_columns(*args); end
|
260
263
|
|
264
|
+
sig { params(args: Symbol).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
265
|
+
def where_missing(*args); end
|
266
|
+
|
261
267
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
262
268
|
def extending(*args, &block); end
|
263
269
|
|
@@ -278,20 +284,20 @@ class ActiveRecord::SchemaMigration::ActiveRecord_Relation < ActiveRecord::Relat
|
|
278
284
|
include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
|
279
285
|
include ActiveRecord::SchemaMigration::CustomFinderMethods
|
280
286
|
include ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
|
281
|
-
Elem = type_member
|
287
|
+
Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
|
282
288
|
end
|
283
289
|
|
284
290
|
class ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
285
291
|
include ActiveRecord::SchemaMigration::ActiveRelation_WhereNot
|
286
292
|
include ActiveRecord::SchemaMigration::CustomFinderMethods
|
287
293
|
include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
|
288
|
-
Elem = type_member
|
294
|
+
Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
|
289
295
|
end
|
290
296
|
|
291
297
|
class ActiveRecord::SchemaMigration::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
292
298
|
include ActiveRecord::SchemaMigration::CustomFinderMethods
|
293
299
|
include ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
|
294
|
-
Elem = type_member
|
300
|
+
Elem = type_member {{fixed: ActiveRecord::SchemaMigration}}
|
295
301
|
|
296
302
|
sig { params(records: T.any(ActiveRecord::SchemaMigration, T::Array[ActiveRecord::SchemaMigration])).returns(T.self_type) }
|
297
303
|
def <<(*records); end
|
@@ -172,6 +172,9 @@ module School::QueryMethodsReturningRelation
|
|
172
172
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(School::ActiveRecord_Relation) }
|
173
173
|
def select_columns(*args); end
|
174
174
|
|
175
|
+
sig { params(args: Symbol).returns(School::ActiveRecord_Relation) }
|
176
|
+
def where_missing(*args); end
|
177
|
+
|
175
178
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
|
176
179
|
def extending(*args, &block); end
|
177
180
|
|
@@ -288,6 +291,9 @@ module School::QueryMethodsReturningAssociationRelation
|
|
288
291
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(School::ActiveRecord_AssociationRelation) }
|
289
292
|
def select_columns(*args); end
|
290
293
|
|
294
|
+
sig { params(args: Symbol).returns(School::ActiveRecord_AssociationRelation) }
|
295
|
+
def where_missing(*args); end
|
296
|
+
|
291
297
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
|
292
298
|
def extending(*args, &block); end
|
293
299
|
|
@@ -308,20 +314,20 @@ class School::ActiveRecord_Relation < ActiveRecord::Relation
|
|
308
314
|
include School::ActiveRelation_WhereNot
|
309
315
|
include School::CustomFinderMethods
|
310
316
|
include School::QueryMethodsReturningRelation
|
311
|
-
Elem = type_member
|
317
|
+
Elem = type_member {{fixed: School}}
|
312
318
|
end
|
313
319
|
|
314
320
|
class School::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
315
321
|
include School::ActiveRelation_WhereNot
|
316
322
|
include School::CustomFinderMethods
|
317
323
|
include School::QueryMethodsReturningAssociationRelation
|
318
|
-
Elem = type_member
|
324
|
+
Elem = type_member {{fixed: School}}
|
319
325
|
end
|
320
326
|
|
321
327
|
class School::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
322
328
|
include School::CustomFinderMethods
|
323
329
|
include School::QueryMethodsReturningAssociationRelation
|
324
|
-
Elem = type_member
|
330
|
+
Elem = type_member {{fixed: School}}
|
325
331
|
|
326
332
|
sig { params(records: T.any(School, T::Array[School])).returns(T.self_type) }
|
327
333
|
def <<(*records); end
|
@@ -190,6 +190,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
|
|
190
190
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
191
191
|
def select_columns(*args); end
|
192
192
|
|
193
|
+
sig { params(args: Symbol).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
194
|
+
def where_missing(*args); end
|
195
|
+
|
193
196
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
194
197
|
def extending(*args, &block); end
|
195
198
|
|
@@ -306,6 +309,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
|
|
306
309
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
307
310
|
def select_columns(*args); end
|
308
311
|
|
312
|
+
sig { params(args: Symbol).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
313
|
+
def where_missing(*args); end
|
314
|
+
|
309
315
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
310
316
|
def extending(*args, &block); end
|
311
317
|
|
@@ -326,20 +332,20 @@ class Spell::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relation
|
|
326
332
|
include Spell::HABTM_SpellBooks::ActiveRelation_WhereNot
|
327
333
|
include Spell::HABTM_SpellBooks::CustomFinderMethods
|
328
334
|
include Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
|
329
|
-
Elem = type_member
|
335
|
+
Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
|
330
336
|
end
|
331
337
|
|
332
338
|
class Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
333
339
|
include Spell::HABTM_SpellBooks::ActiveRelation_WhereNot
|
334
340
|
include Spell::HABTM_SpellBooks::CustomFinderMethods
|
335
341
|
include Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
|
336
|
-
Elem = type_member
|
342
|
+
Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
|
337
343
|
end
|
338
344
|
|
339
345
|
class Spell::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
340
346
|
include Spell::HABTM_SpellBooks::CustomFinderMethods
|
341
347
|
include Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
|
342
|
-
Elem = type_member
|
348
|
+
Elem = type_member {{fixed: Spell::HABTM_SpellBooks}}
|
343
349
|
|
344
350
|
sig { params(records: T.any(Spell::HABTM_SpellBooks, T::Array[Spell::HABTM_SpellBooks])).returns(T.self_type) }
|
345
351
|
def <<(*records); end
|
@@ -163,6 +163,9 @@ module Spell::QueryMethodsReturningRelation
|
|
163
163
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::ActiveRecord_Relation) }
|
164
164
|
def select_columns(*args); end
|
165
165
|
|
166
|
+
sig { params(args: Symbol).returns(Spell::ActiveRecord_Relation) }
|
167
|
+
def where_missing(*args); end
|
168
|
+
|
166
169
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::ActiveRecord_Relation) }
|
167
170
|
def extending(*args, &block); end
|
168
171
|
|
@@ -279,6 +282,9 @@ module Spell::QueryMethodsReturningAssociationRelation
|
|
279
282
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Spell::ActiveRecord_AssociationRelation) }
|
280
283
|
def select_columns(*args); end
|
281
284
|
|
285
|
+
sig { params(args: Symbol).returns(Spell::ActiveRecord_AssociationRelation) }
|
286
|
+
def where_missing(*args); end
|
287
|
+
|
282
288
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::ActiveRecord_AssociationRelation) }
|
283
289
|
def extending(*args, &block); end
|
284
290
|
|
@@ -299,20 +305,20 @@ class Spell::ActiveRecord_Relation < ActiveRecord::Relation
|
|
299
305
|
include Spell::ActiveRelation_WhereNot
|
300
306
|
include Spell::CustomFinderMethods
|
301
307
|
include Spell::QueryMethodsReturningRelation
|
302
|
-
Elem = type_member
|
308
|
+
Elem = type_member {{fixed: Spell}}
|
303
309
|
end
|
304
310
|
|
305
311
|
class Spell::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
306
312
|
include Spell::ActiveRelation_WhereNot
|
307
313
|
include Spell::CustomFinderMethods
|
308
314
|
include Spell::QueryMethodsReturningAssociationRelation
|
309
|
-
Elem = type_member
|
315
|
+
Elem = type_member {{fixed: Spell}}
|
310
316
|
end
|
311
317
|
|
312
318
|
class Spell::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
313
319
|
include Spell::CustomFinderMethods
|
314
320
|
include Spell::QueryMethodsReturningAssociationRelation
|
315
|
-
Elem = type_member
|
321
|
+
Elem = type_member {{fixed: Spell}}
|
316
322
|
|
317
323
|
sig { params(records: T.any(Spell, T::Array[Spell])).returns(T.self_type) }
|
318
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
|
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
|
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
|
496
|
+
Elem = type_member {{fixed: SpellBook::HABTM_SpellBooks}}
|
497
497
|
|
498
498
|
sig { returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
499
499
|
def all; end
|
@@ -190,6 +190,9 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningRelation
|
|
190
190
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
191
191
|
def select_columns(*args); end
|
192
192
|
|
193
|
+
sig { params(args: Symbol).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
194
|
+
def where_missing(*args); end
|
195
|
+
|
193
196
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
194
197
|
def extending(*args, &block); end
|
195
198
|
|
@@ -306,6 +309,9 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
|
|
306
309
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
307
310
|
def select_columns(*args); end
|
308
311
|
|
312
|
+
sig { params(args: Symbol).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
313
|
+
def where_missing(*args); end
|
314
|
+
|
309
315
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
310
316
|
def extending(*args, &block); end
|
311
317
|
|
@@ -326,20 +332,20 @@ class SpellBook::HABTM_Spells::ActiveRecord_Relation < ActiveRecord::Relation
|
|
326
332
|
include SpellBook::HABTM_Spells::ActiveRelation_WhereNot
|
327
333
|
include SpellBook::HABTM_Spells::CustomFinderMethods
|
328
334
|
include SpellBook::HABTM_Spells::QueryMethodsReturningRelation
|
329
|
-
Elem = type_member
|
335
|
+
Elem = type_member {{fixed: SpellBook::HABTM_Spells}}
|
330
336
|
end
|
331
337
|
|
332
338
|
class SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
333
339
|
include SpellBook::HABTM_Spells::ActiveRelation_WhereNot
|
334
340
|
include SpellBook::HABTM_Spells::CustomFinderMethods
|
335
341
|
include SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
|
336
|
-
Elem = type_member
|
342
|
+
Elem = type_member {{fixed: SpellBook::HABTM_Spells}}
|
337
343
|
end
|
338
344
|
|
339
345
|
class SpellBook::HABTM_Spells::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
340
346
|
include SpellBook::HABTM_Spells::CustomFinderMethods
|
341
347
|
include SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
|
342
|
-
Elem = type_member
|
348
|
+
Elem = type_member {{fixed: SpellBook::HABTM_Spells}}
|
343
349
|
|
344
350
|
sig { params(records: T.any(SpellBook::HABTM_Spells, T::Array[SpellBook::HABTM_Spells])).returns(T.self_type) }
|
345
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
|
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
|
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
|
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
|
@@ -354,6 +354,9 @@ module SpellBook::QueryMethodsReturningRelation
|
|
354
354
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(SpellBook::ActiveRecord_Relation) }
|
355
355
|
def select_columns(*args); end
|
356
356
|
|
357
|
+
sig { params(args: Symbol).returns(SpellBook::ActiveRecord_Relation) }
|
358
|
+
def where_missing(*args); end
|
359
|
+
|
357
360
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::ActiveRecord_Relation) }
|
358
361
|
def extending(*args, &block); end
|
359
362
|
|
@@ -470,6 +473,9 @@ module SpellBook::QueryMethodsReturningAssociationRelation
|
|
470
473
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
471
474
|
def select_columns(*args); end
|
472
475
|
|
476
|
+
sig { params(args: Symbol).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
477
|
+
def where_missing(*args); end
|
478
|
+
|
473
479
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
474
480
|
def extending(*args, &block); end
|
475
481
|
|
@@ -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
|
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
|
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
|
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
|
@@ -1027,6 +1027,9 @@ module Squib::QueryMethodsReturningRelation
|
|
1027
1027
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Squib::ActiveRecord_Relation) }
|
1028
1028
|
def select_columns(*args); end
|
1029
1029
|
|
1030
|
+
sig { params(args: Symbol).returns(Squib::ActiveRecord_Relation) }
|
1031
|
+
def where_missing(*args); end
|
1032
|
+
|
1030
1033
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Squib::ActiveRecord_Relation) }
|
1031
1034
|
def extending(*args, &block); end
|
1032
1035
|
|
@@ -1143,6 +1146,9 @@ module Squib::QueryMethodsReturningAssociationRelation
|
|
1143
1146
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Squib::ActiveRecord_AssociationRelation) }
|
1144
1147
|
def select_columns(*args); end
|
1145
1148
|
|
1149
|
+
sig { params(args: Symbol).returns(Squib::ActiveRecord_AssociationRelation) }
|
1150
|
+
def where_missing(*args); end
|
1151
|
+
|
1146
1152
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Squib::ActiveRecord_AssociationRelation) }
|
1147
1153
|
def extending(*args, &block); end
|
1148
1154
|
|
@@ -190,6 +190,9 @@ module Subject::HABTM_Wizards::QueryMethodsReturningRelation
|
|
190
190
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Subject::HABTM_Wizards::ActiveRecord_Relation) }
|
191
191
|
def select_columns(*args); end
|
192
192
|
|
193
|
+
sig { params(args: Symbol).returns(Subject::HABTM_Wizards::ActiveRecord_Relation) }
|
194
|
+
def where_missing(*args); end
|
195
|
+
|
193
196
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Subject::HABTM_Wizards::ActiveRecord_Relation) }
|
194
197
|
def extending(*args, &block); end
|
195
198
|
|
@@ -306,6 +309,9 @@ module Subject::HABTM_Wizards::QueryMethodsReturningAssociationRelation
|
|
306
309
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Subject::HABTM_Wizards::ActiveRecord_AssociationRelation) }
|
307
310
|
def select_columns(*args); end
|
308
311
|
|
312
|
+
sig { params(args: Symbol).returns(Subject::HABTM_Wizards::ActiveRecord_AssociationRelation) }
|
313
|
+
def where_missing(*args); end
|
314
|
+
|
309
315
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Subject::HABTM_Wizards::ActiveRecord_AssociationRelation) }
|
310
316
|
def extending(*args, &block); end
|
311
317
|
|
@@ -326,20 +332,20 @@ class Subject::HABTM_Wizards::ActiveRecord_Relation < ActiveRecord::Relation
|
|
326
332
|
include Subject::HABTM_Wizards::ActiveRelation_WhereNot
|
327
333
|
include Subject::HABTM_Wizards::CustomFinderMethods
|
328
334
|
include Subject::HABTM_Wizards::QueryMethodsReturningRelation
|
329
|
-
Elem = type_member
|
335
|
+
Elem = type_member {{fixed: Subject::HABTM_Wizards}}
|
330
336
|
end
|
331
337
|
|
332
338
|
class Subject::HABTM_Wizards::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
333
339
|
include Subject::HABTM_Wizards::ActiveRelation_WhereNot
|
334
340
|
include Subject::HABTM_Wizards::CustomFinderMethods
|
335
341
|
include Subject::HABTM_Wizards::QueryMethodsReturningAssociationRelation
|
336
|
-
Elem = type_member
|
342
|
+
Elem = type_member {{fixed: Subject::HABTM_Wizards}}
|
337
343
|
end
|
338
344
|
|
339
345
|
class Subject::HABTM_Wizards::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
340
346
|
include Subject::HABTM_Wizards::CustomFinderMethods
|
341
347
|
include Subject::HABTM_Wizards::QueryMethodsReturningAssociationRelation
|
342
|
-
Elem = type_member
|
348
|
+
Elem = type_member {{fixed: Subject::HABTM_Wizards}}
|
343
349
|
|
344
350
|
sig { params(records: T.any(Subject::HABTM_Wizards, T::Array[Subject::HABTM_Wizards])).returns(T.self_type) }
|
345
351
|
def <<(*records); end
|
@@ -163,6 +163,9 @@ module Subject::QueryMethodsReturningRelation
|
|
163
163
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Subject::ActiveRecord_Relation) }
|
164
164
|
def select_columns(*args); end
|
165
165
|
|
166
|
+
sig { params(args: Symbol).returns(Subject::ActiveRecord_Relation) }
|
167
|
+
def where_missing(*args); end
|
168
|
+
|
166
169
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Subject::ActiveRecord_Relation) }
|
167
170
|
def extending(*args, &block); end
|
168
171
|
|
@@ -279,6 +282,9 @@ module Subject::QueryMethodsReturningAssociationRelation
|
|
279
282
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(Subject::ActiveRecord_AssociationRelation) }
|
280
283
|
def select_columns(*args); end
|
281
284
|
|
285
|
+
sig { params(args: Symbol).returns(Subject::ActiveRecord_AssociationRelation) }
|
286
|
+
def where_missing(*args); end
|
287
|
+
|
282
288
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Subject::ActiveRecord_AssociationRelation) }
|
283
289
|
def extending(*args, &block); end
|
284
290
|
|
@@ -299,20 +305,20 @@ class Subject::ActiveRecord_Relation < ActiveRecord::Relation
|
|
299
305
|
include Subject::ActiveRelation_WhereNot
|
300
306
|
include Subject::CustomFinderMethods
|
301
307
|
include Subject::QueryMethodsReturningRelation
|
302
|
-
Elem = type_member
|
308
|
+
Elem = type_member {{fixed: Subject}}
|
303
309
|
end
|
304
310
|
|
305
311
|
class Subject::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
306
312
|
include Subject::ActiveRelation_WhereNot
|
307
313
|
include Subject::CustomFinderMethods
|
308
314
|
include Subject::QueryMethodsReturningAssociationRelation
|
309
|
-
Elem = type_member
|
315
|
+
Elem = type_member {{fixed: Subject}}
|
310
316
|
end
|
311
317
|
|
312
318
|
class Subject::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
313
319
|
include Subject::CustomFinderMethods
|
314
320
|
include Subject::QueryMethodsReturningAssociationRelation
|
315
|
-
Elem = type_member
|
321
|
+
Elem = type_member {{fixed: Subject}}
|
316
322
|
|
317
323
|
sig { params(records: T.any(Subject, T::Array[Subject])).returns(T.self_type) }
|
318
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
|
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
|
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
|
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
|
@@ -175,6 +175,9 @@ module ActiveStorage::VariantRecord::QueryMethodsReturningRelation
|
|
175
175
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveStorage::VariantRecord::ActiveRecord_Relation) }
|
176
176
|
def select_columns(*args); end
|
177
177
|
|
178
|
+
sig { params(args: Symbol).returns(ActiveStorage::VariantRecord::ActiveRecord_Relation) }
|
179
|
+
def where_missing(*args); end
|
180
|
+
|
178
181
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveStorage::VariantRecord::ActiveRecord_Relation) }
|
179
182
|
def extending(*args, &block); end
|
180
183
|
|
@@ -291,6 +294,9 @@ module ActiveStorage::VariantRecord::QueryMethodsReturningAssociationRelation
|
|
291
294
|
sig { params(args: T.any(String, Symbol, T::Array[T.any(String, Symbol)])).returns(ActiveStorage::VariantRecord::ActiveRecord_AssociationRelation) }
|
292
295
|
def select_columns(*args); end
|
293
296
|
|
297
|
+
sig { params(args: Symbol).returns(ActiveStorage::VariantRecord::ActiveRecord_AssociationRelation) }
|
298
|
+
def where_missing(*args); end
|
299
|
+
|
294
300
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveStorage::VariantRecord::ActiveRecord_AssociationRelation) }
|
295
301
|
def extending(*args, &block); end
|
296
302
|
|