sorbet 0.5.5365 → 0.5.5376

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gem_loader.rb +76 -10
  3. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45fccc7781145feb387497bf28e0f9b7f70a9a1a
4
- data.tar.gz: 117270d012bd9be6b89c98b5c3f7af7765b773c3
3
+ metadata.gz: 997ff42840a5cb98b1f02fee0bb0382ed8f4bfef
4
+ data.tar.gz: af247f0d6cbed03d15a6b6960fab2d0dd0c4e6aa
5
5
  SHA512:
6
- metadata.gz: 5a5d5499bb6cdbd27e439b9357275cceed86172ef5eca259ee7b88f7084bde1531845a45e9ee27d7bb41caeaa75f0bb53903de945178e2924fa529bebf9fa245
7
- data.tar.gz: fa520621b5124fe01f3270e364b342dd2259cafdb9b728acb127a187b61498f79938d8eedef0dc42b98f398f6cbfb6f588df3ef44fb53d7c558da3c59e00d50a
6
+ metadata.gz: 80f366267cb982edb6b66af6e0e63ccf20e8cb004a5891ab7e39a6b4626f0762b60b760b07f43bc75bf1aea5018824ca7d30d2033e86e39706857b94cde79080
7
+ data.tar.gz: 753781213aeb330c8d4d34cae1fa7abe7d8facb431011c9b8a57979824bc18cdbfec728632ed47ffcf6b2a4113b159a2d6cd2512217491122df4956c147640fe
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 'actionpack'
485
+ my_require 'action_pack'
486
+ my_require 'action_controller/railtie'
486
487
  [
487
488
  ActionController::Base,
488
- ActionDispatch::SystemTestCase,
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 'actionmailer'
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 'activejob'
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 'activerecord'
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
- 'actionview' => proc do
512
- my_require 'actionview'
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.5365
4
+ version: 0.5.5376
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-12 00:00:00.000000000 Z
11
+ date: 2020-02-19 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.5365
19
+ version: 0.5.5376
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.5365
26
+ version: 0.5.5376
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement