-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextra.rbi
More file actions
3888 lines (2351 loc) · 75.7 KB
/
extra.rbi
File metadata and controls
3888 lines (2351 loc) · 75.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module ActiveSupport
def parse_json_times(); end
def parse_json_times=(val); end
def test_order(); end
def test_order=(val); end
def test_parallelization_threshold(); end
def test_parallelization_threshold=(val); end
end
module ActiveSupport::ActionableError
end
module ActiveSupport::ActionableError::ClassMethods
def action(name, &block); end
end
module ActiveSupport::ActionableError::ClassMethods
end
class ActiveSupport::ActionableError::NonActionable
end
class ActiveSupport::ActionableError::NonActionable
end
module ActiveSupport::ActionableError
extend ::ActiveSupport::Concern
def self.actions(error); end
def self.dispatch(error, name); end
end
class ActiveSupport::ArrayInquirer
def any?(*candidates); end
end
class ActiveSupport::ArrayInquirer
end
module ActiveSupport::Autoload
def autoload(const_name, path=T.unsafe(nil)); end
def autoload_at(path); end
def autoload_under(path); end
def eager_autoload(); end
def eager_load!(); end
end
module ActiveSupport::Autoload
end
class ActiveSupport::BacktraceCleaner
def add_filter(&block); end
def add_silencer(&block); end
def clean(backtrace, kind=T.unsafe(nil)); end
def clean_frame(frame, kind=T.unsafe(nil)); end
def filter(backtrace, kind=T.unsafe(nil)); end
def remove_filters!(); end
def remove_silencers!(); end
FORMATTED_GEMS_PATTERN = ::T.let(nil, ::T.untyped)
end
class ActiveSupport::BacktraceCleaner
end
module ActiveSupport::Benchmark
end
module ActiveSupport::Benchmark
def self.realtime(unit=T.unsafe(nil), &block); end
end
module ActiveSupport::Benchmarkable
def benchmark(message=T.unsafe(nil), options=T.unsafe(nil), &block); end
end
module ActiveSupport::Benchmarkable
end
module ActiveSupport::BigDecimalWithDefaultFormat
def to_s(format=T.unsafe(nil)); end
end
module ActiveSupport::BigDecimalWithDefaultFormat
end
class ActiveSupport::BroadcastLogger
include ::ActiveSupport::LoggerSilence
include ::ActiveSupport::LoggerThreadSafeLevel
def <<(message); end
def add(*arg, **arg1, &arg2); end
def broadcast_to(*loggers); end
def broadcasts(); end
def close(); end
def debug(*arg, **arg1, &arg2); end
def debug!(); end
def debug?(); end
def error(*arg, **arg1, &arg2); end
def error!(); end
def error?(); end
def fatal(*arg, **arg1, &arg2); end
def fatal!(); end
def fatal?(); end
def formatter(); end
def formatter=(formatter); end
def info(*arg, **arg1, &arg2); end
def info!(); end
def info?(); end
def initialize(*loggers); end
def level=(level); end
def log(*arg, **arg1, &arg2); end
def progname(); end
def progname=(progname); end
def sev_threshold=(level); end
def silencer(); end
def silencer=(val); end
def stop_broadcasting_to(logger); end
def unknown(*arg, **arg1, &arg2); end
def warn(*arg, **arg1, &arg2); end
def warn!(); end
def warn?(); end
end
class ActiveSupport::BroadcastLogger
def self.silencer(); end
def self.silencer=(val); end
end
module ActiveSupport::Cache
DEFAULT_COMPRESS_LIMIT = ::T.let(nil, ::T.untyped)
OPTION_ALIASES = ::T.let(nil, ::T.untyped)
UNIVERSAL_OPTIONS = ::T.let(nil, ::T.untyped)
end
class ActiveSupport::Cache::Coder
def dump(entry); end
def dump_compressed(entry, threshold); end
def initialize(serializer, compressor, legacy_serializer: T.unsafe(nil)); end
def load(dumped); end
COMPRESSED_FLAG = ::T.let(nil, ::T.untyped)
MARSHAL_SIGNATURE = ::T.let(nil, ::T.untyped)
OBJECT_DUMP_TYPE = ::T.let(nil, ::T.untyped)
PACKED_EXPIRES_AT_TEMPLATE = ::T.let(nil, ::T.untyped)
PACKED_TEMPLATE = ::T.let(nil, ::T.untyped)
PACKED_TYPE_TEMPLATE = ::T.let(nil, ::T.untyped)
PACKED_VERSION_INDEX = ::T.let(nil, ::T.untyped)
PACKED_VERSION_LENGTH_TEMPLATE = ::T.let(nil, ::T.untyped)
SIGNATURE = ::T.let(nil, ::T.untyped)
STRING_DESERIALIZERS = ::T.let(nil, ::T.untyped)
STRING_ENCODINGS = ::T.let(nil, ::T.untyped)
end
class ActiveSupport::Cache::Coder::LazyEntry
def initialize(serializer, compressor, payload, **options); end
end
class ActiveSupport::Cache::Coder::LazyEntry
end
class ActiveSupport::Cache::Coder::StringDeserializer
def initialize(encoding); end
def load(payload); end
end
class ActiveSupport::Cache::Coder::StringDeserializer
end
class ActiveSupport::Cache::Coder
end
class ActiveSupport::Cache::DeserializationError
end
class ActiveSupport::Cache::DeserializationError
end
class ActiveSupport::Cache::Entry
def bytesize(); end
def compressed(compress_threshold); end
def compressed?(); end
def dup_value!(); end
def expired?(); end
def expires_at(); end
def expires_at=(value); end
def initialize(value, compressed: T.unsafe(nil), version: T.unsafe(nil), expires_in: T.unsafe(nil), expires_at: T.unsafe(nil), **arg); end
def local?(); end
def mismatched?(version); end
def pack(); end
def value(); end
def version(); end
end
class ActiveSupport::Cache::Entry
def self.unpack(members); end
end
class ActiveSupport::Cache::FileStore
def cache_path(); end
def decrement(name, amount=T.unsafe(nil), **options); end
def increment(name, amount=T.unsafe(nil), **options); end
def initialize(cache_path, **options); end
DIR_FORMATTER = ::T.let(nil, ::T.untyped)
FILENAME_MAX_SIZE = ::T.let(nil, ::T.untyped)
FILEPATH_MAX_SIZE = ::T.let(nil, ::T.untyped)
GITKEEP_FILES = ::T.let(nil, ::T.untyped)
end
class ActiveSupport::Cache::FileStore
def self.supports_cache_versioning?(); end
end
class ActiveSupport::Cache::MemoryStore
def decrement(name, amount=T.unsafe(nil), **options); end
def increment(name, amount=T.unsafe(nil), **options); end
def prune(target_size, max_time=T.unsafe(nil)); end
def pruning?(); end
def synchronize(&block); end
PER_ENTRY_OVERHEAD = ::T.let(nil, ::T.untyped)
end
module ActiveSupport::Cache::MemoryStore::DupCoder
def dump(entry); end
def dump_compressed(entry, threshold); end
def load(entry); end
MARSHAL_SIGNATURE = ::T.let(nil, ::T.untyped)
end
module ActiveSupport::Cache::MemoryStore::DupCoder
extend ::ActiveSupport::Cache::MemoryStore::DupCoder
end
class ActiveSupport::Cache::MemoryStore
def self.supports_cache_versioning?(); end
end
class ActiveSupport::Cache::NullStore
include ::ActiveSupport::Cache::Strategy::LocalCache
end
class ActiveSupport::Cache::NullStore
def self.supports_cache_versioning?(); end
end
module ActiveSupport::Cache::SerializerWithFallback
def load(dumped); end
SERIALIZERS = ::T.let(nil, ::T.untyped)
end
module ActiveSupport::Cache::SerializerWithFallback::Marshal70WithFallback
include ::ActiveSupport::Cache::SerializerWithFallback
def _load(marked); end
def dump(entry); end
def dump_compressed(entry, threshold); end
def dumped?(dumped); end
MARK_COMPRESSED = ::T.let(nil, ::T.untyped)
MARK_UNCOMPRESSED = ::T.let(nil, ::T.untyped)
end
module ActiveSupport::Cache::SerializerWithFallback::Marshal70WithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback::Marshal70WithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback
end
module ActiveSupport::Cache::SerializerWithFallback::Marshal71WithFallback
include ::ActiveSupport::Cache::SerializerWithFallback
def _load(dumped); end
def dump(value); end
def dumped?(dumped); end
MARSHAL_SIGNATURE = ::T.let(nil, ::T.untyped)
end
module ActiveSupport::Cache::SerializerWithFallback::Marshal71WithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback::Marshal71WithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback
end
module ActiveSupport::Cache::SerializerWithFallback::MessagePackWithFallback
include ::ActiveSupport::Cache::SerializerWithFallback
def _load(dumped); end
def dump(value); end
def dumped?(dumped); end
end
module ActiveSupport::Cache::SerializerWithFallback::MessagePackWithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback::MessagePackWithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback
end
module ActiveSupport::Cache::SerializerWithFallback::PassthroughWithFallback
include ::ActiveSupport::Cache::SerializerWithFallback
def _load(entry); end
def dump(entry); end
def dump_compressed(entry, threshold); end
def dumped?(dumped); end
end
module ActiveSupport::Cache::SerializerWithFallback::PassthroughWithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback::PassthroughWithFallback
extend ::ActiveSupport::Cache::SerializerWithFallback
end
module ActiveSupport::Cache::SerializerWithFallback
def self.[](format); end
end
class ActiveSupport::Cache::Store
def cleanup(options=T.unsafe(nil)); end
def clear(options=T.unsafe(nil)); end
def decrement(name, amount=T.unsafe(nil), options=T.unsafe(nil)); end
def delete(name, options=T.unsafe(nil)); end
def delete_matched(matcher, options=T.unsafe(nil)); end
def delete_multi(names, options=T.unsafe(nil)); end
def exist?(name, options=T.unsafe(nil)); end
def fetch(name, options=T.unsafe(nil), &block); end
def fetch_multi(*names); end
def increment(name, amount=T.unsafe(nil), options=T.unsafe(nil)); end
def initialize(options=T.unsafe(nil)); end
def logger(); end
def logger=(val); end
def mute(); end
def new_entry(value, options=T.unsafe(nil)); end
def options(); end
def raise_on_invalid_cache_expiration_time(); end
def raise_on_invalid_cache_expiration_time=(val); end
def read(name, options=T.unsafe(nil)); end
def read_multi(*names); end
def silence(); end
def silence!(); end
def silence?(); end
def write(name, value, options=T.unsafe(nil)); end
def write_multi(hash, options=T.unsafe(nil)); end
end
class ActiveSupport::Cache::Store
def self.logger(); end
def self.logger=(val); end
def self.raise_on_invalid_cache_expiration_time(); end
def self.raise_on_invalid_cache_expiration_time=(val); end
end
module ActiveSupport::Cache::Strategy
end
module ActiveSupport::Cache::Strategy::LocalCache
def cleanup(options=T.unsafe(nil)); end
def clear(options=T.unsafe(nil)); end
def decrement(name, amount=T.unsafe(nil), **options); end
def delete_matched(matcher, options=T.unsafe(nil)); end
def fetch_multi(*names, &block); end
def increment(name, amount=T.unsafe(nil), **options); end
def middleware(); end
def with_local_cache(&block); end
end
module ActiveSupport::Cache::Strategy::LocalCache
end
module ActiveSupport::Cache::Strategy
end
class ActiveSupport::Cache::WriteOptions
def expires_at(); end
def expires_at=(expires_at); end
def expires_in(); end
def expires_in=(expires_in); end
def initialize(options); end
def version(); end
def version=(version); end
end
class ActiveSupport::Cache::WriteOptions
end
module ActiveSupport::Cache
def self.expand_cache_key(key, namespace=T.unsafe(nil)); end
def self.format_version(); end
def self.format_version=(format_version); end
def self.lookup_store(store=T.unsafe(nil), *parameters); end
end
module ActiveSupport::Callbacks
def run_callbacks(kind, type=T.unsafe(nil)); end
CALLBACK_FILTER_TYPES = ::T.let(nil, ::T.untyped)
end
module ActiveSupport::Callbacks::CallTemplate
end
class ActiveSupport::Callbacks::CallTemplate::InstanceExec0
def expand(target, value, block); end
def initialize(block); end
def inverted_lambda(); end
def make_lambda(); end
end
class ActiveSupport::Callbacks::CallTemplate::InstanceExec0
end
class ActiveSupport::Callbacks::CallTemplate::InstanceExec1
def expand(target, value, block); end
def initialize(block); end
def inverted_lambda(); end
def make_lambda(); end
end
class ActiveSupport::Callbacks::CallTemplate::InstanceExec1
end
class ActiveSupport::Callbacks::CallTemplate::InstanceExec2
def expand(target, value, block); end
def initialize(block); end
def inverted_lambda(); end
def make_lambda(); end
end
class ActiveSupport::Callbacks::CallTemplate::InstanceExec2
end
class ActiveSupport::Callbacks::CallTemplate::MethodCall
def expand(target, value, block); end
def initialize(method); end
def inverted_lambda(); end
def make_lambda(); end
end
class ActiveSupport::Callbacks::CallTemplate::MethodCall
end
class ActiveSupport::Callbacks::CallTemplate::ObjectCall
def expand(target, value, block); end
def initialize(target, method); end
def inverted_lambda(); end
def make_lambda(); end
end
class ActiveSupport::Callbacks::CallTemplate::ObjectCall
end
class ActiveSupport::Callbacks::CallTemplate::ProcCall
def expand(target, value, block); end
def initialize(target); end
def inverted_lambda(); end
def make_lambda(); end
end
class ActiveSupport::Callbacks::CallTemplate::ProcCall
end
module ActiveSupport::Callbacks::CallTemplate
def self.build(filter, callback); end
end
class ActiveSupport::Callbacks::Callback
def apply(callback_sequence); end
def chain_config(); end
def compiled(); end
def current_scopes(); end
def duplicates?(other); end
def filter(); end
def initialize(name, filter, kind, options, chain_config); end
def kind(); end
def kind=(kind); end
def matches?(_kind, _filter); end
def merge_conditional_options(chain, if_option:, unless_option:); end
def name(); end
def name=(name); end
end
class ActiveSupport::Callbacks::Callback
def self.build(chain, filter, kind, options); end
end
class ActiveSupport::Callbacks::CallbackChain
include ::Enumerable
def append(*callbacks); end
def chain(); end
def clear(); end
def compile(type); end
def config(); end
def delete(o); end
def each(&block); end
def empty?(); end
def index(o); end
def initialize(name, config); end
def insert(index, o); end
def name(); end
def prepend(*callbacks); end
end
class ActiveSupport::Callbacks::CallbackChain
end
class ActiveSupport::Callbacks::CallbackSequence
def after(after); end
def around(call_template, user_conditions); end
def before(before); end
def expand_call_template(arg, block); end
def final?(); end
def initialize(nested=T.unsafe(nil), call_template=T.unsafe(nil), user_conditions=T.unsafe(nil)); end
def invoke_after(arg); end
def invoke_before(arg); end
def nested(); end
def skip?(arg); end
end
class ActiveSupport::Callbacks::CallbackSequence
end
module ActiveSupport::Callbacks::ClassMethods
def __update_callbacks(name); end
def define_callbacks(*names); end
def get_callbacks(name); end
def normalize_callback_params(filters, block); end
def reset_callbacks(name); end
def set_callback(name, *filter_list, &block); end
def set_callbacks(name, callbacks); end
def skip_callback(name, *filter_list, &block); end
end
module ActiveSupport::Callbacks::ClassMethods
end
module ActiveSupport::Callbacks::Conditionals
end
class ActiveSupport::Callbacks::Conditionals::Value
def call(target, value); end
def initialize(&block); end
end
class ActiveSupport::Callbacks::Conditionals::Value
end
module ActiveSupport::Callbacks::Conditionals
end
module ActiveSupport::Callbacks::Filters
end
class ActiveSupport::Callbacks::Filters::After
def apply(callback_sequence); end
def call(env); end
def halting(); end
def initialize(user_callback, user_conditions, chain_config); end
def user_callback(); end
def user_conditions(); end
end
class ActiveSupport::Callbacks::Filters::After
end
class ActiveSupport::Callbacks::Filters::Around
def apply(callback_sequence); end
def initialize(user_callback, user_conditions); end
end
class ActiveSupport::Callbacks::Filters::Around
end
class ActiveSupport::Callbacks::Filters::Before
def apply(callback_sequence); end
def call(env); end
def filter(); end
def halted_lambda(); end
def initialize(user_callback, user_conditions, chain_config, filter, name); end
def name(); end
def user_callback(); end
def user_conditions(); end
end
class ActiveSupport::Callbacks::Filters::Before
end
class ActiveSupport::Callbacks::Filters::Environment
def halted(); end
def halted=(_); end
def target(); end
def target=(_); end
def value(); end
def value=(_); end
end
class ActiveSupport::Callbacks::Filters::Environment
def self.[](*arg); end
def self.keyword_init?(); end
def self.members(); end
end
module ActiveSupport::Callbacks::Filters
end
module ActiveSupport::Callbacks
extend ::ActiveSupport::Concern
end
module ActiveSupport::ClassAttribute
end
module ActiveSupport::ClassAttribute
def self.redefine(owner, name, namespaced_name, value); end
def self.redefine_method(owner, name, private: T.unsafe(nil), &block); end
end
class ActiveSupport::CodeGenerator
def class_eval(); end
def define_cached_method(canonical_name, namespace:, as: T.unsafe(nil), &block); end
def execute(); end
def initialize(owner, path, line); end
end
class ActiveSupport::CodeGenerator::MethodSet
def apply(owner, path, line); end
def define_cached_method(canonical_name, as: T.unsafe(nil)); end
def initialize(namespace); end
METHOD_CACHES = ::T.let(nil, ::T.untyped)
end
class ActiveSupport::CodeGenerator::MethodSet
end
class ActiveSupport::CodeGenerator
def self.batch(owner, path, line); end
end
module ActiveSupport::Concern
def append_features(base); end
def class_methods(&class_methods_module_definition); end
def included(base=T.unsafe(nil), &block); end
def prepend_features(base); end
def prepended(base=T.unsafe(nil), &block); end
end
class ActiveSupport::Concern::MultipleIncludedBlocks
def initialize(); end
end
class ActiveSupport::Concern::MultipleIncludedBlocks
end
class ActiveSupport::Concern::MultiplePrependBlocks
def initialize(); end
end
class ActiveSupport::Concern::MultiplePrependBlocks
end
module ActiveSupport::Concern
def self.extended(base); end
end
module ActiveSupport::Concurrency
end
class ActiveSupport::Concurrency::ShareLock
include ::MonitorMixin
def exclusive(purpose: T.unsafe(nil), compatible: T.unsafe(nil), after_compatible: T.unsafe(nil), no_wait: T.unsafe(nil)); end
def initialize(); end
def raw_state(); end
def sharing(); end
def start_exclusive(purpose: T.unsafe(nil), compatible: T.unsafe(nil), no_wait: T.unsafe(nil)); end
def start_sharing(); end
def stop_exclusive(compatible: T.unsafe(nil)); end
def stop_sharing(); end
def yield_shares(purpose: T.unsafe(nil), compatible: T.unsafe(nil), block_share: T.unsafe(nil)); end
end
class ActiveSupport::Concurrency::ShareLock
end
module ActiveSupport::Concurrency
end
module ActiveSupport::Configurable
def config(); end
end
module ActiveSupport::Configurable::ClassMethods
def config(); end
def configure(); end
end
module ActiveSupport::Configurable::ClassMethods
end
class ActiveSupport::Configurable::Configuration
def compile_methods!(); end
end
class ActiveSupport::Configurable::Configuration
def self.compile_methods!(keys); end
end
module ActiveSupport::Configurable
extend ::ActiveSupport::Concern
end
class ActiveSupport::ConfigurationFile
def initialize(content_path); end
def parse(context: T.unsafe(nil), **options); end
end
class ActiveSupport::ConfigurationFile::FormatError
end
class ActiveSupport::ConfigurationFile::FormatError
end
class ActiveSupport::ConfigurationFile
def self.parse(content_path, **options); end
end
module ActiveSupport::CoreExt::ERBUtil
def h(s); end
def html_escape(s); end
def unwrapped_html_escape(s); end
end
module ActiveSupport::CoreExt::ERBUtil
end
module ActiveSupport::CoreExt::ERBUtilPrivate
include ::ActiveSupport::CoreExt::ERBUtil
end
module ActiveSupport::CoreExt::ERBUtilPrivate
end
class ActiveSupport::CurrentAttributes
include ::ActiveSupport::Callbacks
def __callbacks(); end
def _reset_callbacks(); end
def _run_reset_callbacks(&block); end
def attributes(); end
def attributes=(attributes); end
def defaults(); end
def defaults?(); end
def reset(); end
def set(attributes, &block); end
INVALID_ATTRIBUTE_NAMES = ::T.let(nil, ::T.untyped)
NOT_SET = ::T.let(nil, ::T.untyped)
end
class ActiveSupport::CurrentAttributes
extend ::ActiveSupport::Callbacks::ClassMethods
extend ::ActiveSupport::DescendantsTracker
def self.__callbacks(); end
def self.__callbacks=(value); end
def self._reset_callbacks(); end
def self._reset_callbacks=(value); end
def self.after_reset(*methods, &block); end
def self.attribute(*names, default: T.unsafe(nil)); end
def self.attributes(&arg); end
def self.attributes=(arg); end
def self.before_reset(*methods, &block); end
def self.clear_all(); end
def self.defaults(); end