sorbet-rails 0.7.33 → 0.7.34
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci-master.yml +1 -1
- data/.github/workflows/ci.yml +1 -1
- data/CONTRIBUTING.md +1 -0
- data/Gemfile +4 -0
- data/README.md +1 -1
- data/Rakefile +27 -1
- data/lib/sorbet-rails/active_record_rbi_formatter.rb +1 -1
- data/lib/sorbet-rails/model_plugins/active_record_querying.rb +14 -0
- data/lib/sorbet-rails/rails_mixins/active_record_overrides.rb +1 -1
- data/lib/sorbet-rails/tasks/rails_rbi.rake +15 -0
- data/sorbet-rails.gemspec +1 -1
- data/spec/bin/run_all_specs.sh +1 -0
- data/spec/generators/rails-template.rb +2 -7
- data/spec/rails_helper.rb +2 -0
- data/spec/rake_rails_rbi_models_spec.rb +1 -1
- data/spec/support/v5.2/sorbet_test_cases.rb +8 -0
- data/spec/support/v6.0/sorbet_test_cases.rb +8 -0
- data/spec/support/v6.1/sorbet_test_cases.rb +8 -0
- data/spec/support/v7.0/.gitattributes +7 -0
- data/spec/support/v7.0/.gitignore +35 -0
- data/spec/support/v7.0/Gemfile +48 -0
- data/spec/support/v7.0/Gemfile.lock +218 -0
- data/spec/support/v7.0/README.md +24 -0
- data/spec/support/v7.0/Rakefile +6 -0
- data/spec/support/v7.0/app/assets/images/.keep +0 -0
- data/spec/support/v7.0/app/assets/stylesheets/application.css +1 -0
- data/spec/support/v7.0/app/controllers/application_controller.rb +3 -0
- data/spec/support/v7.0/app/controllers/concerns/.keep +0 -0
- data/spec/support/v7.0/app/helpers/application_helper.rb +3 -0
- data/spec/support/v7.0/app/helpers/bar_helper.rb +3 -0
- data/spec/support/v7.0/app/helpers/baz_helper.rb +3 -0
- data/spec/support/v7.0/app/helpers/foo_helper.rb +3 -0
- data/spec/support/v7.0/app/jobs/application_job.rb +8 -0
- data/spec/support/v7.0/app/jobs/award_house_point_hourglasses.rb +12 -0
- data/spec/support/v7.0/app/mailers/application_mailer.rb +5 -0
- data/spec/support/v7.0/app/mailers/daily_prophet_mailer.rb +9 -0
- data/spec/support/v7.0/app/mailers/hogwarts_acceptance_mailer.rb +29 -0
- data/spec/support/v7.0/app/models/application_record.rb +4 -0
- data/spec/support/v7.0/app/models/concerns/.keep +0 -0
- data/spec/support/v7.0/app/models/concerns/mythical.rb +11 -0
- data/spec/support/v7.0/app/models/headmaster.rb +8 -0
- data/spec/support/v7.0/app/models/potion.rb +6 -0
- data/spec/support/v7.0/app/models/robe.rb +4 -0
- data/spec/support/v7.0/app/models/school.rb +5 -0
- data/spec/support/v7.0/app/models/spell.rb +5 -0
- data/spec/support/v7.0/app/models/spell_book.rb +18 -0
- data/spec/support/v7.0/app/models/squib.rb +6 -0
- data/spec/support/v7.0/app/models/subject.rb +5 -0
- data/spec/support/v7.0/app/models/wand.rb +19 -0
- data/spec/support/v7.0/app/models/wizard.rb +65 -0
- data/spec/support/v7.0/app/views/layouts/application.html.erb +15 -0
- data/spec/support/v7.0/app/views/layouts/mailer.html.erb +13 -0
- data/spec/support/v7.0/app/views/layouts/mailer.text.erb +1 -0
- data/spec/support/v7.0/bin/bundle +114 -0
- data/spec/support/v7.0/bin/rails +4 -0
- data/spec/support/v7.0/bin/rake +4 -0
- data/spec/support/v7.0/bin/setup +33 -0
- data/spec/support/v7.0/config/application.rb +38 -0
- data/spec/support/v7.0/config/boot.rb +4 -0
- data/spec/support/v7.0/config/database.yml +25 -0
- data/spec/support/v7.0/config/environment.rb +6 -0
- data/spec/support/v7.0/config/environments/development.rb +69 -0
- data/spec/support/v7.0/config/environments/production.rb +83 -0
- data/spec/support/v7.0/config/environments/test.rb +61 -0
- data/spec/support/v7.0/config/initializers/content_security_policy.rb +26 -0
- data/spec/support/v7.0/config/initializers/filter_parameter_logging.rb +9 -0
- data/spec/support/v7.0/config/initializers/inflections.rb +17 -0
- data/spec/support/v7.0/config/initializers/permissions_policy.rb +12 -0
- data/spec/support/v7.0/config/initializers/sorbet_rails.rb +3 -0
- data/spec/support/v7.0/config/locales/en.yml +33 -0
- data/spec/support/v7.0/config/puma.rb +44 -0
- data/spec/support/v7.0/config/routes.rb +8 -0
- data/spec/support/v7.0/config/storage.yml +34 -0
- data/spec/support/v7.0/config.ru +6 -0
- data/spec/support/v7.0/db/migrate/20190620000001_create_wizards.rb +14 -0
- data/spec/support/v7.0/db/migrate/20190620000002_create_wands.rb +12 -0
- data/spec/support/v7.0/db/migrate/20190620000003_create_spell_books.rb +10 -0
- data/spec/support/v7.0/db/migrate/20190620000004_add_more_column_types_to_wands.rb +14 -0
- data/spec/support/v7.0/db/migrate/20190620000005_add_broom_to_wizard.rb +6 -0
- data/spec/support/v7.0/db/migrate/20190620000006_add_more_enums_to_wizard.rb +9 -0
- data/spec/support/v7.0/db/migrate/20190620000007_add_type_to_wizard.rb +6 -0
- data/spec/support/v7.0/db/migrate/20190620000008_add_robe_to_wizard.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000009_add_school.rb +10 -0
- data/spec/support/v7.0/db/migrate/20190620000010_add_subject.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000011_add_subjects_wizards.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000012_add_spell.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000013_add_spells_spell_books.rb +8 -0
- data/spec/support/v7.0/db/migrate/20190620000014_create_headmasters.rb +9 -0
- data/spec/support/v7.0/db/migrate/20190620000015_add_serialized_to_wizards.rb +9 -0
- data/spec/support/v7.0/db/schema.rb +98 -0
- data/spec/support/v7.0/db/seeds.rb +8 -0
- data/spec/support/v7.0/lib/assets/.keep +0 -0
- data/spec/support/v7.0/lib/mythical_rbi_plugin.rb +16 -0
- data/spec/support/v7.0/lib/tasks/.keep +0 -0
- data/spec/support/v7.0/log/.keep +0 -0
- data/spec/support/v7.0/sorbet_test_cases.rb +439 -0
- data/spec/support/v7.0/storage/.keep +0 -0
- data/spec/support/v7.0/tmp/.keep +0 -0
- data/spec/support/v7.0/tmp/pids/.keep +0 -0
- data/spec/support/v7.0/tmp/storage/.keep +0 -0
- data/spec/support/v7.0/vendor/.keep +0 -0
- data/spec/test_data/v5.2/expected_active_record_base.rbi +6 -0
- data/spec/test_data/v5.2/expected_active_record_relation.rbi +6 -0
- data/spec/test_data/v6.0/expected_active_record_base.rbi +6 -0
- data/spec/test_data/v6.0/expected_active_record_relation.rbi +6 -0
- data/spec/test_data/v6.1/expected_active_record_base.rbi +6 -0
- data/spec/test_data/v6.1/expected_active_record_relation.rbi +6 -0
- data/spec/test_data/v7.0/expected_active_record_base.rbi +119 -0
- data/spec/test_data/v7.0/expected_active_record_relation.rbi +180 -0
- data/spec/test_data/v7.0/expected_application_job.rbi +20 -0
- data/spec/test_data/v7.0/expected_application_mailer.rbi +5 -0
- data/spec/test_data/v7.0/expected_attachment.rbi +358 -0
- data/spec/test_data/v7.0/expected_award_house_point_hourglasses.rbi +20 -0
- data/spec/test_data/v7.0/expected_blob.rbi +394 -0
- data/spec/test_data/v7.0/expected_custom_application_job.rbi +21 -0
- data/spec/test_data/v7.0/expected_custom_application_mailer.rbi +6 -0
- data/spec/test_data/v7.0/expected_custom_award_house_point_hourglasses.rbi +21 -0
- data/spec/test_data/v7.0/expected_custom_daily_prophet_mailer.rbi +8 -0
- data/spec/test_data/v7.0/expected_custom_hogwarts_acceptance_mailer.rbi +21 -0
- data/spec/test_data/v7.0/expected_daily_prophet_mailer.rbi +7 -0
- data/spec/test_data/v7.0/expected_headmaster.rbi +376 -0
- data/spec/test_data/v7.0/expected_helpers.rbi +27 -0
- data/spec/test_data/v7.0/expected_helpers_with_application_and_devise_helpers.rbi +34 -0
- data/spec/test_data/v7.0/expected_hogwarts_acceptance_mailer.rbi +20 -0
- data/spec/test_data/v7.0/expected_internal_metadata.rbi +346 -0
- data/spec/test_data/v7.0/expected_no_routes.rbi +4 -0
- data/spec/test_data/v7.0/expected_potion.rbi +328 -0
- data/spec/test_data/v7.0/expected_record.rbi +307 -0
- data/spec/test_data/v7.0/expected_robe.rbi +349 -0
- data/spec/test_data/v7.0/expected_routes.rbi +182 -0
- data/spec/test_data/v7.0/expected_schema_migration.rbi +319 -0
- data/spec/test_data/v7.0/expected_school.rbi +349 -0
- data/spec/test_data/v7.0/expected_spell/habtm_spell_books.rbi +367 -0
- data/spec/test_data/v7.0/expected_spell.rbi +340 -0
- data/spec/test_data/v7.0/expected_spell_book/habtm_spells.rbi +367 -0
- data/spec/test_data/v7.0/expected_spell_book.rbi +499 -0
- data/spec/test_data/v7.0/expected_squib.rbi +1204 -0
- data/spec/test_data/v7.0/expected_srb_tc_output.txt +1 -0
- data/spec/test_data/v7.0/expected_subject/habtm_wizards.rbi +367 -0
- data/spec/test_data/v7.0/expected_subject.rbi +340 -0
- data/spec/test_data/v7.0/expected_variant_record.rbi +382 -0
- data/spec/test_data/v7.0/expected_wand.rbi +611 -0
- data/spec/test_data/v7.0/expected_wizard/habtm_subjects.rbi +367 -0
- data/spec/test_data/v7.0/expected_wizard.rbi +1280 -0
- data/spec/test_data/v7.0/expected_wizard_wo_spellbook.rbi +1274 -0
- metadata +243 -1
@@ -58,6 +58,12 @@ class ActiveRecord::Relation
|
|
58
58
|
sig { returns(Elem) }
|
59
59
|
def last!; end
|
60
60
|
|
61
|
+
sig { returns(T.nilable(Elem)) }
|
62
|
+
def take; end
|
63
|
+
|
64
|
+
sig { returns(Elem) }
|
65
|
+
def take!; end
|
66
|
+
|
61
67
|
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
62
68
|
def create(attributes = nil, &block); end
|
63
69
|
|
@@ -56,6 +56,12 @@ class ActiveRecord::Base
|
|
56
56
|
sig { returns(T.attached_class) }
|
57
57
|
def self.last!; end
|
58
58
|
|
59
|
+
sig { returns(T.nilable(T.attached_class)) }
|
60
|
+
def self.take; end
|
61
|
+
|
62
|
+
sig { returns(T.attached_class) }
|
63
|
+
def self.take!; end
|
64
|
+
|
59
65
|
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
60
66
|
def self.create(attributes = nil, &block); end
|
61
67
|
|
@@ -58,6 +58,12 @@ class ActiveRecord::Relation
|
|
58
58
|
sig { returns(Elem) }
|
59
59
|
def last!; end
|
60
60
|
|
61
|
+
sig { returns(T.nilable(Elem)) }
|
62
|
+
def take; end
|
63
|
+
|
64
|
+
sig { returns(Elem) }
|
65
|
+
def take!; end
|
66
|
+
|
61
67
|
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
62
68
|
def create(attributes = nil, &block); end
|
63
69
|
|
@@ -0,0 +1,119 @@
|
|
1
|
+
# typed: strong
|
2
|
+
# This is an autogenerated file for Rails' ActiveRecord.
|
3
|
+
# Please rerun bundle exec rake rails_rbi:active_record to regenerate.
|
4
|
+
class ActiveRecord::Base
|
5
|
+
sig { params(args: T.untyped).returns(T.attached_class) }
|
6
|
+
def self.find(*args); end
|
7
|
+
|
8
|
+
sig { params(args: T.untyped).returns(T.nilable(T.attached_class)) }
|
9
|
+
def self.find_by(*args); end
|
10
|
+
|
11
|
+
sig { params(args: T.untyped).returns(T.attached_class) }
|
12
|
+
def self.find_by!(*args); end
|
13
|
+
|
14
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
15
|
+
def self.find_or_initialize_by(attributes, &block); end
|
16
|
+
|
17
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
18
|
+
def self.find_or_create_by(attributes, &block); end
|
19
|
+
|
20
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
21
|
+
def self.find_or_create_by!(attributes, &block); end
|
22
|
+
|
23
|
+
sig { returns(T.nilable(T.attached_class)) }
|
24
|
+
def self.first; end
|
25
|
+
|
26
|
+
sig { returns(T.attached_class) }
|
27
|
+
def self.first!; end
|
28
|
+
|
29
|
+
sig { returns(T.nilable(T.attached_class)) }
|
30
|
+
def self.second; end
|
31
|
+
|
32
|
+
sig { returns(T.attached_class) }
|
33
|
+
def self.second!; end
|
34
|
+
|
35
|
+
sig { returns(T.nilable(T.attached_class)) }
|
36
|
+
def self.third; end
|
37
|
+
|
38
|
+
sig { returns(T.attached_class) }
|
39
|
+
def self.third!; end
|
40
|
+
|
41
|
+
sig { returns(T.nilable(T.attached_class)) }
|
42
|
+
def self.third_to_last; end
|
43
|
+
|
44
|
+
sig { returns(T.attached_class) }
|
45
|
+
def self.third_to_last!; end
|
46
|
+
|
47
|
+
sig { returns(T.nilable(T.attached_class)) }
|
48
|
+
def self.second_to_last; end
|
49
|
+
|
50
|
+
sig { returns(T.attached_class) }
|
51
|
+
def self.second_to_last!; end
|
52
|
+
|
53
|
+
sig { returns(T.nilable(T.attached_class)) }
|
54
|
+
def self.last; end
|
55
|
+
|
56
|
+
sig { returns(T.attached_class) }
|
57
|
+
def self.last!; end
|
58
|
+
|
59
|
+
sig { returns(T.nilable(T.attached_class)) }
|
60
|
+
def self.take; end
|
61
|
+
|
62
|
+
sig { returns(T.attached_class) }
|
63
|
+
def self.take!; end
|
64
|
+
|
65
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
66
|
+
def self.create(attributes = nil, &block); end
|
67
|
+
|
68
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
69
|
+
def self.create!(attributes = nil, &block); end
|
70
|
+
|
71
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
72
|
+
def self.new(attributes = nil, &block); end
|
73
|
+
|
74
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
75
|
+
def self.first_or_create(attributes = nil, &block); end
|
76
|
+
|
77
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
78
|
+
def self.first_or_create!(attributes = nil, &block); end
|
79
|
+
|
80
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: T.attached_class).void)).returns(T.attached_class) }
|
81
|
+
def self.first_or_initialize(attributes = nil, &block); end
|
82
|
+
|
83
|
+
sig do
|
84
|
+
params(
|
85
|
+
start: T.nilable(Integer),
|
86
|
+
finish: T.nilable(Integer),
|
87
|
+
batch_size: T.nilable(Integer),
|
88
|
+
error_on_ignore: T.nilable(T::Boolean),
|
89
|
+
block: T.nilable(T.proc.params(e: T.attached_class).void)
|
90
|
+
).returns(T::Enumerator[T.attached_class])
|
91
|
+
end
|
92
|
+
def self.find_each(start: nil, finish: nil, batch_size: 1000, error_on_ignore: nil, &block); end
|
93
|
+
|
94
|
+
sig do
|
95
|
+
params(
|
96
|
+
start: T.nilable(Integer),
|
97
|
+
finish: T.nilable(Integer),
|
98
|
+
batch_size: T.nilable(Integer),
|
99
|
+
error_on_ignore: T.nilable(T::Boolean),
|
100
|
+
block: T.nilable(T.proc.params(e: T::Array[T.attached_class]).void)
|
101
|
+
).returns(T::Enumerator[T::Array[T.attached_class]])
|
102
|
+
end
|
103
|
+
def self.find_in_batches(start: nil, finish: nil, batch_size: 1000, error_on_ignore: nil, &block); end
|
104
|
+
|
105
|
+
sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
106
|
+
def self.any?(&block); end
|
107
|
+
|
108
|
+
sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
109
|
+
def self.many?(&block); end
|
110
|
+
|
111
|
+
sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
112
|
+
def self.none?(&block); end
|
113
|
+
|
114
|
+
sig { params(block: T.nilable(T.proc.params(e: T.attached_class).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
115
|
+
def self.one?(&block); end
|
116
|
+
|
117
|
+
sig { params(conditions: T.untyped).returns(T::Boolean) }
|
118
|
+
def self.exists?(conditions = nil); end
|
119
|
+
end
|
@@ -0,0 +1,180 @@
|
|
1
|
+
# typed: strong
|
2
|
+
# This is an autogenerated file for Rails' ActiveRecord.
|
3
|
+
# Please rerun bundle exec rake rails_rbi:active_record to regenerate.
|
4
|
+
class ActiveRecord::Relation
|
5
|
+
include Enumerable
|
6
|
+
|
7
|
+
sig { params(args: T.untyped).returns(Elem) }
|
8
|
+
def find(*args); end
|
9
|
+
|
10
|
+
sig { params(args: T.untyped).returns(T.nilable(Elem)) }
|
11
|
+
def find_by(*args); end
|
12
|
+
|
13
|
+
sig { params(args: T.untyped).returns(Elem) }
|
14
|
+
def find_by!(*args); end
|
15
|
+
|
16
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
17
|
+
def find_or_initialize_by(attributes, &block); end
|
18
|
+
|
19
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
20
|
+
def find_or_create_by(attributes, &block); end
|
21
|
+
|
22
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
23
|
+
def find_or_create_by!(attributes, &block); end
|
24
|
+
|
25
|
+
sig { returns(T.nilable(Elem)) }
|
26
|
+
def first; end
|
27
|
+
|
28
|
+
sig { returns(Elem) }
|
29
|
+
def first!; end
|
30
|
+
|
31
|
+
sig { returns(T.nilable(Elem)) }
|
32
|
+
def second; end
|
33
|
+
|
34
|
+
sig { returns(Elem) }
|
35
|
+
def second!; end
|
36
|
+
|
37
|
+
sig { returns(T.nilable(Elem)) }
|
38
|
+
def third; end
|
39
|
+
|
40
|
+
sig { returns(Elem) }
|
41
|
+
def third!; end
|
42
|
+
|
43
|
+
sig { returns(T.nilable(Elem)) }
|
44
|
+
def third_to_last; end
|
45
|
+
|
46
|
+
sig { returns(Elem) }
|
47
|
+
def third_to_last!; end
|
48
|
+
|
49
|
+
sig { returns(T.nilable(Elem)) }
|
50
|
+
def second_to_last; end
|
51
|
+
|
52
|
+
sig { returns(Elem) }
|
53
|
+
def second_to_last!; end
|
54
|
+
|
55
|
+
sig { returns(T.nilable(Elem)) }
|
56
|
+
def last; end
|
57
|
+
|
58
|
+
sig { returns(Elem) }
|
59
|
+
def last!; end
|
60
|
+
|
61
|
+
sig { returns(T.nilable(Elem)) }
|
62
|
+
def take; end
|
63
|
+
|
64
|
+
sig { returns(Elem) }
|
65
|
+
def take!; end
|
66
|
+
|
67
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
68
|
+
def create(attributes = nil, &block); end
|
69
|
+
|
70
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
71
|
+
def create!(attributes = nil, &block); end
|
72
|
+
|
73
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
74
|
+
def new(attributes = nil, &block); end
|
75
|
+
|
76
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
77
|
+
def build(attributes = nil, &block); end
|
78
|
+
|
79
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
80
|
+
def first_or_create(attributes = nil, &block); end
|
81
|
+
|
82
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
83
|
+
def first_or_create!(attributes = nil, &block); end
|
84
|
+
|
85
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
86
|
+
def first_or_initialize(attributes = nil, &block); end
|
87
|
+
|
88
|
+
sig do
|
89
|
+
params(
|
90
|
+
start: T.nilable(Integer),
|
91
|
+
finish: T.nilable(Integer),
|
92
|
+
batch_size: T.nilable(Integer),
|
93
|
+
error_on_ignore: T.nilable(T::Boolean),
|
94
|
+
block: T.nilable(T.proc.params(e: Elem).void)
|
95
|
+
).returns(T::Enumerator[Elem])
|
96
|
+
end
|
97
|
+
def find_each(start: nil, finish: nil, batch_size: 1000, error_on_ignore: nil, &block); end
|
98
|
+
|
99
|
+
sig do
|
100
|
+
params(
|
101
|
+
start: T.nilable(Integer),
|
102
|
+
finish: T.nilable(Integer),
|
103
|
+
batch_size: T.nilable(Integer),
|
104
|
+
error_on_ignore: T.nilable(T::Boolean),
|
105
|
+
block: T.nilable(T.proc.params(e: T::Array[Elem]).void)
|
106
|
+
).returns(T::Enumerator[T::Array[Elem]])
|
107
|
+
end
|
108
|
+
def find_in_batches(start: nil, finish: nil, batch_size: 1000, error_on_ignore: nil, &block); end
|
109
|
+
|
110
|
+
sig { params(block: T.nilable(T.proc.params(e: Elem).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
111
|
+
def any?(&block); end
|
112
|
+
|
113
|
+
sig { params(block: T.nilable(T.proc.params(e: Elem).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
114
|
+
def many?(&block); end
|
115
|
+
|
116
|
+
sig { params(block: T.nilable(T.proc.params(e: Elem).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
117
|
+
def none?(&block); end
|
118
|
+
|
119
|
+
sig { params(block: T.nilable(T.proc.params(e: Elem).returns(T.nilable(T::Boolean)))).returns(T::Boolean) }
|
120
|
+
def one?(&block); end
|
121
|
+
|
122
|
+
sig { params(conditions: T.untyped).returns(T::Boolean) }
|
123
|
+
def exists?(conditions = nil); end
|
124
|
+
|
125
|
+
sig { override.params(block: T.proc.params(e: Elem).void).returns(T::Array[Elem]) }
|
126
|
+
def each(&block); end
|
127
|
+
|
128
|
+
sig { params(level: T.nilable(Integer)).returns(T::Array[Elem]) }
|
129
|
+
def flatten(level); end
|
130
|
+
|
131
|
+
sig { returns(T::Array[Elem]) }
|
132
|
+
def to_a; end
|
133
|
+
|
134
|
+
sig { type_parameters(:U).params(blk: T.proc.params(arg0: Elem).returns(T.type_parameter(:U))).returns(T::Array[T.type_parameter(:U)]) }
|
135
|
+
def map(&blk); end
|
136
|
+
|
137
|
+
sig { returns(T::Boolean) }
|
138
|
+
def empty?; end
|
139
|
+
end
|
140
|
+
|
141
|
+
class ActiveRecord::AssociationRelation < ActiveRecord::Relation
|
142
|
+
Elem = type_member {{fixed: T.untyped}}
|
143
|
+
|
144
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
145
|
+
def new(attributes = nil, &block); end
|
146
|
+
|
147
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
148
|
+
def build(attributes = nil, &block); end
|
149
|
+
|
150
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
151
|
+
def create(attributes = nil, &block); end
|
152
|
+
|
153
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
154
|
+
def create!(attributes = nil, &block); end
|
155
|
+
end
|
156
|
+
|
157
|
+
class ActiveRecord::Associations::CollectionProxy < ActiveRecord::Relation
|
158
|
+
Elem = type_member {{fixed: T.untyped}}
|
159
|
+
|
160
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
161
|
+
def new(attributes = nil, &block); end
|
162
|
+
|
163
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
164
|
+
def build(attributes = nil, &block); end
|
165
|
+
|
166
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
167
|
+
def create(attributes = nil, &block); end
|
168
|
+
|
169
|
+
sig { params(attributes: T.untyped, block: T.nilable(T.proc.params(object: Elem).void)).returns(Elem) }
|
170
|
+
def create!(attributes = nil, &block); end
|
171
|
+
|
172
|
+
sig { params(args: T.untyped).returns(Elem) }
|
173
|
+
def find(*args); end
|
174
|
+
|
175
|
+
sig { params(limit: T.untyped).returns(T.nilable(Elem)) }
|
176
|
+
def last(limit = nil); end
|
177
|
+
|
178
|
+
sig { returns(T::Boolean) }
|
179
|
+
def empty?; end
|
180
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# typed: strong
|
2
|
+
# This is an autogenerated file for Rails' jobs.
|
3
|
+
# Please rerun bundle exec rake rails_rbi:jobs to regenerate.
|
4
|
+
class ApplicationJob
|
5
|
+
sig { params(_: T.untyped).returns(ApplicationJob) }
|
6
|
+
def self.perform_later(*_); end
|
7
|
+
|
8
|
+
sig { params(_: T.untyped).returns(ApplicationJob) }
|
9
|
+
def self.perform_now(*_); end
|
10
|
+
|
11
|
+
sig do
|
12
|
+
params(
|
13
|
+
wait: T.nilable(ActiveSupport::Duration),
|
14
|
+
wait_until: T.nilable(T.any(ActiveSupport::TimeWithZone, Date, Time)),
|
15
|
+
queue: T.nilable(T.any(String, Symbol)),
|
16
|
+
priority: T.nilable(Integer)
|
17
|
+
).returns(T.self_type)
|
18
|
+
end
|
19
|
+
def self.set(wait: nil, wait_until: nil, queue: nil, priority: nil); end
|
20
|
+
end
|