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
@@ -57,7 +57,7 @@ module School::CustomFinderMethods
|
|
57
57
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[School]) }
|
58
58
|
def find_n(*args); end
|
59
59
|
|
60
|
-
sig { params(id: Integer).returns(T.nilable(School)) }
|
60
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(School)) }
|
61
61
|
def find_by_id(id); end
|
62
62
|
|
63
63
|
sig { params(id: Integer).returns(School) }
|
@@ -82,6 +82,9 @@ module School::QueryMethodsReturningRelation
|
|
82
82
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
83
83
|
def select(*args); end
|
84
84
|
|
85
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
86
|
+
def reselect(*args); end
|
87
|
+
|
85
88
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
86
89
|
def order(*args); end
|
87
90
|
|
@@ -115,6 +118,9 @@ module School::QueryMethodsReturningRelation
|
|
115
118
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
116
119
|
def preload(*args); end
|
117
120
|
|
121
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
122
|
+
def extract_associated(*args); end
|
123
|
+
|
118
124
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
119
125
|
def eager_load(*args); end
|
120
126
|
|
@@ -151,12 +157,18 @@ module School::QueryMethodsReturningRelation
|
|
151
157
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
152
158
|
def unscope(*args); end
|
153
159
|
|
160
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
161
|
+
def optimizer_hints(*args); end
|
162
|
+
|
154
163
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
155
164
|
def merge(*args); end
|
156
165
|
|
157
166
|
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
158
167
|
def except(*args); end
|
159
168
|
|
169
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_Relation) }
|
170
|
+
def only(*args); end
|
171
|
+
|
160
172
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_Relation) }
|
161
173
|
def extending(*args, &block); end
|
162
174
|
|
@@ -183,6 +195,9 @@ module School::QueryMethodsReturningAssociationRelation
|
|
183
195
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
184
196
|
def select(*args); end
|
185
197
|
|
198
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
199
|
+
def reselect(*args); end
|
200
|
+
|
186
201
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
187
202
|
def order(*args); end
|
188
203
|
|
@@ -216,6 +231,9 @@ module School::QueryMethodsReturningAssociationRelation
|
|
216
231
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
217
232
|
def preload(*args); end
|
218
233
|
|
234
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
235
|
+
def extract_associated(*args); end
|
236
|
+
|
219
237
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
220
238
|
def eager_load(*args); end
|
221
239
|
|
@@ -252,12 +270,18 @@ module School::QueryMethodsReturningAssociationRelation
|
|
252
270
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
253
271
|
def unscope(*args); end
|
254
272
|
|
273
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
274
|
+
def optimizer_hints(*args); end
|
275
|
+
|
255
276
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
256
277
|
def merge(*args); end
|
257
278
|
|
258
279
|
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
259
280
|
def except(*args); end
|
260
281
|
|
282
|
+
sig { params(args: T.untyped).returns(School::ActiveRecord_AssociationRelation) }
|
283
|
+
def only(*args); end
|
284
|
+
|
261
285
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(School::ActiveRecord_AssociationRelation) }
|
262
286
|
def extending(*args, &block); end
|
263
287
|
|
@@ -75,7 +75,7 @@ module Spell::HABTM_SpellBooks::CustomFinderMethods
|
|
75
75
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[Spell::HABTM_SpellBooks]) }
|
76
76
|
def find_n(*args); end
|
77
77
|
|
78
|
-
sig { params(id: Integer).returns(T.nilable(Spell::HABTM_SpellBooks)) }
|
78
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(Spell::HABTM_SpellBooks)) }
|
79
79
|
def find_by_id(id); end
|
80
80
|
|
81
81
|
sig { params(id: Integer).returns(Spell::HABTM_SpellBooks) }
|
@@ -100,6 +100,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
|
|
100
100
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
101
101
|
def select(*args); end
|
102
102
|
|
103
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
104
|
+
def reselect(*args); end
|
105
|
+
|
103
106
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
104
107
|
def order(*args); end
|
105
108
|
|
@@ -133,6 +136,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
|
|
133
136
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
134
137
|
def preload(*args); end
|
135
138
|
|
139
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
140
|
+
def extract_associated(*args); end
|
141
|
+
|
136
142
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
137
143
|
def eager_load(*args); end
|
138
144
|
|
@@ -169,12 +175,18 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningRelation
|
|
169
175
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
170
176
|
def unscope(*args); end
|
171
177
|
|
178
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
179
|
+
def optimizer_hints(*args); end
|
180
|
+
|
172
181
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
173
182
|
def merge(*args); end
|
174
183
|
|
175
184
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
176
185
|
def except(*args); end
|
177
186
|
|
187
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
188
|
+
def only(*args); end
|
189
|
+
|
178
190
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::HABTM_SpellBooks::ActiveRecord_Relation) }
|
179
191
|
def extending(*args, &block); end
|
180
192
|
|
@@ -201,6 +213,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
|
|
201
213
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
202
214
|
def select(*args); end
|
203
215
|
|
216
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
217
|
+
def reselect(*args); end
|
218
|
+
|
204
219
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
205
220
|
def order(*args); end
|
206
221
|
|
@@ -234,6 +249,9 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
|
|
234
249
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
235
250
|
def preload(*args); end
|
236
251
|
|
252
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
253
|
+
def extract_associated(*args); end
|
254
|
+
|
237
255
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
238
256
|
def eager_load(*args); end
|
239
257
|
|
@@ -270,12 +288,18 @@ module Spell::HABTM_SpellBooks::QueryMethodsReturningAssociationRelation
|
|
270
288
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
271
289
|
def unscope(*args); end
|
272
290
|
|
291
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
292
|
+
def optimizer_hints(*args); end
|
293
|
+
|
273
294
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
274
295
|
def merge(*args); end
|
275
296
|
|
276
297
|
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
277
298
|
def except(*args); end
|
278
299
|
|
300
|
+
sig { params(args: T.untyped).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
301
|
+
def only(*args); end
|
302
|
+
|
279
303
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
280
304
|
def extending(*args, &block); end
|
281
305
|
|
@@ -48,7 +48,7 @@ module Spell::CustomFinderMethods
|
|
48
48
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[Spell]) }
|
49
49
|
def find_n(*args); end
|
50
50
|
|
51
|
-
sig { params(id: Integer).returns(T.nilable(Spell)) }
|
51
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(Spell)) }
|
52
52
|
def find_by_id(id); end
|
53
53
|
|
54
54
|
sig { params(id: Integer).returns(Spell) }
|
@@ -73,6 +73,9 @@ module Spell::QueryMethodsReturningRelation
|
|
73
73
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
74
74
|
def select(*args); end
|
75
75
|
|
76
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
77
|
+
def reselect(*args); end
|
78
|
+
|
76
79
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
77
80
|
def order(*args); end
|
78
81
|
|
@@ -106,6 +109,9 @@ module Spell::QueryMethodsReturningRelation
|
|
106
109
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
107
110
|
def preload(*args); end
|
108
111
|
|
112
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
113
|
+
def extract_associated(*args); end
|
114
|
+
|
109
115
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
110
116
|
def eager_load(*args); end
|
111
117
|
|
@@ -142,12 +148,18 @@ module Spell::QueryMethodsReturningRelation
|
|
142
148
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
143
149
|
def unscope(*args); end
|
144
150
|
|
151
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
152
|
+
def optimizer_hints(*args); end
|
153
|
+
|
145
154
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
146
155
|
def merge(*args); end
|
147
156
|
|
148
157
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
149
158
|
def except(*args); end
|
150
159
|
|
160
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_Relation) }
|
161
|
+
def only(*args); end
|
162
|
+
|
151
163
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::ActiveRecord_Relation) }
|
152
164
|
def extending(*args, &block); end
|
153
165
|
|
@@ -174,6 +186,9 @@ module Spell::QueryMethodsReturningAssociationRelation
|
|
174
186
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
175
187
|
def select(*args); end
|
176
188
|
|
189
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
190
|
+
def reselect(*args); end
|
191
|
+
|
177
192
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
178
193
|
def order(*args); end
|
179
194
|
|
@@ -207,6 +222,9 @@ module Spell::QueryMethodsReturningAssociationRelation
|
|
207
222
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
208
223
|
def preload(*args); end
|
209
224
|
|
225
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
226
|
+
def extract_associated(*args); end
|
227
|
+
|
210
228
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
211
229
|
def eager_load(*args); end
|
212
230
|
|
@@ -243,12 +261,18 @@ module Spell::QueryMethodsReturningAssociationRelation
|
|
243
261
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
244
262
|
def unscope(*args); end
|
245
263
|
|
264
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
265
|
+
def optimizer_hints(*args); end
|
266
|
+
|
246
267
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
247
268
|
def merge(*args); end
|
248
269
|
|
249
270
|
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
250
271
|
def except(*args); end
|
251
272
|
|
273
|
+
sig { params(args: T.untyped).returns(Spell::ActiveRecord_AssociationRelation) }
|
274
|
+
def only(*args); end
|
275
|
+
|
252
276
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Spell::ActiveRecord_AssociationRelation) }
|
253
277
|
def extending(*args, &block); end
|
254
278
|
|
@@ -56,6 +56,9 @@ class SpellBook::HABTM_SpellBooks < ActiveRecord::Base
|
|
56
56
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
57
57
|
def self.select(*args); end
|
58
58
|
|
59
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
60
|
+
def self.reselect(*args); end
|
61
|
+
|
59
62
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
60
63
|
def self.order(*args); end
|
61
64
|
|
@@ -89,6 +92,9 @@ class SpellBook::HABTM_SpellBooks < ActiveRecord::Base
|
|
89
92
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
90
93
|
def self.preload(*args); end
|
91
94
|
|
95
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
96
|
+
def self.extract_associated(*args); end
|
97
|
+
|
92
98
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
93
99
|
def self.eager_load(*args); end
|
94
100
|
|
@@ -125,12 +131,18 @@ class SpellBook::HABTM_SpellBooks < ActiveRecord::Base
|
|
125
131
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
126
132
|
def self.unscope(*args); end
|
127
133
|
|
134
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
135
|
+
def self.optimizer_hints(*args); end
|
136
|
+
|
128
137
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
129
138
|
def self.merge(*args); end
|
130
139
|
|
131
140
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
132
141
|
def self.except(*args); end
|
133
142
|
|
143
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
144
|
+
def self.only(*args); end
|
145
|
+
|
134
146
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
135
147
|
def self.extending(*args, &block); end
|
136
148
|
|
@@ -170,6 +182,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
|
|
170
182
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
171
183
|
def select(*args); end
|
172
184
|
|
185
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
186
|
+
def reselect(*args); end
|
187
|
+
|
173
188
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
174
189
|
def order(*args); end
|
175
190
|
|
@@ -203,6 +218,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
|
|
203
218
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
204
219
|
def preload(*args); end
|
205
220
|
|
221
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
222
|
+
def extract_associated(*args); end
|
223
|
+
|
206
224
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
207
225
|
def eager_load(*args); end
|
208
226
|
|
@@ -239,12 +257,18 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Relation < ActiveRecord::Relatio
|
|
239
257
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
240
258
|
def unscope(*args); end
|
241
259
|
|
260
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
261
|
+
def optimizer_hints(*args); end
|
262
|
+
|
242
263
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
243
264
|
def merge(*args); end
|
244
265
|
|
245
266
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
246
267
|
def except(*args); end
|
247
268
|
|
269
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
270
|
+
def only(*args); end
|
271
|
+
|
248
272
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_Relation) }
|
249
273
|
def extending(*args, &block); end
|
250
274
|
|
@@ -284,6 +308,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
|
|
284
308
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
285
309
|
def select(*args); end
|
286
310
|
|
311
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
312
|
+
def reselect(*args); end
|
313
|
+
|
287
314
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
288
315
|
def order(*args); end
|
289
316
|
|
@@ -317,6 +344,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
|
|
317
344
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
318
345
|
def preload(*args); end
|
319
346
|
|
347
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
348
|
+
def extract_associated(*args); end
|
349
|
+
|
320
350
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
321
351
|
def eager_load(*args); end
|
322
352
|
|
@@ -353,12 +383,18 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation < ActiveReco
|
|
353
383
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
354
384
|
def unscope(*args); end
|
355
385
|
|
386
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
387
|
+
def optimizer_hints(*args); end
|
388
|
+
|
356
389
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
357
390
|
def merge(*args); end
|
358
391
|
|
359
392
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
360
393
|
def except(*args); end
|
361
394
|
|
395
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
396
|
+
def only(*args); end
|
397
|
+
|
362
398
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
363
399
|
def extending(*args, &block); end
|
364
400
|
|
@@ -468,6 +504,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
|
|
468
504
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
469
505
|
def select(*args); end
|
470
506
|
|
507
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
508
|
+
def reselect(*args); end
|
509
|
+
|
471
510
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
472
511
|
def order(*args); end
|
473
512
|
|
@@ -501,6 +540,9 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
|
|
501
540
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
502
541
|
def preload(*args); end
|
503
542
|
|
543
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
544
|
+
def extract_associated(*args); end
|
545
|
+
|
504
546
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
505
547
|
def eager_load(*args); end
|
506
548
|
|
@@ -537,12 +579,18 @@ class SpellBook::HABTM_SpellBooks::ActiveRecord_Associations_CollectionProxy < A
|
|
537
579
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
538
580
|
def unscope(*args); end
|
539
581
|
|
582
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
583
|
+
def optimizer_hints(*args); end
|
584
|
+
|
540
585
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
541
586
|
def merge(*args); end
|
542
587
|
|
543
588
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
544
589
|
def except(*args); end
|
545
590
|
|
591
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
592
|
+
def only(*args); end
|
593
|
+
|
546
594
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_SpellBooks::ActiveRecord_AssociationRelation) }
|
547
595
|
def extending(*args, &block); end
|
548
596
|
|
@@ -75,7 +75,7 @@ module SpellBook::HABTM_Spells::CustomFinderMethods
|
|
75
75
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[SpellBook::HABTM_Spells]) }
|
76
76
|
def find_n(*args); end
|
77
77
|
|
78
|
-
sig { params(id: Integer).returns(T.nilable(SpellBook::HABTM_Spells)) }
|
78
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(SpellBook::HABTM_Spells)) }
|
79
79
|
def find_by_id(id); end
|
80
80
|
|
81
81
|
sig { params(id: Integer).returns(SpellBook::HABTM_Spells) }
|
@@ -100,6 +100,9 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningRelation
|
|
100
100
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
101
101
|
def select(*args); end
|
102
102
|
|
103
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
104
|
+
def reselect(*args); end
|
105
|
+
|
103
106
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
104
107
|
def order(*args); end
|
105
108
|
|
@@ -133,6 +136,9 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningRelation
|
|
133
136
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
134
137
|
def preload(*args); end
|
135
138
|
|
139
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
140
|
+
def extract_associated(*args); end
|
141
|
+
|
136
142
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
137
143
|
def eager_load(*args); end
|
138
144
|
|
@@ -169,12 +175,18 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningRelation
|
|
169
175
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
170
176
|
def unscope(*args); end
|
171
177
|
|
178
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
179
|
+
def optimizer_hints(*args); end
|
180
|
+
|
172
181
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
173
182
|
def merge(*args); end
|
174
183
|
|
175
184
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
176
185
|
def except(*args); end
|
177
186
|
|
187
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
188
|
+
def only(*args); end
|
189
|
+
|
178
190
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_Spells::ActiveRecord_Relation) }
|
179
191
|
def extending(*args, &block); end
|
180
192
|
|
@@ -201,6 +213,9 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
|
|
201
213
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
202
214
|
def select(*args); end
|
203
215
|
|
216
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
217
|
+
def reselect(*args); end
|
218
|
+
|
204
219
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
205
220
|
def order(*args); end
|
206
221
|
|
@@ -234,6 +249,9 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
|
|
234
249
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
235
250
|
def preload(*args); end
|
236
251
|
|
252
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
253
|
+
def extract_associated(*args); end
|
254
|
+
|
237
255
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
238
256
|
def eager_load(*args); end
|
239
257
|
|
@@ -270,12 +288,18 @@ module SpellBook::HABTM_Spells::QueryMethodsReturningAssociationRelation
|
|
270
288
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
271
289
|
def unscope(*args); end
|
272
290
|
|
291
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
292
|
+
def optimizer_hints(*args); end
|
293
|
+
|
273
294
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
274
295
|
def merge(*args); end
|
275
296
|
|
276
297
|
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
277
298
|
def except(*args); end
|
278
299
|
|
300
|
+
sig { params(args: T.untyped).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
301
|
+
def only(*args); end
|
302
|
+
|
279
303
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::HABTM_Spells::ActiveRecord_AssociationRelation) }
|
280
304
|
def extending(*args, &block); end
|
281
305
|
|
@@ -104,7 +104,7 @@ module SpellBook::CustomFinderMethods
|
|
104
104
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[SpellBook]) }
|
105
105
|
def find_n(*args); end
|
106
106
|
|
107
|
-
sig { params(id: Integer).returns(T.nilable(SpellBook)) }
|
107
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(SpellBook)) }
|
108
108
|
def find_by_id(id); end
|
109
109
|
|
110
110
|
sig { params(id: Integer).returns(SpellBook) }
|
@@ -128,6 +128,15 @@ class SpellBook < ApplicationRecord
|
|
128
128
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
129
129
|
def self.dark_art(*args); end
|
130
130
|
|
131
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
132
|
+
def self.not_biology(*args); end
|
133
|
+
|
134
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
135
|
+
def self.not_dark_art(*args); end
|
136
|
+
|
137
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
138
|
+
def self.not_unclassified(*args); end
|
139
|
+
|
131
140
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
132
141
|
def self.recent(*args); end
|
133
142
|
|
@@ -162,6 +171,15 @@ class SpellBook::ActiveRecord_Relation < ActiveRecord::Relation
|
|
162
171
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
163
172
|
def dark_art(*args); end
|
164
173
|
|
174
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
175
|
+
def not_biology(*args); end
|
176
|
+
|
177
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
178
|
+
def not_dark_art(*args); end
|
179
|
+
|
180
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
181
|
+
def not_unclassified(*args); end
|
182
|
+
|
165
183
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
166
184
|
def recent(*args); end
|
167
185
|
|
@@ -181,6 +199,15 @@ class SpellBook::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRel
|
|
181
199
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
182
200
|
def dark_art(*args); end
|
183
201
|
|
202
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
203
|
+
def not_biology(*args); end
|
204
|
+
|
205
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
206
|
+
def not_dark_art(*args); end
|
207
|
+
|
208
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
209
|
+
def not_unclassified(*args); end
|
210
|
+
|
184
211
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
185
212
|
def recent(*args); end
|
186
213
|
|
@@ -199,6 +226,15 @@ class SpellBook::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Assoc
|
|
199
226
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
200
227
|
def dark_art(*args); end
|
201
228
|
|
229
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
230
|
+
def not_biology(*args); end
|
231
|
+
|
232
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
233
|
+
def not_dark_art(*args); end
|
234
|
+
|
235
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
236
|
+
def not_unclassified(*args); end
|
237
|
+
|
202
238
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
203
239
|
def recent(*args); end
|
204
240
|
|
@@ -228,6 +264,9 @@ module SpellBook::QueryMethodsReturningRelation
|
|
228
264
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
229
265
|
def select(*args); end
|
230
266
|
|
267
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
268
|
+
def reselect(*args); end
|
269
|
+
|
231
270
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
232
271
|
def order(*args); end
|
233
272
|
|
@@ -261,6 +300,9 @@ module SpellBook::QueryMethodsReturningRelation
|
|
261
300
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
262
301
|
def preload(*args); end
|
263
302
|
|
303
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
304
|
+
def extract_associated(*args); end
|
305
|
+
|
264
306
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
265
307
|
def eager_load(*args); end
|
266
308
|
|
@@ -297,12 +339,18 @@ module SpellBook::QueryMethodsReturningRelation
|
|
297
339
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
298
340
|
def unscope(*args); end
|
299
341
|
|
342
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
343
|
+
def optimizer_hints(*args); end
|
344
|
+
|
300
345
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
301
346
|
def merge(*args); end
|
302
347
|
|
303
348
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
304
349
|
def except(*args); end
|
305
350
|
|
351
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_Relation) }
|
352
|
+
def only(*args); end
|
353
|
+
|
306
354
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::ActiveRecord_Relation) }
|
307
355
|
def extending(*args, &block); end
|
308
356
|
|
@@ -329,6 +377,9 @@ module SpellBook::QueryMethodsReturningAssociationRelation
|
|
329
377
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
330
378
|
def select(*args); end
|
331
379
|
|
380
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
381
|
+
def reselect(*args); end
|
382
|
+
|
332
383
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
333
384
|
def order(*args); end
|
334
385
|
|
@@ -362,6 +413,9 @@ module SpellBook::QueryMethodsReturningAssociationRelation
|
|
362
413
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
363
414
|
def preload(*args); end
|
364
415
|
|
416
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
417
|
+
def extract_associated(*args); end
|
418
|
+
|
365
419
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
366
420
|
def eager_load(*args); end
|
367
421
|
|
@@ -398,12 +452,18 @@ module SpellBook::QueryMethodsReturningAssociationRelation
|
|
398
452
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
399
453
|
def unscope(*args); end
|
400
454
|
|
455
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
456
|
+
def optimizer_hints(*args); end
|
457
|
+
|
401
458
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
402
459
|
def merge(*args); end
|
403
460
|
|
404
461
|
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
405
462
|
def except(*args); end
|
406
463
|
|
464
|
+
sig { params(args: T.untyped).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
465
|
+
def only(*args); end
|
466
|
+
|
407
467
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(SpellBook::ActiveRecord_AssociationRelation) }
|
408
468
|
def extending(*args, &block); end
|
409
469
|
|