packwerk 3.2.2 → 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/packwerk/application_validator.rb +2 -1
- data/lib/packwerk/graph.rb +15 -56
- data/lib/packwerk/reference_checking/checkers/dependency_checker.rb +1 -2
- data/lib/packwerk/run_context.rb +5 -0
- data/lib/packwerk/validators/dependency_validator.rb +5 -4
- data/lib/packwerk/version.rb +1 -1
- data/sorbet/rbi/gems/{actionpack@7.0.3.1.rbi → actionpack@7.0.8.7.rbi} +1338 -1227
- data/sorbet/rbi/gems/{actionview@7.0.3.1.rbi → actionview@7.0.8.7.rbi} +548 -503
- data/sorbet/rbi/gems/{activesupport@7.0.3.1.rbi → activesupport@7.0.8.7.rbi} +714 -635
- data/sorbet/rbi/gems/{better_html@2.0.1.rbi → better_html@2.1.1.rbi} +21 -21
- data/sorbet/rbi/gems/{concurrent-ruby@1.1.10.rbi → concurrent-ruby@1.3.5.rbi} +1390 -1366
- data/sorbet/rbi/gems/{constant_resolver@0.2.0.rbi → constant_resolver@0.3.0.rbi} +22 -13
- data/sorbet/rbi/gems/{erubi@1.11.0.rbi → erubi@1.13.1.rbi} +28 -17
- data/sorbet/rbi/gems/{i18n@1.12.0.rbi → i18n@1.14.7.rbi} +234 -172
- data/sorbet/rbi/gems/{json@2.6.2.rbi → json@2.7.2.rbi} +94 -74
- data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +14237 -0
- data/sorbet/rbi/gems/{loofah@2.18.0.rbi → loofah@2.24.0.rbi} +470 -243
- data/sorbet/rbi/gems/{minitest@5.16.2.rbi → minitest@5.25.4.rbi} +577 -472
- data/sorbet/rbi/gems/{mocha@1.14.0.rbi → mocha@2.5.0.rbi} +468 -684
- data/sorbet/rbi/gems/{nokogiri@1.15.3.rbi → nokogiri@1.18.4.rbi} +1756 -869
- data/sorbet/rbi/gems/{parallel@1.24.0.rbi → parallel@1.25.1.rbi} +26 -20
- data/sorbet/rbi/gems/{racc@1.7.1.rbi → racc@1.8.1.rbi} +36 -36
- data/sorbet/rbi/gems/{rack-test@2.0.2.rbi → rack-test@2.2.0.rbi} +87 -114
- data/sorbet/rbi/gems/{rack@2.2.4.rbi → rack@2.2.13.rbi} +243 -195
- data/sorbet/rbi/gems/rails-dom-testing@2.2.0.rbi +754 -0
- data/sorbet/rbi/gems/rails-html-sanitizer@1.6.2.rbi +764 -0
- data/sorbet/rbi/gems/{railties@7.0.3.1.rbi → railties@7.0.8.7.rbi} +146 -140
- data/sorbet/rbi/gems/{regexp_parser@2.5.0.rbi → regexp_parser@2.9.2.rbi} +947 -542
- data/sorbet/rbi/gems/{rexml@3.2.5.rbi → rexml@3.3.9.rbi} +452 -312
- data/sorbet/rbi/gems/{rubocop-ast@1.21.0.rbi → rubocop-ast@1.31.3.rbi} +717 -588
- data/sorbet/rbi/gems/{rubocop@1.34.1.rbi → rubocop@1.64.1.rbi} +10916 -4406
- data/sorbet/rbi/gems/{ruby-progressbar@1.11.0.rbi → ruby-progressbar@1.13.0.rbi} +359 -281
- data/sorbet/rbi/gems/ruby2_keywords@0.0.5.rbi +8 -0
- data/sorbet/rbi/gems/{tzinfo@2.0.5.rbi → tzinfo@2.0.6.rbi} +144 -141
- data/sorbet/rbi/gems/{unicode-display_width@2.2.0.rbi → unicode-display_width@2.5.0.rbi} +24 -7
- metadata +36 -41
- data/sorbet/rbi/gems/language_server-protocol@3.16.0.3.rbi +0 -8
- data/sorbet/rbi/gems/prettier_print@0.1.0.rbi +0 -8
- data/sorbet/rbi/gems/rails-dom-testing@2.0.3.rbi +0 -455
- data/sorbet/rbi/gems/rails-html-sanitizer@1.4.3.rbi +0 -542
- data/sorbet/rbi/gems/ruby-lsp@0.2.3.rbi +0 -11
- data/sorbet/rbi/gems/syntax_tree@3.3.0.rbi +0 -8
- /data/sorbet/rbi/gems/{builder@3.2.4.rbi → builder@3.3.0.rbi} +0 -0
- /data/sorbet/rbi/gems/{parser@3.3.1.0.rbi → parser@3.3.3.0.rbi} +0 -0
@@ -32,7 +32,7 @@ module Rails
|
|
32
32
|
# source://railties//lib/rails.rb#37
|
33
33
|
def application=(_arg0); end
|
34
34
|
|
35
|
-
# source://railties//lib/rails.rb#
|
35
|
+
# source://railties//lib/rails.rb#123
|
36
36
|
def autoloaders; end
|
37
37
|
|
38
38
|
# source://railties//lib/rails.rb#50
|
@@ -71,7 +71,15 @@ module Rails
|
|
71
71
|
# source://railties//lib/rails.rb#79
|
72
72
|
def env=(environment); end
|
73
73
|
|
74
|
-
#
|
74
|
+
# Returns the ActiveSupport::ErrorReporter of the current Rails project,
|
75
|
+
# otherwise it returns +nil+ if there is no project.
|
76
|
+
#
|
77
|
+
# Rails.error.handle(IOError) do
|
78
|
+
# # ...
|
79
|
+
# end
|
80
|
+
# Rails.error.report(error)
|
81
|
+
#
|
82
|
+
# source://railties//lib/rails.rb#90
|
75
83
|
def error; end
|
76
84
|
|
77
85
|
# Returns the currently loaded version of Rails as a <tt>Gem::Version</tt>.
|
@@ -89,7 +97,7 @@ module Rails
|
|
89
97
|
# # => [:default, "development", :assets] for Rails.env == "development"
|
90
98
|
# # => [:default, "production"] for Rails.env == "production"
|
91
99
|
#
|
92
|
-
# source://railties//lib/rails.rb#
|
100
|
+
# source://railties//lib/rails.rb#103
|
93
101
|
def groups(*groups); end
|
94
102
|
|
95
103
|
# source://railties//lib/rails.rb#43
|
@@ -116,7 +124,7 @@ module Rails
|
|
116
124
|
# Rails.public_path
|
117
125
|
# # => #<Pathname:/Users/someuser/some/path/project/public>
|
118
126
|
#
|
119
|
-
# source://railties//lib/rails.rb#
|
127
|
+
# source://railties//lib/rails.rb#119
|
120
128
|
def public_path; end
|
121
129
|
|
122
130
|
# Returns a Pathname object of the current Rails project,
|
@@ -263,15 +271,22 @@ class Rails::Application < ::Rails::Engine
|
|
263
271
|
# source://railties//lib/rails/application.rb#303
|
264
272
|
def console(&blk); end
|
265
273
|
|
266
|
-
#
|
267
|
-
#
|
268
|
-
#
|
269
|
-
#
|
270
|
-
#
|
271
|
-
#
|
272
|
-
#
|
274
|
+
# Returns an ActiveSupport::EncryptedConfiguration instance for the
|
275
|
+
# credentials file specified by +config.credentials.content_path+.
|
276
|
+
#
|
277
|
+
# By default, +config.credentials.content_path+ will point to either
|
278
|
+
# <tt>config/credentials/#{environment}.yml.enc</tt> for the current
|
279
|
+
# environment (for example, +config/credentials/production.yml.enc+ for the
|
280
|
+
# +production+ environment), or +config/credentials.yml.enc+ if that file
|
281
|
+
# does not exist.
|
282
|
+
#
|
283
|
+
# The encryption key is taken from either <tt>ENV["RAILS_MASTER_KEY"]</tt>,
|
284
|
+
# or from the file specified by +config.credentials.key_path+. By default,
|
285
|
+
# +config.credentials.key_path+ will point to either
|
286
|
+
# <tt>config/credentials/#{environment}.key</tt> for the current
|
287
|
+
# environment, or +config/master.key+ if that file does not exist.
|
273
288
|
#
|
274
|
-
# source://railties//lib/rails/application.rb#
|
289
|
+
# source://railties//lib/rails/application.rb#439
|
275
290
|
def credentials; end
|
276
291
|
|
277
292
|
# Sets the attribute credentials
|
@@ -289,38 +304,26 @@ class Rails::Application < ::Rails::Engine
|
|
289
304
|
|
290
305
|
# Eager loads the application code.
|
291
306
|
#
|
292
|
-
# source://railties//lib/rails/application.rb#
|
307
|
+
# source://railties//lib/rails/application.rb#492
|
293
308
|
def eager_load!; end
|
294
309
|
|
295
|
-
#
|
296
|
-
#
|
297
|
-
#
|
298
|
-
# the file with the master key.
|
299
|
-
# The master key is either stored in +config/master.key+ or <tt>ENV["RAILS_MASTER_KEY"]</tt>.
|
300
|
-
#
|
301
|
-
# Rails.application.encrypted("config/mystery_man.txt.enc").read
|
302
|
-
# # => "We've met before, haven't we?"
|
303
|
-
#
|
304
|
-
# It's also possible to interpret encrypted YAML files with +config+.
|
310
|
+
# Returns an ActiveSupport::EncryptedConfiguration instance for an encrypted
|
311
|
+
# file. By default, the encryption key is taken from either
|
312
|
+
# <tt>ENV["RAILS_MASTER_KEY"]</tt>, or from the +config/master.key+ file.
|
305
313
|
#
|
306
|
-
# Rails.application.encrypted("config/
|
307
|
-
# # => { next_guys_line: "I don't think so. Where was it you think we met?" }
|
314
|
+
# my_config = Rails.application.encrypted("config/my_config.enc")
|
308
315
|
#
|
309
|
-
#
|
316
|
+
# my_config.read
|
317
|
+
# # => "foo:\n bar: 123\n"
|
310
318
|
#
|
311
|
-
#
|
312
|
-
# # =>
|
319
|
+
# my_config.foo.bar
|
320
|
+
# # => 123
|
313
321
|
#
|
314
|
-
#
|
315
|
-
#
|
322
|
+
# Encrypted files can be edited with the <tt>bin/rails encrypted:edit</tt>
|
323
|
+
# command. (See the output of <tt>bin/rails encrypted:edit --help</tt> for
|
324
|
+
# more information.)
|
316
325
|
#
|
317
|
-
#
|
318
|
-
#
|
319
|
-
# Or to decrypt with a file, that should be version control ignored, relative to +Rails.root+:
|
320
|
-
#
|
321
|
-
# Rails.application.encrypted("config/special_tokens.yml.enc", key_path: "config/special_tokens.key")
|
322
|
-
#
|
323
|
-
# source://railties//lib/rails/application.rb#463
|
326
|
+
# source://railties//lib/rails/application.rb#458
|
324
327
|
def encrypted(path, key_path: T.unsafe(nil), env_key: T.unsafe(nil)); end
|
325
328
|
|
326
329
|
# Stores some of the Rails initial environment parameters which
|
@@ -340,7 +343,7 @@ class Rails::Application < ::Rails::Engine
|
|
340
343
|
# source://railties//lib/rails/application.rb#309
|
341
344
|
def generators(&blk); end
|
342
345
|
|
343
|
-
# source://railties//lib/rails/application.rb#
|
346
|
+
# source://railties//lib/rails/application.rb#471
|
344
347
|
def helpers_paths; end
|
345
348
|
|
346
349
|
# Initialize the application passing the given group. By default, the
|
@@ -405,7 +408,7 @@ class Rails::Application < ::Rails::Engine
|
|
405
408
|
# copying migrations from railties ; we need them in the order given by
|
406
409
|
# +railties_order+.
|
407
410
|
#
|
408
|
-
# source://railties//lib/rails/application.rb#
|
411
|
+
# source://railties//lib/rails/application.rb#487
|
409
412
|
def migration_railties; end
|
410
413
|
|
411
414
|
# If you try to define a set of Rake tasks on the instance, these will get
|
@@ -491,7 +494,7 @@ class Rails::Application < ::Rails::Engine
|
|
491
494
|
# source://railties//lib/rails/application.rb#315
|
492
495
|
def server(&blk); end
|
493
496
|
|
494
|
-
# source://railties//lib/rails/application.rb#
|
497
|
+
# source://railties//lib/rails/application.rb#467
|
495
498
|
def to_app; end
|
496
499
|
|
497
500
|
# Returns an array of file paths appended with a hash of
|
@@ -503,47 +506,47 @@ class Rails::Application < ::Rails::Engine
|
|
503
506
|
|
504
507
|
protected
|
505
508
|
|
506
|
-
# source://railties//lib/rails/application.rb#
|
509
|
+
# source://railties//lib/rails/application.rb#565
|
507
510
|
def default_middleware_stack; end
|
508
511
|
|
509
512
|
# Returns the ordered railties for this application considering railties_order.
|
510
513
|
#
|
511
|
-
# source://railties//lib/rails/application.rb#
|
514
|
+
# source://railties//lib/rails/application.rb#531
|
512
515
|
def ordered_railties; end
|
513
516
|
|
514
|
-
# source://railties//lib/rails/application.rb#
|
517
|
+
# source://railties//lib/rails/application.rb#553
|
515
518
|
def railties_initializers(current); end
|
516
519
|
|
517
|
-
# source://railties//lib/rails/application.rb#
|
520
|
+
# source://railties//lib/rails/application.rb#520
|
518
521
|
def run_console_blocks(app); end
|
519
522
|
|
520
|
-
# source://railties//lib/rails/application.rb#
|
523
|
+
# source://railties//lib/rails/application.rb#510
|
521
524
|
def run_generators_blocks(app); end
|
522
525
|
|
523
|
-
# source://railties//lib/rails/application.rb#
|
526
|
+
# source://railties//lib/rails/application.rb#515
|
524
527
|
def run_runner_blocks(app); end
|
525
528
|
|
526
|
-
# source://railties//lib/rails/application.rb#
|
529
|
+
# source://railties//lib/rails/application.rb#525
|
527
530
|
def run_server_blocks(app); end
|
528
531
|
|
529
|
-
# source://railties//lib/rails/application.rb#
|
532
|
+
# source://railties//lib/rails/application.rb#499
|
530
533
|
def run_tasks_blocks(app); end
|
531
534
|
|
532
|
-
# source://railties//lib/rails/application.rb#
|
535
|
+
# source://railties//lib/rails/application.rb#570
|
533
536
|
def validate_secret_key_base(secret_key_base); end
|
534
537
|
|
535
538
|
private
|
536
539
|
|
537
|
-
# source://railties//lib/rails/application.rb#
|
540
|
+
# source://railties//lib/rails/application.rb#604
|
538
541
|
def build_middleware; end
|
539
542
|
|
540
|
-
# source://railties//lib/rails/application.rb#
|
543
|
+
# source://railties//lib/rails/application.rb#597
|
541
544
|
def build_request(env); end
|
542
545
|
|
543
|
-
# source://railties//lib/rails/application.rb#
|
546
|
+
# source://railties//lib/rails/application.rb#608
|
544
547
|
def coerce_same_site_protection(protection); end
|
545
548
|
|
546
|
-
# source://railties//lib/rails/application.rb#
|
549
|
+
# source://railties//lib/rails/application.rb#581
|
547
550
|
def generate_development_secret; end
|
548
551
|
|
549
552
|
class << self
|
@@ -619,7 +622,7 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
619
622
|
# source://railties//lib/rails/application/configuration.rb#13
|
620
623
|
def allow_concurrency=(_arg0); end
|
621
624
|
|
622
|
-
# source://railties//lib/rails/application/configuration.rb#
|
625
|
+
# source://railties//lib/rails/application/configuration.rb#414
|
623
626
|
def annotations; end
|
624
627
|
|
625
628
|
# Returns the value of attribute api_only.
|
@@ -627,7 +630,7 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
627
630
|
# source://railties//lib/rails/application/configuration.rb#26
|
628
631
|
def api_only; end
|
629
632
|
|
630
|
-
# source://railties//lib/rails/application/configuration.rb#
|
633
|
+
# source://railties//lib/rails/application/configuration.rb#275
|
631
634
|
def api_only=(value); end
|
632
635
|
|
633
636
|
# Returns the value of attribute asset_host.
|
@@ -690,10 +693,10 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
690
693
|
# source://railties//lib/rails/application/configuration.rb#13
|
691
694
|
def cache_store=(_arg0); end
|
692
695
|
|
693
|
-
# source://railties//lib/rails/application/configuration.rb#
|
696
|
+
# source://railties//lib/rails/application/configuration.rb#360
|
694
697
|
def colorize_logging; end
|
695
698
|
|
696
|
-
# source://railties//lib/rails/application/configuration.rb#
|
699
|
+
# source://railties//lib/rails/application/configuration.rb#364
|
697
700
|
def colorize_logging=(val); end
|
698
701
|
|
699
702
|
# Returns the value of attribute consider_all_requests_local.
|
@@ -722,7 +725,7 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
722
725
|
|
723
726
|
# Configures the ActionDispatch::ContentSecurityPolicy.
|
724
727
|
#
|
725
|
-
# source://railties//lib/rails/application/configuration.rb#
|
728
|
+
# source://railties//lib/rails/application/configuration.rb#419
|
726
729
|
def content_security_policy(&block); end
|
727
730
|
|
728
731
|
# Returns the value of attribute content_security_policy_nonce_directives.
|
@@ -776,20 +779,20 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
776
779
|
# Loads and returns the entire raw configuration of database from
|
777
780
|
# values stored in <tt>config/database.yml</tt>.
|
778
781
|
#
|
779
|
-
# source://railties//lib/rails/application/configuration.rb#
|
782
|
+
# source://railties//lib/rails/application/configuration.rb#329
|
780
783
|
def database_configuration; end
|
781
784
|
|
782
|
-
# source://railties//lib/rails/application/configuration.rb#
|
785
|
+
# source://railties//lib/rails/application/configuration.rb#282
|
783
786
|
def debug_exception_response_format; end
|
784
787
|
|
785
788
|
# Sets the attribute debug_exception_response_format
|
786
789
|
#
|
787
790
|
# @param value the value to set the attribute debug_exception_response_format to.
|
788
791
|
#
|
789
|
-
# source://railties//lib/rails/application/configuration.rb#
|
792
|
+
# source://railties//lib/rails/application/configuration.rb#286
|
790
793
|
def debug_exception_response_format=(_arg0); end
|
791
794
|
|
792
|
-
# source://railties//lib/rails/application/configuration.rb#
|
795
|
+
# source://railties//lib/rails/application/configuration.rb#436
|
793
796
|
def default_log_file; end
|
794
797
|
|
795
798
|
# Returns the value of attribute disable_sandbox.
|
@@ -833,7 +836,7 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
833
836
|
# source://railties//lib/rails/application/configuration.rb#26
|
834
837
|
def encoding; end
|
835
838
|
|
836
|
-
# source://railties//lib/rails/application/configuration.rb#
|
839
|
+
# source://railties//lib/rails/application/configuration.rb#267
|
837
840
|
def encoding=(value); end
|
838
841
|
|
839
842
|
# Returns the value of attribute exceptions_app.
|
@@ -940,7 +943,7 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
940
943
|
# This uses a DummyERB custom compiler so YAML can ignore the ERB
|
941
944
|
# tags and load the database.yml for the rake tasks.
|
942
945
|
#
|
943
|
-
# source://railties//lib/rails/application/configuration.rb#
|
946
|
+
# source://railties//lib/rails/application/configuration.rb#311
|
944
947
|
def load_database_yaml; end
|
945
948
|
|
946
949
|
# Loads default configuration values for a target version. This includes
|
@@ -1004,12 +1007,12 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
1004
1007
|
# source://railties//lib/rails/application/configuration.rb#13
|
1005
1008
|
def logger=(_arg0); end
|
1006
1009
|
|
1007
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1010
|
+
# source://railties//lib/rails/application/configuration.rb#288
|
1008
1011
|
def paths; end
|
1009
1012
|
|
1010
1013
|
# Configures the ActionDispatch::PermissionsPolicy.
|
1011
1014
|
#
|
1012
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1015
|
+
# source://railties//lib/rails/application/configuration.rb#428
|
1013
1016
|
def permissions_policy(&block); end
|
1014
1017
|
|
1015
1018
|
# Returns the value of attribute public_file_server.
|
@@ -1147,12 +1150,12 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
1147
1150
|
# # use ActionDispatch::Session::MyCustomStore as the session store
|
1148
1151
|
# config.session_store :my_custom_store
|
1149
1152
|
#
|
1150
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1153
|
+
# source://railties//lib/rails/application/configuration.rb#383
|
1151
1154
|
def session_store(new_session_store = T.unsafe(nil), **options); end
|
1152
1155
|
|
1153
1156
|
# @return [Boolean]
|
1154
1157
|
#
|
1155
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1158
|
+
# source://railties//lib/rails/application/configuration.rb#410
|
1156
1159
|
def session_store?; end
|
1157
1160
|
|
1158
1161
|
# Returns the value of attribute ssl_options.
|
@@ -1195,31 +1198,31 @@ class Rails::Application::Configuration < ::Rails::Engine::Configuration
|
|
1195
1198
|
|
1196
1199
|
# @return [Boolean]
|
1197
1200
|
#
|
1198
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1201
|
+
# source://railties//lib/rails/application/configuration.rb#485
|
1199
1202
|
def credentials_available_for_current_env?; end
|
1200
1203
|
|
1201
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1204
|
+
# source://railties//lib/rails/application/configuration.rb#469
|
1202
1205
|
def default_credentials_content_path; end
|
1203
1206
|
|
1204
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1207
|
+
# source://railties//lib/rails/application/configuration.rb#477
|
1205
1208
|
def default_credentials_key_path; end
|
1206
1209
|
end
|
1207
1210
|
|
1208
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1211
|
+
# source://railties//lib/rails/application/configuration.rb#448
|
1209
1212
|
class Rails::Application::Configuration::Custom
|
1210
1213
|
# @return [Custom] a new instance of Custom
|
1211
1214
|
#
|
1212
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1215
|
+
# source://railties//lib/rails/application/configuration.rb#449
|
1213
1216
|
def initialize; end
|
1214
1217
|
|
1215
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1218
|
+
# source://railties//lib/rails/application/configuration.rb#453
|
1216
1219
|
def method_missing(method, *args); end
|
1217
1220
|
|
1218
1221
|
private
|
1219
1222
|
|
1220
1223
|
# @return [Boolean]
|
1221
1224
|
#
|
1222
|
-
# source://railties//lib/rails/application/configuration.rb#
|
1225
|
+
# source://railties//lib/rails/application/configuration.rb#463
|
1223
1226
|
def respond_to_missing?(symbol, *_arg1); end
|
1224
1227
|
end
|
1225
1228
|
|
@@ -1250,10 +1253,10 @@ class Rails::Application::DefaultMiddlewareStack
|
|
1250
1253
|
|
1251
1254
|
private
|
1252
1255
|
|
1253
|
-
# source://railties//lib/rails/application/default_middleware_stack.rb#
|
1256
|
+
# source://railties//lib/rails/application/default_middleware_stack.rb#103
|
1254
1257
|
def load_rack_cache; end
|
1255
1258
|
|
1256
|
-
# source://railties//lib/rails/application/default_middleware_stack.rb#
|
1259
|
+
# source://railties//lib/rails/application/default_middleware_stack.rb#125
|
1257
1260
|
def show_exceptions_app; end
|
1258
1261
|
end
|
1259
1262
|
|
@@ -1275,11 +1278,11 @@ module Rails::Application::Finisher::InterlockHook
|
|
1275
1278
|
end
|
1276
1279
|
|
1277
1280
|
# source://railties//lib/rails/application/finisher.rb#90
|
1278
|
-
class Rails::Application::Finisher::
|
1279
|
-
# @return [
|
1281
|
+
class Rails::Application::Finisher::MonitorHook
|
1282
|
+
# @return [MonitorHook] a new instance of MonitorHook
|
1280
1283
|
#
|
1281
1284
|
# source://railties//lib/rails/application/finisher.rb#91
|
1282
|
-
def initialize(
|
1285
|
+
def initialize(monitor = T.unsafe(nil)); end
|
1283
1286
|
|
1284
1287
|
# source://railties//lib/rails/application/finisher.rb#99
|
1285
1288
|
def complete(_state); end
|
@@ -1302,10 +1305,10 @@ class Rails::Application::RoutesReloader
|
|
1302
1305
|
# source://railties//lib/rails/application/routes_reloader.rb#15
|
1303
1306
|
def initialize; end
|
1304
1307
|
|
1305
|
-
# source://activesupport/7.0.
|
1308
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
1306
1309
|
def __callbacks; end
|
1307
1310
|
|
1308
|
-
# source://activesupport/7.0.
|
1311
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
1309
1312
|
def __callbacks?; end
|
1310
1313
|
|
1311
1314
|
# Returns the value of attribute eager_load.
|
@@ -1371,13 +1374,13 @@ class Rails::Application::RoutesReloader
|
|
1371
1374
|
def updater; end
|
1372
1375
|
|
1373
1376
|
class << self
|
1374
|
-
# source://activesupport/7.0.
|
1377
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
1375
1378
|
def __callbacks; end
|
1376
1379
|
|
1377
|
-
# source://activesupport/7.0.
|
1380
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
1378
1381
|
def __callbacks=(value); end
|
1379
1382
|
|
1380
|
-
# source://activesupport/7.0.
|
1383
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
1381
1384
|
def __callbacks?; end
|
1382
1385
|
end
|
1383
1386
|
end
|
@@ -1386,7 +1389,7 @@ end
|
|
1386
1389
|
class Rails::ApplicationController < ::ActionController::Base
|
1387
1390
|
private
|
1388
1391
|
|
1389
|
-
# source://actionview/7.0.
|
1392
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#328
|
1390
1393
|
def _layout(lookup_context, formats); end
|
1391
1394
|
|
1392
1395
|
# source://railties//lib/rails/application_controller.rb#25
|
@@ -1401,16 +1404,16 @@ class Rails::ApplicationController < ::ActionController::Base
|
|
1401
1404
|
def require_local!; end
|
1402
1405
|
|
1403
1406
|
class << self
|
1404
|
-
# source://activesupport/7.0.
|
1407
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
1405
1408
|
def __callbacks; end
|
1406
1409
|
|
1407
|
-
# source://actionview/7.0.
|
1410
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#209
|
1408
1411
|
def _layout; end
|
1409
1412
|
|
1410
|
-
# source://actionview/7.0.
|
1413
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#210
|
1411
1414
|
def _layout_conditions; end
|
1412
1415
|
|
1413
|
-
# source://actionpack/7.0.
|
1416
|
+
# source://actionpack/7.0.8.7/lib/action_controller/metal.rb#210
|
1414
1417
|
def middleware_stack; end
|
1415
1418
|
end
|
1416
1419
|
end
|
@@ -2009,16 +2012,16 @@ class Rails::Engine < ::Rails::Railtie
|
|
2009
2012
|
# source://railties//lib/rails/engine.rb#432
|
2010
2013
|
def initialize; end
|
2011
2014
|
|
2012
|
-
# source://activesupport/7.0.
|
2015
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2013
2016
|
def __callbacks; end
|
2014
2017
|
|
2015
|
-
# source://activesupport/7.0.
|
2018
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2016
2019
|
def __callbacks?; end
|
2017
2020
|
|
2018
|
-
# source://activesupport/7.0.
|
2021
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#940
|
2019
2022
|
def _load_seed_callbacks; end
|
2020
2023
|
|
2021
|
-
# source://activesupport/7.0.
|
2024
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#928
|
2022
2025
|
def _run_load_seed_callbacks(&block); end
|
2023
2026
|
|
2024
2027
|
# Returns the underlying Rack application for this engine.
|
@@ -2161,19 +2164,19 @@ class Rails::Engine < ::Rails::Railtie
|
|
2161
2164
|
def load_config_initializer(initializer); end
|
2162
2165
|
|
2163
2166
|
class << self
|
2164
|
-
# source://activesupport/7.0.
|
2167
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2165
2168
|
def __callbacks; end
|
2166
2169
|
|
2167
|
-
# source://activesupport/7.0.
|
2170
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2168
2171
|
def __callbacks=(value); end
|
2169
2172
|
|
2170
|
-
# source://activesupport/7.0.
|
2173
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2171
2174
|
def __callbacks?; end
|
2172
2175
|
|
2173
|
-
# source://activesupport/7.0.
|
2176
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#932
|
2174
2177
|
def _load_seed_callbacks; end
|
2175
2178
|
|
2176
|
-
# source://activesupport/7.0.
|
2179
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#936
|
2177
2180
|
def _load_seed_callbacks=(value); end
|
2178
2181
|
|
2179
2182
|
# Returns the value of attribute called_from.
|
@@ -2392,7 +2395,7 @@ class Rails::InfoController < ::Rails::ApplicationController
|
|
2392
2395
|
|
2393
2396
|
private
|
2394
2397
|
|
2395
|
-
# source://actionview/7.0.
|
2398
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#328
|
2396
2399
|
def _layout(lookup_context, formats); end
|
2397
2400
|
|
2398
2401
|
# source://railties//lib/rails/info_controller.rb#8
|
@@ -2405,16 +2408,16 @@ class Rails::InfoController < ::Rails::ApplicationController
|
|
2405
2408
|
def with_leading_slash(path); end
|
2406
2409
|
|
2407
2410
|
class << self
|
2408
|
-
# source://activesupport/7.0.
|
2411
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2409
2412
|
def __callbacks; end
|
2410
2413
|
|
2411
|
-
# source://actionview/7.0.
|
2414
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#209
|
2412
2415
|
def _layout; end
|
2413
2416
|
|
2414
|
-
# source://actionview/7.0.
|
2417
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#210
|
2415
2418
|
def _layout_conditions; end
|
2416
2419
|
|
2417
|
-
# source://actionpack/7.0.
|
2420
|
+
# source://actionpack/7.0.8.7/lib/action_controller/metal.rb#210
|
2418
2421
|
def middleware_stack; end
|
2419
2422
|
end
|
2420
2423
|
end
|
@@ -2519,7 +2522,7 @@ class Rails::MailersController < ::Rails::ApplicationController
|
|
2519
2522
|
|
2520
2523
|
private
|
2521
2524
|
|
2522
|
-
# source://actionview/7.0.
|
2525
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#328
|
2523
2526
|
def _layout(lookup_context, formats); end
|
2524
2527
|
|
2525
2528
|
# source://railties//lib/rails/mailers_controller.rb#80
|
@@ -2546,13 +2549,13 @@ class Rails::MailersController < ::Rails::ApplicationController
|
|
2546
2549
|
def show_previews?; end
|
2547
2550
|
|
2548
2551
|
class << self
|
2549
|
-
# source://activesupport/7.0.
|
2552
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
2550
2553
|
def __callbacks; end
|
2551
2554
|
|
2552
|
-
# source://actionpack/7.0.
|
2555
|
+
# source://actionpack/7.0.8.7/lib/abstract_controller/helpers.rb#11
|
2553
2556
|
def _helper_methods; end
|
2554
2557
|
|
2555
|
-
# source://actionpack/7.0.
|
2558
|
+
# source://actionpack/7.0.8.7/lib/action_controller/metal.rb#210
|
2556
2559
|
def middleware_stack; end
|
2557
2560
|
end
|
2558
2561
|
end
|
@@ -2966,40 +2969,43 @@ class Rails::Railtie
|
|
2966
2969
|
# Railtie::Configuration, that is used by Railties and Application to store
|
2967
2970
|
# related configuration.
|
2968
2971
|
#
|
2969
|
-
# source://railties//lib/rails/railtie.rb#
|
2972
|
+
# source://railties//lib/rails/railtie.rb#263
|
2970
2973
|
def config; end
|
2971
2974
|
|
2972
|
-
# source://railties//lib/rails/railtie.rb#
|
2975
|
+
# source://railties//lib/rails/railtie.rb#256
|
2973
2976
|
def configure(&block); end
|
2974
2977
|
|
2978
|
+
# source://railties//lib/rails/railtie.rb#252
|
2979
|
+
def inspect; end
|
2980
|
+
|
2975
2981
|
# source://railties//lib/rails/railtie.rb#244
|
2976
2982
|
def railtie_name(*_arg0, **_arg1, &_arg2); end
|
2977
2983
|
|
2978
|
-
# source://railties//lib/rails/railtie.rb#
|
2984
|
+
# source://railties//lib/rails/railtie.rb#267
|
2979
2985
|
def railtie_namespace; end
|
2980
2986
|
|
2981
2987
|
protected
|
2982
2988
|
|
2983
|
-
# source://railties//lib/rails/railtie.rb#
|
2989
|
+
# source://railties//lib/rails/railtie.rb#272
|
2984
2990
|
def run_console_blocks(app); end
|
2985
2991
|
|
2986
|
-
# source://railties//lib/rails/railtie.rb#
|
2992
|
+
# source://railties//lib/rails/railtie.rb#276
|
2987
2993
|
def run_generators_blocks(app); end
|
2988
2994
|
|
2989
|
-
# source://railties//lib/rails/railtie.rb#
|
2995
|
+
# source://railties//lib/rails/railtie.rb#280
|
2990
2996
|
def run_runner_blocks(app); end
|
2991
2997
|
|
2992
|
-
# source://railties//lib/rails/railtie.rb#
|
2998
|
+
# source://railties//lib/rails/railtie.rb#289
|
2993
2999
|
def run_server_blocks(app); end
|
2994
3000
|
|
2995
|
-
# source://railties//lib/rails/railtie.rb#
|
3001
|
+
# source://railties//lib/rails/railtie.rb#284
|
2996
3002
|
def run_tasks_blocks(app); end
|
2997
3003
|
|
2998
3004
|
private
|
2999
3005
|
|
3000
3006
|
# run `&block` in every registered block in `#register_block_for`
|
3001
3007
|
#
|
3002
|
-
# source://railties//lib/rails/railtie.rb#
|
3008
|
+
# source://railties//lib/rails/railtie.rb#295
|
3003
3009
|
def each_registered_block(type, &block); end
|
3004
3010
|
|
3005
3011
|
class << self
|
@@ -3188,69 +3194,69 @@ end
|
|
3188
3194
|
|
3189
3195
|
# Greatly inspired by Ara T. Howard's magnificent sekrets gem. 😘
|
3190
3196
|
#
|
3191
|
-
# source://railties//lib/rails/secrets.rb#
|
3197
|
+
# source://railties//lib/rails/secrets.rb#9
|
3192
3198
|
class Rails::Secrets
|
3193
3199
|
class << self
|
3194
|
-
# source://railties//lib/rails/secrets.rb#
|
3200
|
+
# source://railties//lib/rails/secrets.rb#46
|
3195
3201
|
def decrypt(data); end
|
3196
3202
|
|
3197
|
-
# source://railties//lib/rails/secrets.rb#
|
3203
|
+
# source://railties//lib/rails/secrets.rb#42
|
3198
3204
|
def encrypt(data); end
|
3199
3205
|
|
3200
|
-
# source://railties//lib/rails/secrets.rb#
|
3206
|
+
# source://railties//lib/rails/secrets.rb#38
|
3201
3207
|
def key; end
|
3202
3208
|
|
3203
|
-
# source://railties//lib/rails/secrets.rb#
|
3209
|
+
# source://railties//lib/rails/secrets.rb#25
|
3204
3210
|
def parse(paths, env:); end
|
3205
3211
|
|
3206
|
-
# source://railties//lib/rails/secrets.rb#
|
3212
|
+
# source://railties//lib/rails/secrets.rb#50
|
3207
3213
|
def read; end
|
3208
3214
|
|
3209
|
-
# source://railties//lib/rails/secrets.rb#
|
3215
|
+
# source://railties//lib/rails/secrets.rb#59
|
3210
3216
|
def read_for_editing(&block); end
|
3211
3217
|
|
3212
3218
|
# Sets the attribute root
|
3213
3219
|
#
|
3214
3220
|
# @param value the value to set the attribute root to.
|
3215
3221
|
#
|
3216
|
-
# source://railties//lib/rails/secrets.rb#
|
3222
|
+
# source://railties//lib/rails/secrets.rb#23
|
3217
3223
|
def root=(_arg0); end
|
3218
3224
|
|
3219
|
-
# source://railties//lib/rails/secrets.rb#
|
3225
|
+
# source://railties//lib/rails/secrets.rb#54
|
3220
3226
|
def write(contents); end
|
3221
3227
|
|
3222
3228
|
private
|
3223
3229
|
|
3224
|
-
# source://railties//lib/rails/secrets.rb#
|
3230
|
+
# source://railties//lib/rails/secrets.rb#105
|
3225
3231
|
def encryptor; end
|
3226
3232
|
|
3227
3233
|
# @raise [MissingKeyError]
|
3228
3234
|
#
|
3229
|
-
# source://railties//lib/rails/secrets.rb#
|
3235
|
+
# source://railties//lib/rails/secrets.rb#64
|
3230
3236
|
def handle_missing_key; end
|
3231
3237
|
|
3232
|
-
# source://railties//lib/rails/secrets.rb#
|
3238
|
+
# source://railties//lib/rails/secrets.rb#74
|
3233
3239
|
def key_path; end
|
3234
3240
|
|
3235
|
-
# source://railties//lib/rails/secrets.rb#
|
3241
|
+
# source://railties//lib/rails/secrets.rb#78
|
3236
3242
|
def path; end
|
3237
3243
|
|
3238
|
-
# source://railties//lib/rails/secrets.rb#
|
3244
|
+
# source://railties//lib/rails/secrets.rb#82
|
3239
3245
|
def preprocess(path); end
|
3240
3246
|
|
3241
|
-
# source://railties//lib/rails/secrets.rb#
|
3247
|
+
# source://railties//lib/rails/secrets.rb#68
|
3242
3248
|
def read_key_file; end
|
3243
3249
|
|
3244
|
-
# source://railties//lib/rails/secrets.rb#
|
3250
|
+
# source://railties//lib/rails/secrets.rb#90
|
3245
3251
|
def writing(contents); end
|
3246
3252
|
end
|
3247
3253
|
end
|
3248
3254
|
|
3249
|
-
# source://railties//lib/rails/secrets.rb#
|
3255
|
+
# source://railties//lib/rails/secrets.rb#10
|
3250
3256
|
class Rails::Secrets::MissingKeyError < ::RuntimeError
|
3251
3257
|
# @return [MissingKeyError] a new instance of MissingKeyError
|
3252
3258
|
#
|
3253
|
-
# source://railties//lib/rails/secrets.rb#
|
3259
|
+
# source://railties//lib/rails/secrets.rb#11
|
3254
3260
|
def initialize; end
|
3255
3261
|
end
|
3256
3262
|
|
@@ -3492,20 +3498,20 @@ class Rails::WelcomeController < ::Rails::ApplicationController
|
|
3492
3498
|
|
3493
3499
|
private
|
3494
3500
|
|
3495
|
-
# source://actionview/7.0.
|
3501
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#328
|
3496
3502
|
def _layout(lookup_context, formats); end
|
3497
3503
|
|
3498
3504
|
class << self
|
3499
|
-
# source://activesupport/7.0.
|
3505
|
+
# source://activesupport/7.0.8.7/lib/active_support/callbacks.rb#68
|
3500
3506
|
def __callbacks; end
|
3501
3507
|
|
3502
|
-
# source://actionview/7.0.
|
3508
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#209
|
3503
3509
|
def _layout; end
|
3504
3510
|
|
3505
|
-
# source://actionview/7.0.
|
3511
|
+
# source://actionview/7.0.8.7/lib/action_view/layouts.rb#210
|
3506
3512
|
def _layout_conditions; end
|
3507
3513
|
|
3508
|
-
# source://actionpack/7.0.
|
3514
|
+
# source://actionpack/7.0.8.7/lib/action_controller/metal.rb#210
|
3509
3515
|
def middleware_stack; end
|
3510
3516
|
end
|
3511
3517
|
end
|