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
@@ -0,0 +1,289 @@
|
|
1
|
+
# This is an autogenerated file for dynamic methods in ActiveStorage::Record
|
2
|
+
# Please rerun bundle exec rake rails_rbi:models[ActiveStorage::Record] to regenerate.
|
3
|
+
|
4
|
+
# typed: strong
|
5
|
+
module ActiveStorage::Record::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 ActiveStorage::Record::CustomFinderMethods
|
11
|
+
sig { params(limit: Integer).returns(T::Array[ActiveStorage::Record]) }
|
12
|
+
def first_n(limit); end
|
13
|
+
|
14
|
+
sig { params(limit: Integer).returns(T::Array[ActiveStorage::Record]) }
|
15
|
+
def last_n(limit); end
|
16
|
+
|
17
|
+
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[ActiveStorage::Record]) }
|
18
|
+
def find_n(*args); end
|
19
|
+
|
20
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(ActiveStorage::Record)) }
|
21
|
+
def find_by_id(id); end
|
22
|
+
|
23
|
+
sig { params(id: Integer).returns(ActiveStorage::Record) }
|
24
|
+
def find_by_id!(id); end
|
25
|
+
end
|
26
|
+
|
27
|
+
class ActiveStorage::Record < ActiveRecord::Base
|
28
|
+
extend ActiveStorage::Record::CustomFinderMethods
|
29
|
+
extend ActiveStorage::Record::QueryMethodsReturningRelation
|
30
|
+
RelationType = T.type_alias { T.any(ActiveStorage::Record::ActiveRecord_Relation, ActiveStorage::Record::ActiveRecord_Associations_CollectionProxy, ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
31
|
+
end
|
32
|
+
|
33
|
+
module ActiveStorage::Record::QueryMethodsReturningRelation
|
34
|
+
sig { returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
35
|
+
def all; end
|
36
|
+
|
37
|
+
sig { params(block: T.nilable(T.proc.void)).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
38
|
+
def unscoped(&block); end
|
39
|
+
|
40
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
41
|
+
def select(*args); end
|
42
|
+
|
43
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
44
|
+
def reselect(*args); end
|
45
|
+
|
46
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
47
|
+
def order(*args); end
|
48
|
+
|
49
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
50
|
+
def reorder(*args); end
|
51
|
+
|
52
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
53
|
+
def group(*args); end
|
54
|
+
|
55
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
56
|
+
def limit(*args); end
|
57
|
+
|
58
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
59
|
+
def offset(*args); end
|
60
|
+
|
61
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
62
|
+
def joins(*args); end
|
63
|
+
|
64
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
65
|
+
def left_joins(*args); end
|
66
|
+
|
67
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
68
|
+
def left_outer_joins(*args); end
|
69
|
+
|
70
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
71
|
+
def where(*args); end
|
72
|
+
|
73
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
74
|
+
def rewhere(*args); end
|
75
|
+
|
76
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
77
|
+
def preload(*args); end
|
78
|
+
|
79
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
80
|
+
def extract_associated(*args); end
|
81
|
+
|
82
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
83
|
+
def eager_load(*args); end
|
84
|
+
|
85
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
86
|
+
def includes(*args); end
|
87
|
+
|
88
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
89
|
+
def from(*args); end
|
90
|
+
|
91
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
92
|
+
def lock(*args); end
|
93
|
+
|
94
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
95
|
+
def readonly(*args); end
|
96
|
+
|
97
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
98
|
+
def or(*args); end
|
99
|
+
|
100
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
101
|
+
def having(*args); end
|
102
|
+
|
103
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
104
|
+
def create_with(*args); end
|
105
|
+
|
106
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
107
|
+
def distinct(*args); end
|
108
|
+
|
109
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
110
|
+
def references(*args); end
|
111
|
+
|
112
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
113
|
+
def none(*args); end
|
114
|
+
|
115
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
116
|
+
def unscope(*args); end
|
117
|
+
|
118
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
119
|
+
def optimizer_hints(*args); end
|
120
|
+
|
121
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
122
|
+
def merge(*args); end
|
123
|
+
|
124
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
125
|
+
def except(*args); end
|
126
|
+
|
127
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
128
|
+
def only(*args); end
|
129
|
+
|
130
|
+
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
131
|
+
def extending(*args, &block); end
|
132
|
+
|
133
|
+
sig do
|
134
|
+
params(
|
135
|
+
of: T.nilable(Integer),
|
136
|
+
start: T.nilable(Integer),
|
137
|
+
finish: T.nilable(Integer),
|
138
|
+
load: T.nilable(T::Boolean),
|
139
|
+
error_on_ignore: T.nilable(T::Boolean),
|
140
|
+
block: T.nilable(T.proc.params(e: ActiveStorage::Record::ActiveRecord_Relation).void)
|
141
|
+
).returns(ActiveRecord::Batches::BatchEnumerator)
|
142
|
+
end
|
143
|
+
def in_batches(of: 1000, start: nil, finish: nil, load: false, error_on_ignore: nil, &block); end
|
144
|
+
end
|
145
|
+
|
146
|
+
module ActiveStorage::Record::QueryMethodsReturningAssociationRelation
|
147
|
+
sig { returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
148
|
+
def all; end
|
149
|
+
|
150
|
+
sig { params(block: T.nilable(T.proc.void)).returns(ActiveStorage::Record::ActiveRecord_Relation) }
|
151
|
+
def unscoped(&block); end
|
152
|
+
|
153
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
154
|
+
def select(*args); end
|
155
|
+
|
156
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
157
|
+
def reselect(*args); end
|
158
|
+
|
159
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
160
|
+
def order(*args); end
|
161
|
+
|
162
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
163
|
+
def reorder(*args); end
|
164
|
+
|
165
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
166
|
+
def group(*args); end
|
167
|
+
|
168
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
169
|
+
def limit(*args); end
|
170
|
+
|
171
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
172
|
+
def offset(*args); end
|
173
|
+
|
174
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
175
|
+
def joins(*args); end
|
176
|
+
|
177
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
178
|
+
def left_joins(*args); end
|
179
|
+
|
180
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
181
|
+
def left_outer_joins(*args); end
|
182
|
+
|
183
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
184
|
+
def where(*args); end
|
185
|
+
|
186
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
187
|
+
def rewhere(*args); end
|
188
|
+
|
189
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
190
|
+
def preload(*args); end
|
191
|
+
|
192
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
193
|
+
def extract_associated(*args); end
|
194
|
+
|
195
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
196
|
+
def eager_load(*args); end
|
197
|
+
|
198
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
199
|
+
def includes(*args); end
|
200
|
+
|
201
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
202
|
+
def from(*args); end
|
203
|
+
|
204
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
205
|
+
def lock(*args); end
|
206
|
+
|
207
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
208
|
+
def readonly(*args); end
|
209
|
+
|
210
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
211
|
+
def or(*args); end
|
212
|
+
|
213
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
214
|
+
def having(*args); end
|
215
|
+
|
216
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
217
|
+
def create_with(*args); end
|
218
|
+
|
219
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
220
|
+
def distinct(*args); end
|
221
|
+
|
222
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
223
|
+
def references(*args); end
|
224
|
+
|
225
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
226
|
+
def none(*args); end
|
227
|
+
|
228
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
229
|
+
def unscope(*args); end
|
230
|
+
|
231
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
232
|
+
def optimizer_hints(*args); end
|
233
|
+
|
234
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
235
|
+
def merge(*args); end
|
236
|
+
|
237
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
238
|
+
def except(*args); end
|
239
|
+
|
240
|
+
sig { params(args: T.untyped).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
241
|
+
def only(*args); end
|
242
|
+
|
243
|
+
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveStorage::Record::ActiveRecord_AssociationRelation) }
|
244
|
+
def extending(*args, &block); end
|
245
|
+
|
246
|
+
sig do
|
247
|
+
params(
|
248
|
+
of: T.nilable(Integer),
|
249
|
+
start: T.nilable(Integer),
|
250
|
+
finish: T.nilable(Integer),
|
251
|
+
load: T.nilable(T::Boolean),
|
252
|
+
error_on_ignore: T.nilable(T::Boolean),
|
253
|
+
block: T.nilable(T.proc.params(e: ActiveStorage::Record::ActiveRecord_AssociationRelation).void)
|
254
|
+
).returns(ActiveRecord::Batches::BatchEnumerator)
|
255
|
+
end
|
256
|
+
def in_batches(of: 1000, start: nil, finish: nil, load: false, error_on_ignore: nil, &block); end
|
257
|
+
end
|
258
|
+
|
259
|
+
class ActiveStorage::Record::ActiveRecord_Relation < ActiveRecord::Relation
|
260
|
+
include ActiveStorage::Record::ActiveRelation_WhereNot
|
261
|
+
include ActiveStorage::Record::CustomFinderMethods
|
262
|
+
include ActiveStorage::Record::QueryMethodsReturningRelation
|
263
|
+
Elem = type_member(fixed: ActiveStorage::Record)
|
264
|
+
end
|
265
|
+
|
266
|
+
class ActiveStorage::Record::ActiveRecord_AssociationRelation < ActiveRecord::AssociationRelation
|
267
|
+
include ActiveStorage::Record::ActiveRelation_WhereNot
|
268
|
+
include ActiveStorage::Record::CustomFinderMethods
|
269
|
+
include ActiveStorage::Record::QueryMethodsReturningAssociationRelation
|
270
|
+
Elem = type_member(fixed: ActiveStorage::Record)
|
271
|
+
end
|
272
|
+
|
273
|
+
class ActiveStorage::Record::ActiveRecord_Associations_CollectionProxy < ActiveRecord::Associations::CollectionProxy
|
274
|
+
include ActiveStorage::Record::CustomFinderMethods
|
275
|
+
include ActiveStorage::Record::QueryMethodsReturningAssociationRelation
|
276
|
+
Elem = type_member(fixed: ActiveStorage::Record)
|
277
|
+
|
278
|
+
sig { params(records: T.any(ActiveStorage::Record, T::Array[ActiveStorage::Record])).returns(T.self_type) }
|
279
|
+
def <<(*records); end
|
280
|
+
|
281
|
+
sig { params(records: T.any(ActiveStorage::Record, T::Array[ActiveStorage::Record])).returns(T.self_type) }
|
282
|
+
def append(*records); end
|
283
|
+
|
284
|
+
sig { params(records: T.any(ActiveStorage::Record, T::Array[ActiveStorage::Record])).returns(T.self_type) }
|
285
|
+
def push(*records); end
|
286
|
+
|
287
|
+
sig { params(records: T.any(ActiveStorage::Record, T::Array[ActiveStorage::Record])).returns(T.self_type) }
|
288
|
+
def concat(*records); end
|
289
|
+
end
|
@@ -57,7 +57,7 @@ module Robe::CustomFinderMethods
|
|
57
57
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[Robe]) }
|
58
58
|
def find_n(*args); end
|
59
59
|
|
60
|
-
sig { params(id: Integer).returns(T.nilable(Robe)) }
|
60
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(Robe)) }
|
61
61
|
def find_by_id(id); end
|
62
62
|
|
63
63
|
sig { params(id: Integer).returns(Robe) }
|
@@ -82,6 +82,9 @@ module Robe::QueryMethodsReturningRelation
|
|
82
82
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
83
83
|
def select(*args); end
|
84
84
|
|
85
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
86
|
+
def reselect(*args); end
|
87
|
+
|
85
88
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
86
89
|
def order(*args); end
|
87
90
|
|
@@ -115,6 +118,9 @@ module Robe::QueryMethodsReturningRelation
|
|
115
118
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
116
119
|
def preload(*args); end
|
117
120
|
|
121
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
122
|
+
def extract_associated(*args); end
|
123
|
+
|
118
124
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
119
125
|
def eager_load(*args); end
|
120
126
|
|
@@ -151,12 +157,18 @@ module Robe::QueryMethodsReturningRelation
|
|
151
157
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
152
158
|
def unscope(*args); end
|
153
159
|
|
160
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
161
|
+
def optimizer_hints(*args); end
|
162
|
+
|
154
163
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
155
164
|
def merge(*args); end
|
156
165
|
|
157
166
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
158
167
|
def except(*args); end
|
159
168
|
|
169
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_Relation) }
|
170
|
+
def only(*args); end
|
171
|
+
|
160
172
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Robe::ActiveRecord_Relation) }
|
161
173
|
def extending(*args, &block); end
|
162
174
|
|
@@ -183,6 +195,9 @@ module Robe::QueryMethodsReturningAssociationRelation
|
|
183
195
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
184
196
|
def select(*args); end
|
185
197
|
|
198
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
199
|
+
def reselect(*args); end
|
200
|
+
|
186
201
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
187
202
|
def order(*args); end
|
188
203
|
|
@@ -216,6 +231,9 @@ module Robe::QueryMethodsReturningAssociationRelation
|
|
216
231
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
217
232
|
def preload(*args); end
|
218
233
|
|
234
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
235
|
+
def extract_associated(*args); end
|
236
|
+
|
219
237
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
220
238
|
def eager_load(*args); end
|
221
239
|
|
@@ -252,12 +270,18 @@ module Robe::QueryMethodsReturningAssociationRelation
|
|
252
270
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
253
271
|
def unscope(*args); end
|
254
272
|
|
273
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
274
|
+
def optimizer_hints(*args); end
|
275
|
+
|
255
276
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
256
277
|
def merge(*args); end
|
257
278
|
|
258
279
|
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
259
280
|
def except(*args); end
|
260
281
|
|
282
|
+
sig { params(args: T.untyped).returns(Robe::ActiveRecord_AssociationRelation) }
|
283
|
+
def only(*args); end
|
284
|
+
|
261
285
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(Robe::ActiveRecord_AssociationRelation) }
|
262
286
|
def extending(*args, &block); end
|
263
287
|
|
@@ -0,0 +1,175 @@
|
|
1
|
+
# typed: strong
|
2
|
+
# This is an autogenerated file for Rails routes.
|
3
|
+
# Please run bundle exec rake rails_rbi:routes to regenerate.
|
4
|
+
class ActionController::Base
|
5
|
+
include GeneratedUrlHelpers
|
6
|
+
end
|
7
|
+
|
8
|
+
class ActionController::API
|
9
|
+
include GeneratedUrlHelpers
|
10
|
+
end
|
11
|
+
|
12
|
+
module ActionView::Helpers
|
13
|
+
include GeneratedUrlHelpers
|
14
|
+
end
|
15
|
+
|
16
|
+
class ActionMailer::Base
|
17
|
+
include GeneratedUrlHelpers
|
18
|
+
end
|
19
|
+
|
20
|
+
class ActionDispatch::IntegrationTest
|
21
|
+
include GeneratedUrlHelpers
|
22
|
+
end
|
23
|
+
|
24
|
+
class ActionDispatch::SystemTestCase
|
25
|
+
include GeneratedUrlHelpers
|
26
|
+
end
|
27
|
+
|
28
|
+
module GeneratedUrlHelpers
|
29
|
+
# Sigs for route /test/index(.:format)
|
30
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
31
|
+
def test_index_path(*args, **kwargs); end
|
32
|
+
|
33
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
34
|
+
def test_index_url(*args, **kwargs); end
|
35
|
+
|
36
|
+
# Sigs for route /rails/action_mailbox/postmark/inbound_emails(.:format)
|
37
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
38
|
+
def rails_postmark_inbound_emails_path(*args, **kwargs); end
|
39
|
+
|
40
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
41
|
+
def rails_postmark_inbound_emails_url(*args, **kwargs); end
|
42
|
+
|
43
|
+
# Sigs for route /rails/action_mailbox/relay/inbound_emails(.:format)
|
44
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
45
|
+
def rails_relay_inbound_emails_path(*args, **kwargs); end
|
46
|
+
|
47
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
48
|
+
def rails_relay_inbound_emails_url(*args, **kwargs); end
|
49
|
+
|
50
|
+
# Sigs for route /rails/action_mailbox/sendgrid/inbound_emails(.:format)
|
51
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
52
|
+
def rails_sendgrid_inbound_emails_path(*args, **kwargs); end
|
53
|
+
|
54
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
55
|
+
def rails_sendgrid_inbound_emails_url(*args, **kwargs); end
|
56
|
+
|
57
|
+
# Sigs for route /rails/action_mailbox/mandrill/inbound_emails(.:format)
|
58
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
59
|
+
def rails_mandrill_inbound_health_check_path(*args, **kwargs); end
|
60
|
+
|
61
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
62
|
+
def rails_mandrill_inbound_health_check_url(*args, **kwargs); end
|
63
|
+
|
64
|
+
# Sigs for route /rails/action_mailbox/mandrill/inbound_emails(.:format)
|
65
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
66
|
+
def rails_mandrill_inbound_emails_path(*args, **kwargs); end
|
67
|
+
|
68
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
69
|
+
def rails_mandrill_inbound_emails_url(*args, **kwargs); end
|
70
|
+
|
71
|
+
# Sigs for route /rails/action_mailbox/mailgun/inbound_emails/mime(.:format)
|
72
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
73
|
+
def rails_mailgun_inbound_emails_path(*args, **kwargs); end
|
74
|
+
|
75
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
76
|
+
def rails_mailgun_inbound_emails_url(*args, **kwargs); end
|
77
|
+
|
78
|
+
# Sigs for route /rails/conductor/action_mailbox/inbound_emails(.:format)
|
79
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
80
|
+
def rails_conductor_inbound_emails_path(*args, **kwargs); end
|
81
|
+
|
82
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
83
|
+
def rails_conductor_inbound_emails_url(*args, **kwargs); end
|
84
|
+
|
85
|
+
# Sigs for route /rails/conductor/action_mailbox/inbound_emails/new(.:format)
|
86
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
87
|
+
def new_rails_conductor_inbound_email_path(*args, **kwargs); end
|
88
|
+
|
89
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
90
|
+
def new_rails_conductor_inbound_email_url(*args, **kwargs); end
|
91
|
+
|
92
|
+
# Sigs for route /rails/conductor/action_mailbox/inbound_emails/:id/edit(.:format)
|
93
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
94
|
+
def edit_rails_conductor_inbound_email_path(*args, **kwargs); end
|
95
|
+
|
96
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
97
|
+
def edit_rails_conductor_inbound_email_url(*args, **kwargs); end
|
98
|
+
|
99
|
+
# Sigs for route /rails/conductor/action_mailbox/inbound_emails/:id(.:format)
|
100
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
101
|
+
def rails_conductor_inbound_email_path(*args, **kwargs); end
|
102
|
+
|
103
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
104
|
+
def rails_conductor_inbound_email_url(*args, **kwargs); end
|
105
|
+
|
106
|
+
# Sigs for route /rails/conductor/action_mailbox/inbound_emails/sources/new(.:format)
|
107
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
108
|
+
def new_rails_conductor_inbound_email_source_path(*args, **kwargs); end
|
109
|
+
|
110
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
111
|
+
def new_rails_conductor_inbound_email_source_url(*args, **kwargs); end
|
112
|
+
|
113
|
+
# Sigs for route /rails/conductor/action_mailbox/inbound_emails/sources(.:format)
|
114
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
115
|
+
def rails_conductor_inbound_email_sources_path(*args, **kwargs); end
|
116
|
+
|
117
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
118
|
+
def rails_conductor_inbound_email_sources_url(*args, **kwargs); end
|
119
|
+
|
120
|
+
# Sigs for route /rails/conductor/action_mailbox/:inbound_email_id/reroute(.:format)
|
121
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
122
|
+
def rails_conductor_inbound_email_reroute_path(*args, **kwargs); end
|
123
|
+
|
124
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
125
|
+
def rails_conductor_inbound_email_reroute_url(*args, **kwargs); end
|
126
|
+
|
127
|
+
# Sigs for route /rails/active_storage/blobs/redirect/:signed_id/*filename(.:format)
|
128
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
129
|
+
def rails_service_blob_path(*args, **kwargs); end
|
130
|
+
|
131
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
132
|
+
def rails_service_blob_url(*args, **kwargs); end
|
133
|
+
|
134
|
+
# Sigs for route /rails/active_storage/blobs/proxy/:signed_id/*filename(.:format)
|
135
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
136
|
+
def rails_service_blob_proxy_path(*args, **kwargs); end
|
137
|
+
|
138
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
139
|
+
def rails_service_blob_proxy_url(*args, **kwargs); end
|
140
|
+
|
141
|
+
# Sigs for route /rails/active_storage/representations/redirect/:signed_blob_id/:variation_key/*filename(.:format)
|
142
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
143
|
+
def rails_blob_representation_path(*args, **kwargs); end
|
144
|
+
|
145
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
146
|
+
def rails_blob_representation_url(*args, **kwargs); end
|
147
|
+
|
148
|
+
# Sigs for route /rails/active_storage/representations/proxy/:signed_blob_id/:variation_key/*filename(.:format)
|
149
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
150
|
+
def rails_blob_representation_proxy_path(*args, **kwargs); end
|
151
|
+
|
152
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
153
|
+
def rails_blob_representation_proxy_url(*args, **kwargs); end
|
154
|
+
|
155
|
+
# Sigs for route /rails/active_storage/disk/:encoded_key/*filename(.:format)
|
156
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
157
|
+
def rails_disk_service_path(*args, **kwargs); end
|
158
|
+
|
159
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
160
|
+
def rails_disk_service_url(*args, **kwargs); end
|
161
|
+
|
162
|
+
# Sigs for route /rails/active_storage/disk/:encoded_token(.:format)
|
163
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
164
|
+
def update_rails_disk_service_path(*args, **kwargs); end
|
165
|
+
|
166
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
167
|
+
def update_rails_disk_service_url(*args, **kwargs); end
|
168
|
+
|
169
|
+
# Sigs for route /rails/active_storage/direct_uploads(.:format)
|
170
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
171
|
+
def rails_direct_uploads_path(*args, **kwargs); end
|
172
|
+
|
173
|
+
sig { params(args: T.untyped, kwargs: T.untyped).returns(String) }
|
174
|
+
def rails_direct_uploads_url(*args, **kwargs); end
|
175
|
+
end
|
@@ -28,7 +28,7 @@ module ActiveRecord::SchemaMigration::CustomFinderMethods
|
|
28
28
|
sig { params(args: T::Array[T.any(Integer, String)]).returns(T::Array[ActiveRecord::SchemaMigration]) }
|
29
29
|
def find_n(*args); end
|
30
30
|
|
31
|
-
sig { params(id: Integer).returns(T.nilable(ActiveRecord::SchemaMigration)) }
|
31
|
+
sig { params(id: T.nilable(Integer)).returns(T.nilable(ActiveRecord::SchemaMigration)) }
|
32
32
|
def find_by_id(id); end
|
33
33
|
|
34
34
|
sig { params(id: Integer).returns(ActiveRecord::SchemaMigration) }
|
@@ -52,6 +52,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
|
|
52
52
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
53
53
|
def select(*args); end
|
54
54
|
|
55
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
56
|
+
def reselect(*args); end
|
57
|
+
|
55
58
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
56
59
|
def order(*args); end
|
57
60
|
|
@@ -85,6 +88,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
|
|
85
88
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
86
89
|
def preload(*args); end
|
87
90
|
|
91
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
92
|
+
def extract_associated(*args); end
|
93
|
+
|
88
94
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
89
95
|
def eager_load(*args); end
|
90
96
|
|
@@ -121,12 +127,18 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningRelation
|
|
121
127
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
122
128
|
def unscope(*args); end
|
123
129
|
|
130
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
131
|
+
def optimizer_hints(*args); end
|
132
|
+
|
124
133
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
125
134
|
def merge(*args); end
|
126
135
|
|
127
136
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
128
137
|
def except(*args); end
|
129
138
|
|
139
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
140
|
+
def only(*args); end
|
141
|
+
|
130
142
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_Relation) }
|
131
143
|
def extending(*args, &block); end
|
132
144
|
|
@@ -153,6 +165,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
|
|
153
165
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
154
166
|
def select(*args); end
|
155
167
|
|
168
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
169
|
+
def reselect(*args); end
|
170
|
+
|
156
171
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
157
172
|
def order(*args); end
|
158
173
|
|
@@ -186,6 +201,9 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
|
|
186
201
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
187
202
|
def preload(*args); end
|
188
203
|
|
204
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
205
|
+
def extract_associated(*args); end
|
206
|
+
|
189
207
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
190
208
|
def eager_load(*args); end
|
191
209
|
|
@@ -222,12 +240,18 @@ module ActiveRecord::SchemaMigration::QueryMethodsReturningAssociationRelation
|
|
222
240
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
223
241
|
def unscope(*args); end
|
224
242
|
|
243
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
244
|
+
def optimizer_hints(*args); end
|
245
|
+
|
225
246
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
226
247
|
def merge(*args); end
|
227
248
|
|
228
249
|
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
229
250
|
def except(*args); end
|
230
251
|
|
252
|
+
sig { params(args: T.untyped).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
253
|
+
def only(*args); end
|
254
|
+
|
231
255
|
sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(ActiveRecord::SchemaMigration::ActiveRecord_AssociationRelation) }
|
232
256
|
def extending(*args, &block); end
|
233
257
|
|