sorbet-rails 0.7.4 → 0.7.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +7 -0
- data/.github/workflows/ci-master.yml +28 -0
- data/.github/workflows/ci.yml +26 -0
- data/.github/workflows/publish-gem.yml +21 -0
- data/CONTRIBUTING.md +1 -2
- data/Gemfile +7 -9
- data/README.md +7 -3
- data/Rakefile +13 -24
- data/lib/sorbet-rails/active_record_rbi_formatter.rb +12 -9
- data/lib/sorbet-rails/dependent_gem_rbis/activerecord.rbi +4 -0
- data/lib/sorbet-rails/dependent_gem_rbis/parlour.rbi +1 -1
- data/lib/sorbet-rails/gem_plugins/aasm_plugin.rb +50 -0
- data/lib/sorbet-rails/gem_plugins/money_rails_plugin.rb +76 -0
- data/lib/sorbet-rails/job_rbi_formatter.rb +1 -1
- data/lib/sorbet-rails/model_plugins/active_record_serialized_attribute.rb +3 -2
- data/lib/sorbet-rails/model_plugins/base.rb +8 -1
- data/lib/sorbet-rails/model_plugins/custom_finder_methods.rb +1 -1
- data/lib/sorbet-rails/model_plugins/plugins.rb +6 -0
- data/lib/sorbet-rails/railtie.rb +1 -1
- data/lib/sorbet-rails/routes_rbi_formatter.rb +8 -0
- data/lib/sorbet-rails/tasks/rails_rbi.rake +12 -8
- data/sorbet-rails.gemspec +2 -2
- data/spec/bin/run_all_specs.sh +3 -4
- data/spec/bin/run_spec.sh +4 -1
- data/spec/generators/rails-template.rb +3 -20
- data/spec/generators/sorbet_test_cases.rb +17 -4
- data/spec/rails_helper.rb +5 -5
- data/spec/rake_rails_rbi_models_spec.rb +11 -4
- data/spec/sorbet_spec.rb +2 -1
- data/spec/support/v5.2/Gemfile +1 -3
- data/spec/support/v5.2/Gemfile.lock +66 -71
- data/spec/support/v5.2/app/controllers/application_controller.rb +1 -1
- data/spec/support/v5.2/app/mailers/application_mailer.rb +1 -1
- data/spec/support/v5.2/app/mailers/daily_prophet_mailer.rb +1 -1
- data/spec/support/v5.2/app/mailers/hogwarts_acceptance_mailer.rb +1 -1
- data/spec/support/v5.2/app/models/spell_book.rb +1 -1
- data/spec/support/v5.2/app/models/wand.rb +1 -1
- data/spec/support/v5.2/app/models/wizard.rb +1 -1
- data/spec/support/v5.2/config/environments/development.rb +1 -1
- data/spec/support/v5.2/config/environments/production.rb +1 -1
- data/spec/support/v5.2/config/environments/test.rb +1 -1
- data/spec/support/v5.2/config/routes.rb +1 -1
- data/spec/support/v5.2/sorbet_test_cases.rb +17 -4
- data/spec/support/v6.0/Gemfile +1 -1
- data/spec/support/v6.0/Gemfile.lock +81 -85
- data/spec/support/v6.0/app/mailers/application_mailer.rb +1 -1
- data/spec/support/v6.0/config/environments/development.rb +1 -1
- data/spec/support/v6.0/config/environments/test.rb +1 -1
- data/spec/support/v6.0/config/initializers/cookies_serializer.rb +1 -1
- data/spec/support/v6.0/config/initializers/sorbet_rails.rb +1 -1
- data/spec/support/v6.0/config/routes.rb +1 -1
- data/spec/support/v6.0/sorbet_test_cases.rb +17 -4
- data/spec/support/{v5.1 → v6.1}/.gitignore +13 -2
- data/spec/support/{v5.1 → v6.1}/Gemfile +12 -15
- data/spec/support/{v5.1 → v6.1}/Gemfile.lock +87 -59
- data/spec/support/{v5.0 → v6.1}/README.md +0 -0
- data/spec/support/{v5.0 → v6.1}/Rakefile +0 -0
- data/spec/support/{v5.0 → v6.1}/app/assets/config/manifest.js +0 -0
- data/spec/support/{v5.0 → v6.1}/app/assets/images/.keep +0 -0
- data/spec/support/{v5.1 → v6.1}/app/assets/stylesheets/application.css +0 -0
- data/spec/support/{v5.0 → v6.1}/app/controllers/application_controller.rb +1 -2
- data/spec/support/{v5.0 → v6.1}/app/controllers/concerns/.keep +0 -0
- data/spec/support/{v5.0 → v6.1}/app/helpers/application_helper.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/helpers/bar_helper.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/helpers/baz_helper.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/helpers/foo_helper.rb +0 -0
- data/spec/support/v6.1/app/jobs/application_job.rb +8 -0
- data/spec/support/{v5.0 → v6.1}/app/jobs/award_house_point_hourglasses.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/app/mailers/application_mailer.rb +1 -1
- data/spec/support/{v5.0 → v6.1}/app/mailers/daily_prophet_mailer.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/mailers/hogwarts_acceptance_mailer.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/application_record.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/concerns/.keep +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/concerns/mythical.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/app/models/headmaster.rb +1 -1
- data/spec/support/{v5.1 → v6.1}/app/models/potion.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/app/models/robe.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/school.rb +1 -1
- data/spec/support/{v5.1 → v6.1}/app/models/spell.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/spell_book.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/squib.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/app/models/subject.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/wand.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/models/wizard.rb +2 -1
- data/spec/support/{v5.1 → v6.1}/app/views/layouts/application.html.erb +2 -1
- data/spec/support/{v5.0 → v6.1}/app/views/layouts/mailer.html.erb +0 -0
- data/spec/support/{v5.0 → v6.1}/app/views/layouts/mailer.text.erb +0 -0
- data/spec/support/v6.1/bin/bundle +114 -0
- data/spec/support/{v5.0 → v6.1}/bin/rails +0 -0
- data/spec/support/{v5.0 → v6.1}/bin/rake +0 -0
- data/spec/support/{v5.1 → v6.1}/bin/setup +6 -11
- data/spec/support/{v5.1 → v6.1}/config/application.rb +8 -4
- data/spec/support/{v5.0 → v6.1}/config/boot.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/config/database.yml +1 -1
- data/spec/support/{v5.0 → v6.1}/config/environment.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/config/environments/development.rb +12 -4
- data/spec/support/{v5.1 → v6.1}/config/environments/production.rb +29 -7
- data/spec/support/{v5.1 → v6.1}/config/environments/test.rb +13 -7
- data/spec/support/{v5.0 → v6.1}/config/initializers/application_controller_renderer.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/config/initializers/backtrace_silencers.rb +0 -0
- data/spec/support/v6.1/config/initializers/content_security_policy.rb +29 -0
- data/spec/support/{v5.1 → v6.1}/config/initializers/cookies_serializer.rb +1 -1
- data/spec/support/{v5.0 → v6.1}/config/initializers/filter_parameter_logging.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/config/initializers/inflections.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/config/initializers/mime_types.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/config/initializers/sorbet_rails.rb +1 -1
- data/spec/support/{v5.0 → v6.1}/config/initializers/wrap_parameters.rb +0 -0
- data/spec/support/{v5.1 → v6.1}/config/locales/en.yml +1 -1
- data/spec/support/{v5.1 → v6.1}/config/puma.rb +8 -26
- data/spec/support/v6.1/config/routes.rb +5 -0
- data/spec/support/v6.1/config/storage.yml +34 -0
- data/spec/support/{v5.0 → v6.1}/config.ru +0 -0
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000001_create_wizards.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000002_create_wands.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000003_create_spell_books.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000004_add_more_column_types_to_wands.rb +2 -2
- data/spec/support/v6.1/db/migrate/20190620000005_add_broom_to_wizard.rb +6 -0
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000006_add_more_enums_to_wizard.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000007_add_type_to_wizard.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000008_add_robe_to_wizard.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000009_add_school.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000010_add_subject.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000011_add_subjects_wizards.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000012_add_spell.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/migrate/20190620000013_add_spells_spell_books.rb +2 -2
- data/spec/support/{v5.0 → v6.1}/db/migrate/20190620000014_create_headmasters.rb +2 -2
- data/spec/support/{v5.0 → v6.1}/db/migrate/20190620000015_add_serialized_to_wizards.rb +2 -2
- data/spec/support/{v5.1 → v6.1}/db/schema.rb +14 -11
- data/spec/support/{v5.0 → v6.1}/db/seeds.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/lib/assets/.keep +0 -0
- data/spec/support/{v5.0 → v6.1}/lib/mythical_rbi_plugin.rb +0 -0
- data/spec/support/{v5.0 → v6.1}/lib/tasks/.keep +0 -0
- data/spec/support/{v5.0 → v6.1}/log/.keep +0 -0
- data/spec/support/{v5.0 → v6.1}/sorbet_test_cases.rb +17 -4
- data/spec/support/{v5.0/tmp → v6.1/storage}/.keep +0 -0
- data/spec/support/{v5.0/vendor/assets/stylesheets → v6.1/tmp}/.keep +0 -0
- data/spec/support/{v5.1/app/assets/images → v6.1/tmp/pids}/.keep +0 -0
- data/spec/support/{v5.1/app/controllers/concerns → v6.1/vendor}/.keep +0 -0
- data/spec/test_data/v5.2/expected_active_record_base.rbi +10 -10
- data/spec/test_data/v5.2/expected_active_record_relation.rbi +10 -10
- data/spec/test_data/v5.2/expected_attachment.rbi +1 -1
- data/spec/test_data/v5.2/expected_blob.rbi +1 -1
- data/spec/test_data/v5.2/expected_headmaster.rbi +1 -1
- data/spec/test_data/v5.2/expected_internal_metadata.rbi +1 -1
- data/spec/test_data/v5.2/expected_potion.rbi +1 -1
- data/spec/test_data/v5.2/expected_robe.rbi +1 -1
- data/spec/test_data/v5.2/expected_routes.rbi +8 -0
- data/spec/test_data/v5.2/expected_schema_migration.rbi +1 -1
- data/spec/test_data/v5.2/expected_school.rbi +1 -1
- data/spec/test_data/v5.2/expected_spell/habtm_spell_books.rbi +1 -1
- data/spec/test_data/v5.2/expected_spell.rbi +1 -1
- data/spec/test_data/v5.2/expected_spell_book/habtm_spells.rbi +1 -1
- data/spec/test_data/v5.2/expected_spell_book.rbi +1 -1
- data/spec/test_data/v5.2/expected_squib.rbi +3 -3
- data/spec/test_data/v5.2/expected_subject/habtm_wizards.rbi +1 -1
- data/spec/test_data/v5.2/expected_subject.rbi +1 -1
- data/spec/test_data/v5.2/expected_wand.rbi +1 -1
- data/spec/test_data/v5.2/expected_wizard/habtm_subjects.rbi +1 -1
- 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 +10 -10
- data/spec/test_data/v6.0/expected_active_record_relation.rbi +10 -10
- data/spec/test_data/v6.0/expected_attachment.rbi +1 -1
- data/spec/test_data/v6.0/expected_blob.rbi +1 -1
- data/spec/test_data/v6.0/expected_headmaster.rbi +1 -1
- data/spec/test_data/v6.0/expected_internal_metadata.rbi +1 -1
- data/spec/test_data/v6.0/expected_potion.rbi +1 -1
- data/spec/test_data/v6.0/expected_robe.rbi +1 -1
- data/spec/test_data/v6.0/expected_routes.rbi +8 -0
- data/spec/test_data/v6.0/expected_schema_migration.rbi +1 -1
- data/spec/test_data/v6.0/expected_school.rbi +1 -1
- data/spec/test_data/v6.0/expected_spell/habtm_spell_books.rbi +1 -1
- data/spec/test_data/v6.0/expected_spell.rbi +1 -1
- data/spec/test_data/v6.0/expected_spell_book/habtm_spells.rbi +1 -1
- data/spec/test_data/v6.0/expected_spell_book.rbi +1 -1
- data/spec/test_data/v6.0/expected_squib.rbi +3 -3
- data/spec/test_data/v6.0/expected_subject/habtm_wizards.rbi +1 -1
- data/spec/test_data/v6.0/expected_subject.rbi +1 -1
- data/spec/test_data/v6.0/expected_wand.rbi +1 -1
- data/spec/test_data/v6.0/expected_wizard/habtm_subjects.rbi +1 -1
- 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/{v5.1 → v6.1}/expected_active_record_base.rbi +16 -16
- data/spec/test_data/{v5.1 → v6.1}/expected_active_record_relation.rbi +26 -29
- data/spec/test_data/{v5.0 → v6.1}/expected_application_job.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_application_mailer.rbi +0 -0
- data/spec/test_data/v6.1/expected_attachment.rbi +328 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_award_house_point_hourglasses.rbi +0 -0
- data/spec/test_data/v6.1/expected_blob.rbi +376 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_custom_application_job.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_custom_application_mailer.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_custom_award_house_point_hourglasses.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_custom_daily_prophet_mailer.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_custom_hogwarts_acceptance_mailer.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_daily_prophet_mailer.rbi +0 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_habtm_subjects.rbi +48 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_habtm_wizards.rbi +48 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_headmaster.rbi +25 -1
- data/spec/test_data/{v5.0 → v6.1}/expected_helpers.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_helpers_with_application_and_devise_helpers.rbi +0 -0
- data/spec/test_data/{v5.0 → v6.1}/expected_hogwarts_acceptance_mailer.rbi +0 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_internal_metadata.rbi +25 -1
- data/spec/test_data/{v5.0 → v6.1}/expected_no_routes.rbi +0 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_potion.rbi +25 -1
- data/spec/test_data/v6.1/expected_record.rbi +289 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_robe.rbi +25 -1
- data/spec/test_data/v6.1/expected_routes.rbi +175 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_schema_migration.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_school.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_spell/habtm_spell_books.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_spell.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_spell_book/habtm_spell_books.rbi +48 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_spell_book/habtm_spells.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_spell_book.rbi +61 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_squib.rbi +497 -59
- data/spec/test_data/{v5.0 → v6.1}/expected_srb_tc_output.txt +0 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_subject/habtm_wizards.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_subject.rbi +25 -1
- data/spec/test_data/v6.1/expected_variant_record.rbi +364 -0
- data/spec/test_data/{v5.1 → v6.1}/expected_wand.rbi +91 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_wizard/habtm_subjects.rbi +25 -1
- data/spec/test_data/{v5.1 → v6.1}/expected_wizard.rbi +497 -59
- data/spec/test_data/{v5.1 → v6.1}/expected_wizard_wo_spellbook.rbi +491 -53
- metadata +266 -501
- data/.travis.yml +0 -42
- data/lib/sorbet-rails/type_assert/actionpack.rbi +0 -4
- data/spec/support/v5.0/.gitignore +0 -21
- data/spec/support/v5.0/Gemfile +0 -37
- data/spec/support/v5.0/Gemfile.lock +0 -161
- data/spec/support/v5.0/app/assets/stylesheets/application.css +0 -15
- data/spec/support/v5.0/app/jobs/application_job.rb +0 -3
- data/spec/support/v5.0/app/mailers/application_mailer.rb +0 -5
- data/spec/support/v5.0/app/models/headmaster.rb +0 -8
- data/spec/support/v5.0/app/models/potion.rb +0 -6
- data/spec/support/v5.0/app/models/robe.rb +0 -4
- data/spec/support/v5.0/app/models/spell.rb +0 -5
- data/spec/support/v5.0/app/models/subject.rb +0 -5
- data/spec/support/v5.0/app/views/layouts/application.html.erb +0 -13
- data/spec/support/v5.0/bin/bundle +0 -3
- data/spec/support/v5.0/bin/setup +0 -34
- data/spec/support/v5.0/bin/update +0 -29
- data/spec/support/v5.0/config/application.rb +0 -27
- data/spec/support/v5.0/config/database.yml +0 -25
- data/spec/support/v5.0/config/environments/development.rb +0 -48
- data/spec/support/v5.0/config/environments/production.rb +0 -75
- data/spec/support/v5.0/config/environments/test.rb +0 -43
- data/spec/support/v5.0/config/initializers/cookies_serializer.rb +0 -6
- data/spec/support/v5.0/config/initializers/new_framework_defaults.rb +0 -27
- data/spec/support/v5.0/config/initializers/session_store.rb +0 -4
- data/spec/support/v5.0/config/locales/en.yml +0 -23
- data/spec/support/v5.0/config/puma.rb +0 -48
- data/spec/support/v5.0/config/routes.rb +0 -5
- data/spec/support/v5.0/db/migrate/20190620000001_create_wizards.rb +0 -14
- data/spec/support/v5.0/db/migrate/20190620000002_create_wands.rb +0 -12
- data/spec/support/v5.0/db/migrate/20190620000003_create_spell_books.rb +0 -10
- data/spec/support/v5.0/db/migrate/20190620000004_add_more_column_types_to_wands.rb +0 -17
- data/spec/support/v5.0/db/migrate/20190620000005_add_broom_to_wizard.rb +0 -6
- data/spec/support/v5.0/db/migrate/20190620000006_add_more_enums_to_wizard.rb +0 -9
- data/spec/support/v5.0/db/migrate/20190620000007_add_type_to_wizard.rb +0 -6
- data/spec/support/v5.0/db/migrate/20190620000008_add_robe_to_wizard.rb +0 -8
- data/spec/support/v5.0/db/migrate/20190620000009_add_school.rb +0 -10
- data/spec/support/v5.0/db/migrate/20190620000010_add_subject.rb +0 -8
- data/spec/support/v5.0/db/migrate/20190620000011_add_subjects_wizards.rb +0 -8
- data/spec/support/v5.0/db/migrate/20190620000012_add_spell.rb +0 -8
- data/spec/support/v5.0/db/migrate/20190620000013_add_spells_spell_books.rb +0 -8
- data/spec/support/v5.0/db/schema.rb +0 -96
- data/spec/support/v5.0/public/robots.txt +0 -5
- data/spec/support/v5.1/README.md +0 -24
- data/spec/support/v5.1/Rakefile +0 -6
- data/spec/support/v5.1/app/assets/config/manifest.js +0 -2
- data/spec/support/v5.1/app/controllers/application_controller.rb +0 -4
- data/spec/support/v5.1/app/helpers/application_helper.rb +0 -3
- data/spec/support/v5.1/app/helpers/bar_helper.rb +0 -3
- data/spec/support/v5.1/app/helpers/baz_helper.rb +0 -3
- data/spec/support/v5.1/app/helpers/foo_helper.rb +0 -3
- data/spec/support/v5.1/app/jobs/application_job.rb +0 -3
- data/spec/support/v5.1/app/jobs/award_house_point_hourglasses.rb +0 -12
- data/spec/support/v5.1/app/mailers/daily_prophet_mailer.rb +0 -9
- data/spec/support/v5.1/app/mailers/hogwarts_acceptance_mailer.rb +0 -29
- data/spec/support/v5.1/app/models/application_record.rb +0 -4
- data/spec/support/v5.1/app/models/concerns/.keep +0 -0
- data/spec/support/v5.1/app/models/concerns/mythical.rb +0 -11
- data/spec/support/v5.1/app/models/school.rb +0 -5
- data/spec/support/v5.1/app/models/spell_book.rb +0 -18
- data/spec/support/v5.1/app/models/squib.rb +0 -6
- data/spec/support/v5.1/app/models/wand.rb +0 -19
- data/spec/support/v5.1/app/models/wizard.rb +0 -65
- data/spec/support/v5.1/app/views/layouts/mailer.html.erb +0 -13
- data/spec/support/v5.1/app/views/layouts/mailer.text.erb +0 -1
- data/spec/support/v5.1/bin/bundle +0 -3
- data/spec/support/v5.1/bin/rails +0 -4
- data/spec/support/v5.1/bin/rake +0 -4
- data/spec/support/v5.1/bin/update +0 -29
- data/spec/support/v5.1/bin/yarn +0 -11
- data/spec/support/v5.1/config/boot.rb +0 -4
- data/spec/support/v5.1/config/environment.rb +0 -6
- data/spec/support/v5.1/config/initializers/application_controller_renderer.rb +0 -9
- data/spec/support/v5.1/config/initializers/backtrace_silencers.rb +0 -8
- data/spec/support/v5.1/config/initializers/filter_parameter_logging.rb +0 -5
- data/spec/support/v5.1/config/initializers/inflections.rb +0 -17
- data/spec/support/v5.1/config/initializers/mime_types.rb +0 -5
- data/spec/support/v5.1/config/initializers/sorbet_rails.rb +0 -3
- data/spec/support/v5.1/config/initializers/wrap_parameters.rb +0 -15
- data/spec/support/v5.1/config/routes.rb +0 -5
- data/spec/support/v5.1/config.ru +0 -5
- data/spec/support/v5.1/db/migrate/20190620000005_add_broom_to_wizard.rb +0 -6
- data/spec/support/v5.1/db/migrate/20190620000014_create_headmasters.rb +0 -9
- data/spec/support/v5.1/db/migrate/20190620000015_add_serialized_to_wizards.rb +0 -9
- data/spec/support/v5.1/db/seeds.rb +0 -8
- data/spec/support/v5.1/lib/assets/.keep +0 -0
- data/spec/support/v5.1/lib/mythical_rbi_plugin.rb +0 -16
- data/spec/support/v5.1/lib/tasks/.keep +0 -0
- data/spec/support/v5.1/log/.keep +0 -0
- data/spec/support/v5.1/package.json +0 -5
- data/spec/support/v5.1/public/robots.txt +0 -1
- data/spec/support/v5.1/sorbet_test_cases.rb +0 -409
- data/spec/support/v5.1/tmp/.keep +0 -0
- data/spec/support/v5.1/vendor/.keep +0 -0
- data/spec/test_data/v5.0/expected_active_record_base.rbi +0 -113
- data/spec/test_data/v5.0/expected_active_record_relation.rbi +0 -198
- data/spec/test_data/v5.0/expected_habtm_subjects.rbi +0 -660
- data/spec/test_data/v5.0/expected_habtm_wizards.rbi +0 -660
- data/spec/test_data/v5.0/expected_headmaster.rbi +0 -328
- data/spec/test_data/v5.0/expected_internal_metadata.rbi +0 -298
- data/spec/test_data/v5.0/expected_potion.rbi +0 -280
- data/spec/test_data/v5.0/expected_robe.rbi +0 -301
- data/spec/test_data/v5.0/expected_routes.rbi +0 -27
- data/spec/test_data/v5.0/expected_schema_migration.rbi +0 -271
- data/spec/test_data/v5.0/expected_school.rbi +0 -301
- data/spec/test_data/v5.0/expected_spell/habtm_spell_books.rbi +0 -319
- data/spec/test_data/v5.0/expected_spell.rbi +0 -292
- data/spec/test_data/v5.0/expected_spell_book/habtm_spell_books.rbi +0 -637
- data/spec/test_data/v5.0/expected_spell_book/habtm_spells.rbi +0 -319
- data/spec/test_data/v5.0/expected_spell_book.rbi +0 -415
- data/spec/test_data/v5.0/expected_squib.rbi +0 -832
- data/spec/test_data/v5.0/expected_subject/habtm_wizards.rbi +0 -319
- data/spec/test_data/v5.0/expected_subject.rbi +0 -292
- data/spec/test_data/v5.0/expected_wand.rbi +0 -497
- data/spec/test_data/v5.0/expected_wizard/habtm_subjects.rbi +0 -319
- data/spec/test_data/v5.0/expected_wizard.rbi +0 -908
- data/spec/test_data/v5.0/expected_wizard_wo_spellbook.rbi +0 -902
- data/spec/test_data/v5.1/expected_application_job.rbi +0 -20
- data/spec/test_data/v5.1/expected_application_mailer.rbi +0 -5
- data/spec/test_data/v5.1/expected_award_house_point_hourglasses.rbi +0 -20
- data/spec/test_data/v5.1/expected_custom_application_job.rbi +0 -21
- data/spec/test_data/v5.1/expected_custom_application_mailer.rbi +0 -6
- data/spec/test_data/v5.1/expected_custom_award_house_point_hourglasses.rbi +0 -21
- data/spec/test_data/v5.1/expected_custom_daily_prophet_mailer.rbi +0 -8
- data/spec/test_data/v5.1/expected_custom_hogwarts_acceptance_mailer.rbi +0 -21
- data/spec/test_data/v5.1/expected_daily_prophet_mailer.rbi +0 -7
- data/spec/test_data/v5.1/expected_helpers.rbi +0 -27
- data/spec/test_data/v5.1/expected_helpers_with_application_and_devise_helpers.rbi +0 -34
- data/spec/test_data/v5.1/expected_hogwarts_acceptance_mailer.rbi +0 -20
- data/spec/test_data/v5.1/expected_no_routes.rbi +0 -4
- data/spec/test_data/v5.1/expected_routes.rbi +0 -27
- data/spec/test_data/v5.1/expected_srb_tc_output.txt +0 -1
@@ -1,660 +0,0 @@
|
|
1
|
-
# This is an autogenerated file for dynamic methods in Wizard::HABTM_Subjects
|
2
|
-
# Please rerun bundle exec rake rails_rbi:models[Wizard::HABTM_Subjects] to regenerate.
|
3
|
-
|
4
|
-
# typed: strong
|
5
|
-
module Wizard::HABTM_Subjects::ActiveRelation_WhereNot
|
6
|
-
sig { params(opts: T.untyped, rest: T.untyped).returns(T.self_type) }
|
7
|
-
def not(opts, *rest); end
|
8
|
-
end
|
9
|
-
|
10
|
-
module Wizard::HABTM_Subjects::GeneratedAttributeMethods
|
11
|
-
extend T::Sig
|
12
|
-
|
13
|
-
sig { returns(Integer) }
|
14
|
-
def subject_id; end
|
15
|
-
|
16
|
-
sig { params(value: T.any(Numeric, ActiveSupport::Duration)).void }
|
17
|
-
def subject_id=(value); end
|
18
|
-
|
19
|
-
sig { returns(T::Boolean) }
|
20
|
-
def subject_id?; end
|
21
|
-
|
22
|
-
sig { returns(Integer) }
|
23
|
-
def wizard_id; end
|
24
|
-
|
25
|
-
sig { params(value: T.any(Numeric, ActiveSupport::Duration)).void }
|
26
|
-
def wizard_id=(value); end
|
27
|
-
|
28
|
-
sig { returns(T::Boolean) }
|
29
|
-
def wizard_id?; end
|
30
|
-
end
|
31
|
-
|
32
|
-
module Wizard::HABTM_Subjects::GeneratedAssociationMethods
|
33
|
-
extend T::Sig
|
34
|
-
|
35
|
-
sig { returns(T.nilable(::Wizard)) }
|
36
|
-
def left_side; end
|
37
|
-
|
38
|
-
sig { params(value: T.nilable(::Wizard)).void }
|
39
|
-
def left_side=(value); end
|
40
|
-
|
41
|
-
sig { returns(::Subject) }
|
42
|
-
def subject; end
|
43
|
-
|
44
|
-
sig { params(value: ::Subject).void }
|
45
|
-
def subject=(value); end
|
46
|
-
end
|
47
|
-
|
48
|
-
module Wizard::HABTM_Subjects::CustomFinderMethods
|
49
|
-
sig { params(limit: Integer).returns(T::Array[Wizard::HABTM_Subjects]) }
|
50
|
-
def first_n(limit); end
|
51
|
-
|
52
|
-
sig { params(limit: Integer).returns(T::Array[Wizard::HABTM_Subjects]) }
|
53
|
-
def last_n(limit); end
|
54
|
-
|
55
|
-
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[Wizard::HABTM_Subjects]) }
|
56
|
-
def find_n(*args); end
|
57
|
-
|
58
|
-
sig { params(id: Integer).returns(T.nilable(Wizard::HABTM_Subjects)) }
|
59
|
-
def find_by_id(id); end
|
60
|
-
|
61
|
-
sig { params(id: Integer).returns(Wizard::HABTM_Subjects) }
|
62
|
-
def find_by_id!(id); end
|
63
|
-
end
|
64
|
-
|
65
|
-
class Wizard::HABTM_Subjects < ActiveRecord::Base
|
66
|
-
include Wizard::HABTM_Subjects::GeneratedAttributeMethods
|
67
|
-
include Wizard::HABTM_Subjects::GeneratedAssociationMethods
|
68
|
-
extend Wizard::HABTM_Subjects::CustomFinderMethods
|
69
|
-
extend T::Sig
|
70
|
-
extend T::Generic
|
71
|
-
RelationType = T.type_alias { T.any(Wizard::HABTM_Subjects::ActiveRecord_Relation, Wizard::HABTM_Subjects::ActiveRecord_Associations_CollectionProxy, Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
72
|
-
|
73
|
-
sig { returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
74
|
-
def self.all; end
|
75
|
-
|
76
|
-
sig { params(block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
77
|
-
def self.unscoped(&block); end
|
78
|
-
|
79
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
80
|
-
def self.select(*args); end
|
81
|
-
|
82
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
83
|
-
def self.order(*args); end
|
84
|
-
|
85
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
86
|
-
def self.reorder(*args); end
|
87
|
-
|
88
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
89
|
-
def self.group(*args); end
|
90
|
-
|
91
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
92
|
-
def self.limit(*args); end
|
93
|
-
|
94
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
95
|
-
def self.offset(*args); end
|
96
|
-
|
97
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
98
|
-
def self.joins(*args); end
|
99
|
-
|
100
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
101
|
-
def self.left_joins(*args); end
|
102
|
-
|
103
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
104
|
-
def self.left_outer_joins(*args); end
|
105
|
-
|
106
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
107
|
-
def self.where(*args); end
|
108
|
-
|
109
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
110
|
-
def self.rewhere(*args); end
|
111
|
-
|
112
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
113
|
-
def self.preload(*args); end
|
114
|
-
|
115
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
116
|
-
def self.eager_load(*args); end
|
117
|
-
|
118
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
119
|
-
def self.includes(*args); end
|
120
|
-
|
121
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
122
|
-
def self.from(*args); end
|
123
|
-
|
124
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
125
|
-
def self.lock(*args); end
|
126
|
-
|
127
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
128
|
-
def self.readonly(*args); end
|
129
|
-
|
130
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
131
|
-
def self.or(*args); end
|
132
|
-
|
133
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
134
|
-
def self.having(*args); end
|
135
|
-
|
136
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
137
|
-
def self.create_with(*args); end
|
138
|
-
|
139
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
140
|
-
def self.distinct(*args); end
|
141
|
-
|
142
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
143
|
-
def self.references(*args); end
|
144
|
-
|
145
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
146
|
-
def self.none(*args); end
|
147
|
-
|
148
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
149
|
-
def self.unscope(*args); end
|
150
|
-
|
151
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
152
|
-
def self.except(*args); end
|
153
|
-
|
154
|
-
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
155
|
-
def self.extending(*args, &block); end
|
156
|
-
|
157
|
-
sig { params(conditions: T.untyped).returns(T::Boolean) }
|
158
|
-
def self.exists?(conditions = nil); end
|
159
|
-
|
160
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
161
|
-
def self.any?(*args); end
|
162
|
-
|
163
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
164
|
-
def self.many?(*args); end
|
165
|
-
|
166
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
167
|
-
def self.none?(*args); end
|
168
|
-
|
169
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
170
|
-
def self.one?(*args); end
|
171
|
-
|
172
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
173
|
-
def self.empty?(*args); end
|
174
|
-
end
|
175
|
-
|
176
|
-
class Wizard::HABTM_Subjects::ActiveRecord_Relation < ActiveRecord::Relation
|
177
|
-
include Wizard::HABTM_Subjects::ActiveRelation_WhereNot
|
178
|
-
include Wizard::HABTM_Subjects::CustomFinderMethods
|
179
|
-
include Enumerable
|
180
|
-
extend T::Sig
|
181
|
-
extend T::Generic
|
182
|
-
Elem = type_member(fixed: Wizard::HABTM_Subjects)
|
183
|
-
|
184
|
-
sig { returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
185
|
-
def all; end
|
186
|
-
|
187
|
-
sig { params(block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
188
|
-
def unscoped(&block); end
|
189
|
-
|
190
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
191
|
-
def select(*args); end
|
192
|
-
|
193
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
194
|
-
def order(*args); end
|
195
|
-
|
196
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
197
|
-
def reorder(*args); end
|
198
|
-
|
199
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
200
|
-
def group(*args); end
|
201
|
-
|
202
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
203
|
-
def limit(*args); end
|
204
|
-
|
205
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
206
|
-
def offset(*args); end
|
207
|
-
|
208
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
209
|
-
def joins(*args); end
|
210
|
-
|
211
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
212
|
-
def left_joins(*args); end
|
213
|
-
|
214
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
215
|
-
def left_outer_joins(*args); end
|
216
|
-
|
217
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
218
|
-
def where(*args); end
|
219
|
-
|
220
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
221
|
-
def rewhere(*args); end
|
222
|
-
|
223
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
224
|
-
def preload(*args); end
|
225
|
-
|
226
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
227
|
-
def eager_load(*args); end
|
228
|
-
|
229
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
230
|
-
def includes(*args); end
|
231
|
-
|
232
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
233
|
-
def from(*args); end
|
234
|
-
|
235
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
236
|
-
def lock(*args); end
|
237
|
-
|
238
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
239
|
-
def readonly(*args); end
|
240
|
-
|
241
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
242
|
-
def or(*args); end
|
243
|
-
|
244
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
245
|
-
def having(*args); end
|
246
|
-
|
247
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
248
|
-
def create_with(*args); end
|
249
|
-
|
250
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
251
|
-
def distinct(*args); end
|
252
|
-
|
253
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
254
|
-
def references(*args); end
|
255
|
-
|
256
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
257
|
-
def none(*args); end
|
258
|
-
|
259
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
260
|
-
def unscope(*args); end
|
261
|
-
|
262
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
263
|
-
def except(*args); end
|
264
|
-
|
265
|
-
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_Relation) }
|
266
|
-
def extending(*args, &block); end
|
267
|
-
|
268
|
-
sig { params(conditions: T.untyped).returns(T::Boolean) }
|
269
|
-
def exists?(conditions = nil); end
|
270
|
-
|
271
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
272
|
-
def any?(*args); end
|
273
|
-
|
274
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
275
|
-
def many?(*args); end
|
276
|
-
|
277
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
278
|
-
def none?(*args); end
|
279
|
-
|
280
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
281
|
-
def one?(*args); end
|
282
|
-
|
283
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
284
|
-
def empty?(*args); end
|
285
|
-
end
|
286
|
-
|
287
|
-
class Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
288
|
-
include Wizard::HABTM_Subjects::ActiveRelation_WhereNot
|
289
|
-
include Wizard::HABTM_Subjects::CustomFinderMethods
|
290
|
-
include Enumerable
|
291
|
-
extend T::Sig
|
292
|
-
extend T::Generic
|
293
|
-
Elem = type_member(fixed: Wizard::HABTM_Subjects)
|
294
|
-
|
295
|
-
sig { returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
296
|
-
def all; end
|
297
|
-
|
298
|
-
sig { params(block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
299
|
-
def unscoped(&block); end
|
300
|
-
|
301
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
302
|
-
def select(*args); end
|
303
|
-
|
304
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
305
|
-
def order(*args); end
|
306
|
-
|
307
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
308
|
-
def reorder(*args); end
|
309
|
-
|
310
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
311
|
-
def group(*args); end
|
312
|
-
|
313
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
314
|
-
def limit(*args); end
|
315
|
-
|
316
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
317
|
-
def offset(*args); end
|
318
|
-
|
319
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
320
|
-
def joins(*args); end
|
321
|
-
|
322
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
323
|
-
def left_joins(*args); end
|
324
|
-
|
325
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
326
|
-
def left_outer_joins(*args); end
|
327
|
-
|
328
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
329
|
-
def where(*args); end
|
330
|
-
|
331
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
332
|
-
def rewhere(*args); end
|
333
|
-
|
334
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
335
|
-
def preload(*args); end
|
336
|
-
|
337
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
338
|
-
def eager_load(*args); end
|
339
|
-
|
340
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
341
|
-
def includes(*args); end
|
342
|
-
|
343
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
344
|
-
def from(*args); end
|
345
|
-
|
346
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
347
|
-
def lock(*args); end
|
348
|
-
|
349
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
350
|
-
def readonly(*args); end
|
351
|
-
|
352
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
353
|
-
def or(*args); end
|
354
|
-
|
355
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
356
|
-
def having(*args); end
|
357
|
-
|
358
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
359
|
-
def create_with(*args); end
|
360
|
-
|
361
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
362
|
-
def distinct(*args); end
|
363
|
-
|
364
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
365
|
-
def references(*args); end
|
366
|
-
|
367
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
368
|
-
def none(*args); end
|
369
|
-
|
370
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
371
|
-
def unscope(*args); end
|
372
|
-
|
373
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
374
|
-
def except(*args); end
|
375
|
-
|
376
|
-
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
377
|
-
def extending(*args, &block); end
|
378
|
-
|
379
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects) }
|
380
|
-
def find(*args); end
|
381
|
-
|
382
|
-
sig { params(args: T.untyped).returns(T.nilable(Wizard::HABTM_Subjects)) }
|
383
|
-
def find_by(*args); end
|
384
|
-
|
385
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects) }
|
386
|
-
def find_by!(*args); end
|
387
|
-
|
388
|
-
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Wizard::HABTM_Subjects).void)).returns(Wizard::HABTM_Subjects) }
|
389
|
-
def find_or_initialize_by(attributes, &block); end
|
390
|
-
|
391
|
-
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Wizard::HABTM_Subjects).void)).returns(Wizard::HABTM_Subjects) }
|
392
|
-
def find_or_create_by(attributes, &block); end
|
393
|
-
|
394
|
-
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Wizard::HABTM_Subjects).void)).returns(Wizard::HABTM_Subjects) }
|
395
|
-
def find_or_create_by!(attributes, &block); end
|
396
|
-
|
397
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
398
|
-
def first; end
|
399
|
-
|
400
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
401
|
-
def first!; end
|
402
|
-
|
403
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
404
|
-
def second; end
|
405
|
-
|
406
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
407
|
-
def second!; end
|
408
|
-
|
409
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
410
|
-
def third; end
|
411
|
-
|
412
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
413
|
-
def third!; end
|
414
|
-
|
415
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
416
|
-
def third_to_last; end
|
417
|
-
|
418
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
419
|
-
def third_to_last!; end
|
420
|
-
|
421
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
422
|
-
def second_to_last; end
|
423
|
-
|
424
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
425
|
-
def second_to_last!; end
|
426
|
-
|
427
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
428
|
-
def last; end
|
429
|
-
|
430
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
431
|
-
def last!; end
|
432
|
-
|
433
|
-
sig { params(conditions: T.untyped).returns(T::Boolean) }
|
434
|
-
def exists?(conditions = nil); end
|
435
|
-
|
436
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
437
|
-
def any?(*args); end
|
438
|
-
|
439
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
440
|
-
def many?(*args); end
|
441
|
-
|
442
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
443
|
-
def none?(*args); end
|
444
|
-
|
445
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
446
|
-
def one?(*args); end
|
447
|
-
|
448
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
449
|
-
def empty?(*args); end
|
450
|
-
|
451
|
-
sig { override.params(block: T.proc.params(e: Wizard::HABTM_Subjects).void).returns(T::Array[Wizard::HABTM_Subjects]) }
|
452
|
-
def each(&block); end
|
453
|
-
|
454
|
-
sig { params(level: T.nilable(Integer)).returns(T::Array[Wizard::HABTM_Subjects]) }
|
455
|
-
def flatten(level); end
|
456
|
-
|
457
|
-
sig { returns(T::Array[Wizard::HABTM_Subjects]) }
|
458
|
-
def to_a; end
|
459
|
-
|
460
|
-
sig do
|
461
|
-
type_parameters(:U).params(
|
462
|
-
blk: T.proc.params(arg0: Elem).returns(T.type_parameter(:U)),
|
463
|
-
)
|
464
|
-
.returns(T::Array[T.type_parameter(:U)])
|
465
|
-
end
|
466
|
-
def map(&blk); end
|
467
|
-
end
|
468
|
-
|
469
|
-
class Wizard::HABTM_Subjects::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
470
|
-
include Wizard::HABTM_Subjects::CustomFinderMethods
|
471
|
-
include Enumerable
|
472
|
-
extend T::Sig
|
473
|
-
extend T::Generic
|
474
|
-
Elem = type_member(fixed: Wizard::HABTM_Subjects)
|
475
|
-
|
476
|
-
sig { returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
477
|
-
def all; end
|
478
|
-
|
479
|
-
sig { params(block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
480
|
-
def unscoped(&block); end
|
481
|
-
|
482
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
483
|
-
def select(*args); end
|
484
|
-
|
485
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
486
|
-
def order(*args); end
|
487
|
-
|
488
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
489
|
-
def reorder(*args); end
|
490
|
-
|
491
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
492
|
-
def group(*args); end
|
493
|
-
|
494
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
495
|
-
def limit(*args); end
|
496
|
-
|
497
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
498
|
-
def offset(*args); end
|
499
|
-
|
500
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
501
|
-
def joins(*args); end
|
502
|
-
|
503
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
504
|
-
def left_joins(*args); end
|
505
|
-
|
506
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
507
|
-
def left_outer_joins(*args); end
|
508
|
-
|
509
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
510
|
-
def where(*args); end
|
511
|
-
|
512
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
513
|
-
def rewhere(*args); end
|
514
|
-
|
515
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
516
|
-
def preload(*args); end
|
517
|
-
|
518
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
519
|
-
def eager_load(*args); end
|
520
|
-
|
521
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
522
|
-
def includes(*args); end
|
523
|
-
|
524
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
525
|
-
def from(*args); end
|
526
|
-
|
527
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
528
|
-
def lock(*args); end
|
529
|
-
|
530
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
531
|
-
def readonly(*args); end
|
532
|
-
|
533
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
534
|
-
def or(*args); end
|
535
|
-
|
536
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
537
|
-
def having(*args); end
|
538
|
-
|
539
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
540
|
-
def create_with(*args); end
|
541
|
-
|
542
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
543
|
-
def distinct(*args); end
|
544
|
-
|
545
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
546
|
-
def references(*args); end
|
547
|
-
|
548
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
549
|
-
def none(*args); end
|
550
|
-
|
551
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
552
|
-
def unscope(*args); end
|
553
|
-
|
554
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
555
|
-
def except(*args); end
|
556
|
-
|
557
|
-
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Wizard::HABTM_Subjects::ActiveRecord_AssociationRelation) }
|
558
|
-
def extending(*args, &block); end
|
559
|
-
|
560
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects) }
|
561
|
-
def find(*args); end
|
562
|
-
|
563
|
-
sig { params(args: T.untyped).returns(T.nilable(Wizard::HABTM_Subjects)) }
|
564
|
-
def find_by(*args); end
|
565
|
-
|
566
|
-
sig { params(args: T.untyped).returns(Wizard::HABTM_Subjects) }
|
567
|
-
def find_by!(*args); end
|
568
|
-
|
569
|
-
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Wizard::HABTM_Subjects).void)).returns(Wizard::HABTM_Subjects) }
|
570
|
-
def find_or_initialize_by(attributes, &block); end
|
571
|
-
|
572
|
-
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Wizard::HABTM_Subjects).void)).returns(Wizard::HABTM_Subjects) }
|
573
|
-
def find_or_create_by(attributes, &block); end
|
574
|
-
|
575
|
-
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Wizard::HABTM_Subjects).void)).returns(Wizard::HABTM_Subjects) }
|
576
|
-
def find_or_create_by!(attributes, &block); end
|
577
|
-
|
578
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
579
|
-
def first; end
|
580
|
-
|
581
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
582
|
-
def first!; end
|
583
|
-
|
584
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
585
|
-
def second; end
|
586
|
-
|
587
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
588
|
-
def second!; end
|
589
|
-
|
590
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
591
|
-
def third; end
|
592
|
-
|
593
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
594
|
-
def third!; end
|
595
|
-
|
596
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
597
|
-
def third_to_last; end
|
598
|
-
|
599
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
600
|
-
def third_to_last!; end
|
601
|
-
|
602
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
603
|
-
def second_to_last; end
|
604
|
-
|
605
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
606
|
-
def second_to_last!; end
|
607
|
-
|
608
|
-
sig { returns(T.nilable(Wizard::HABTM_Subjects)) }
|
609
|
-
def last; end
|
610
|
-
|
611
|
-
sig { returns(Wizard::HABTM_Subjects) }
|
612
|
-
def last!; end
|
613
|
-
|
614
|
-
sig { params(conditions: T.untyped).returns(T::Boolean) }
|
615
|
-
def exists?(conditions = nil); end
|
616
|
-
|
617
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
618
|
-
def any?(*args); end
|
619
|
-
|
620
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
621
|
-
def many?(*args); end
|
622
|
-
|
623
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
624
|
-
def none?(*args); end
|
625
|
-
|
626
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
627
|
-
def one?(*args); end
|
628
|
-
|
629
|
-
sig { params(args: T.untyped).returns(T::Boolean) }
|
630
|
-
def empty?(*args); end
|
631
|
-
|
632
|
-
sig { override.params(block: T.proc.params(e: Wizard::HABTM_Subjects).void).returns(T::Array[Wizard::HABTM_Subjects]) }
|
633
|
-
def each(&block); end
|
634
|
-
|
635
|
-
sig { params(level: T.nilable(Integer)).returns(T::Array[Wizard::HABTM_Subjects]) }
|
636
|
-
def flatten(level); end
|
637
|
-
|
638
|
-
sig { returns(T::Array[Wizard::HABTM_Subjects]) }
|
639
|
-
def to_a; end
|
640
|
-
|
641
|
-
sig do
|
642
|
-
type_parameters(:U).params(
|
643
|
-
blk: T.proc.params(arg0: Elem).returns(T.type_parameter(:U)),
|
644
|
-
)
|
645
|
-
.returns(T::Array[T.type_parameter(:U)])
|
646
|
-
end
|
647
|
-
def map(&blk); end
|
648
|
-
|
649
|
-
sig { params(records: T.any(Wizard::HABTM_Subjects, T::Array[Wizard::HABTM_Subjects])).returns(T.self_type) }
|
650
|
-
def <<(*records); end
|
651
|
-
|
652
|
-
sig { params(records: T.any(Wizard::HABTM_Subjects, T::Array[Wizard::HABTM_Subjects])).returns(T.self_type) }
|
653
|
-
def append(*records); end
|
654
|
-
|
655
|
-
sig { params(records: T.any(Wizard::HABTM_Subjects, T::Array[Wizard::HABTM_Subjects])).returns(T.self_type) }
|
656
|
-
def push(*records); end
|
657
|
-
|
658
|
-
sig { params(records: T.any(Wizard::HABTM_Subjects, T::Array[Wizard::HABTM_Subjects])).returns(T.self_type) }
|
659
|
-
def concat(*records); end
|
660
|
-
end
|