sorbet 0.5.5364 → 0.5.5373
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gem_loader.rb +76 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7f7251a0467ce1b14774720ef2658ff00d3c353
|
4
|
+
data.tar.gz: 858aaffc88a47f67532780bca00073d8942dd335
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bebda6763cc31535bfef2e1ff3061ec616ad62a97bb993c429f14b9f0227c85ccf38db2d3a9af59b9b15682cfb3c17e9efc228938927e358f1e2980537fd7e9
|
7
|
+
data.tar.gz: 1a6566e016118324dbda0dfda54d006ae2bd1b7249be5c3796d0609795bfcee28e11bd1db0823947b88f25b940f8fce30f021b92bb05ddbe3385dff86028b50e
|
data/lib/gem_loader.rb
CHANGED
@@ -482,37 +482,103 @@ class Sorbet::Private::GemLoader
|
|
482
482
|
my_require 'html_truncator'
|
483
483
|
end,
|
484
484
|
'actionpack' => proc do
|
485
|
-
my_require '
|
485
|
+
my_require 'action_pack'
|
486
|
+
my_require 'action_controller/railtie'
|
486
487
|
[
|
487
488
|
ActionController::Base,
|
488
|
-
|
489
|
+
ActionController::API,
|
490
|
+
ActionController::Base,
|
491
|
+
ActionController::Metal,
|
492
|
+
ActionController::Middleware,
|
493
|
+
ActionController::Renderer,
|
494
|
+
ActionController::FormBuilder,
|
495
|
+
ActionController::TestCase,
|
496
|
+
ActionController::TemplateAssertions,
|
497
|
+
ActionController::ConditionalGet,
|
498
|
+
ActionController::ContentSecurityPolicy,
|
499
|
+
ActionController::Cookies,
|
500
|
+
ActionController::DataStreaming,
|
501
|
+
ActionController::DefaultHeaders,
|
502
|
+
ActionController::EtagWithTemplateDigest,
|
503
|
+
ActionController::EtagWithFlash,
|
504
|
+
ActionController::FeaturePolicy,
|
505
|
+
ActionController::Flash,
|
506
|
+
ActionController::ForceSSL,
|
507
|
+
ActionController::Head,
|
508
|
+
ActionController::Helpers,
|
509
|
+
ActionController::HttpAuthentication,
|
510
|
+
ActionController::BasicImplicitRender,
|
511
|
+
ActionController::ImplicitRender,
|
512
|
+
ActionController::Instrumentation,
|
513
|
+
ActionController::Logging,
|
514
|
+
ActionController::MimeResponds,
|
515
|
+
ActionController::ParamsWrapper,
|
516
|
+
ActionController::Redirecting,
|
517
|
+
ActionController::Renderers,
|
518
|
+
ActionController::Rendering,
|
519
|
+
ActionController::RequestForgeryProtection,
|
520
|
+
ActionController::Rescue,
|
521
|
+
ActionController::Streaming,
|
522
|
+
ActionController::StrongParameters,
|
523
|
+
ActionController::ParameterEncoding,
|
524
|
+
ActionController::Testing,
|
525
|
+
ActionController::UrlFor,
|
526
|
+
ActionDispatch::SystemTestCase
|
527
|
+
]
|
528
|
+
end,
|
529
|
+
'actionview' => proc do
|
530
|
+
my_require 'action_view'
|
531
|
+
my_require 'action_view/railtie'
|
532
|
+
[
|
533
|
+
ActionView::Base,
|
534
|
+
ActionView::TestCase,
|
489
535
|
]
|
490
536
|
end,
|
537
|
+
'actiontext' => proc do
|
538
|
+
my_require 'action_text'
|
539
|
+
my_require 'action_text/engine'
|
540
|
+
end,
|
541
|
+
'actionmailbox' => proc do
|
542
|
+
my_require 'action_mailbox'
|
543
|
+
my_require 'action_mailbox/engine'
|
544
|
+
end,
|
545
|
+
'actioncable' => proc do
|
546
|
+
my_require 'action_cable'
|
547
|
+
my_require 'action_cable/engine'
|
548
|
+
end,
|
491
549
|
'actionmailer' => proc do
|
492
|
-
my_require '
|
550
|
+
my_require 'action_mailer'
|
551
|
+
my_require 'action_mailer/railtie'
|
493
552
|
[
|
494
553
|
ActionMailer::Base,
|
495
554
|
ActionMailer::MessageDelivery,
|
496
555
|
]
|
497
556
|
end,
|
498
557
|
'activejob' => proc do
|
499
|
-
my_require '
|
558
|
+
my_require 'active_job'
|
559
|
+
my_require 'active_job/railtie'
|
500
560
|
[
|
501
561
|
ActiveJob::Base,
|
502
562
|
]
|
503
563
|
end,
|
564
|
+
'activemodel' => proc do
|
565
|
+
my_require 'active_model'
|
566
|
+
my_require 'active_model/railtie'
|
567
|
+
end,
|
568
|
+
'activesupport' => proc do
|
569
|
+
my_require 'active_support'
|
570
|
+
end,
|
504
571
|
'activerecord' => proc do
|
505
|
-
my_require '
|
572
|
+
my_require 'active_record'
|
573
|
+
my_require 'active_record/railtie'
|
506
574
|
[
|
507
575
|
ActiveRecord::Schema,
|
508
576
|
ActiveRecord::Migration::Current,
|
509
577
|
]
|
510
578
|
end,
|
511
|
-
'
|
512
|
-
my_require '
|
513
|
-
|
514
|
-
ActionView::TestCase,
|
515
|
-
]
|
579
|
+
'activestorage' => proc do
|
580
|
+
my_require 'active_storage'
|
581
|
+
my_require 'active_storage/engine'
|
516
582
|
end,
|
517
583
|
'rdoc' => proc do
|
518
584
|
my_require 'rdoc'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sorbet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.5373
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-02-
|
11
|
+
date: 2020-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sorbet-static
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.5.
|
19
|
+
version: 0.5.5373
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.5.
|
26
|
+
version: 0.5.5373
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|