sorbet 0.5.5371 → 0.5.5390

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/gem_loader.rb +102 -10
  3. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '08915da4b88f0de0a318f54ec7f24ba4681fc809'
4
- data.tar.gz: 06e12d0061fc03cb44523184029a454d4c5a6d1f
3
+ metadata.gz: e5869938c1e53750fe1d5f39c4fcf13f942c719d
4
+ data.tar.gz: 7585de558c3569832f599f7e9b14739c38c46fce
5
5
  SHA512:
6
- metadata.gz: fc4182a4cc6076867041e12cbd9c9ac1a589b152e166279776c189f6b369c1d344c39408875902c34f16a6a5ecdcee301d547edf7d07e2850c0c0efedfd3eb8b
7
- data.tar.gz: 4fda3226c2f983e41daa339b876fe8bd4a410b9644814ccd435fefeda98a581337416b5e7b011e601f37847d1ad52288c26dfb5950dbf36949a68f89b6152b46
6
+ metadata.gz: f893f0c9843d1d9bbb7619048b2a4c66a92209c0940a667c9a5095e41e565889214da59c0e28b608e160a93ebb809f5471d825f0d83f8c2355dc4819a4224429
7
+ data.tar.gz: 7dc3246c78a298cbe3549bf01e422944349ef16af2d26e7ee96dfa19976fc0dd4cd10079e3a5625b33dbd205fce717388b61f3f6e17e4b11af358239b423d3d3
data/lib/gem_loader.rb CHANGED
@@ -302,7 +302,33 @@ class Sorbet::Private::GemLoader
302
302
  'i18n' => proc do
303
303
  my_require 'i18n'
304
304
  [
305
+ I18n::Backend,
306
+ I18n::Backend::Base,
307
+ I18n::Backend::InterpolationCompiler,
308
+ I18n::Backend::Cache,
309
+ I18n::Backend::CacheFile,
310
+ I18n::Backend::Cascade,
311
+ I18n::Backend::Chain,
312
+ I18n::Backend::Fallbacks,
313
+ I18n::Backend::Flatten,
314
+ I18n::Backend::Gettext,
315
+ I18n::Backend::KeyValue,
316
+ I18n::Backend::Memoize,
317
+ I18n::Backend::Metadata,
318
+ I18n::Backend::Pluralization,
319
+ I18n::Backend::Simple,
320
+ I18n::Backend::Transliterator,
321
+ I18n::Config,
322
+ I18n::Gettext,
323
+ I18n::Gettext::Helpers,
324
+ I18n::Locale,
325
+ I18n::Locale::Fallbacks,
326
+ I18n::Locale::Tag,
327
+ I18n::Locale::Tag::Parents,
305
328
  I18n::Locale::Tag::Rfc4646,
329
+ I18n::Locale::Tag::Simple,
330
+ I18n::Tests,
331
+ I18n::Middleware,
306
332
  ]
307
333
  end,
308
334
  'http-cookie' => proc do
@@ -482,37 +508,103 @@ class Sorbet::Private::GemLoader
482
508
  my_require 'html_truncator'
483
509
  end,
484
510
  'actionpack' => proc do
485
- my_require 'actionpack'
511
+ my_require 'action_pack'
512
+ my_require 'action_controller/railtie'
486
513
  [
487
514
  ActionController::Base,
488
- ActionDispatch::SystemTestCase,
515
+ ActionController::API,
516
+ ActionController::Base,
517
+ ActionController::Metal,
518
+ ActionController::Middleware,
519
+ ActionController::Renderer,
520
+ ActionController::FormBuilder,
521
+ ActionController::TestCase,
522
+ ActionController::TemplateAssertions,
523
+ ActionController::ConditionalGet,
524
+ ActionController::ContentSecurityPolicy,
525
+ ActionController::Cookies,
526
+ ActionController::DataStreaming,
527
+ ActionController::DefaultHeaders,
528
+ ActionController::EtagWithTemplateDigest,
529
+ ActionController::EtagWithFlash,
530
+ ActionController::FeaturePolicy,
531
+ ActionController::Flash,
532
+ ActionController::ForceSSL,
533
+ ActionController::Head,
534
+ ActionController::Helpers,
535
+ ActionController::HttpAuthentication,
536
+ ActionController::BasicImplicitRender,
537
+ ActionController::ImplicitRender,
538
+ ActionController::Instrumentation,
539
+ ActionController::Logging,
540
+ ActionController::MimeResponds,
541
+ ActionController::ParamsWrapper,
542
+ ActionController::Redirecting,
543
+ ActionController::Renderers,
544
+ ActionController::Rendering,
545
+ ActionController::RequestForgeryProtection,
546
+ ActionController::Rescue,
547
+ ActionController::Streaming,
548
+ ActionController::StrongParameters,
549
+ ActionController::ParameterEncoding,
550
+ ActionController::Testing,
551
+ ActionController::UrlFor,
552
+ ActionDispatch::SystemTestCase
553
+ ]
554
+ end,
555
+ 'actionview' => proc do
556
+ my_require 'action_view'
557
+ my_require 'action_view/railtie'
558
+ [
559
+ ActionView::Base,
560
+ ActionView::TestCase,
489
561
  ]
490
562
  end,
563
+ 'actiontext' => proc do
564
+ my_require 'action_text'
565
+ my_require 'action_text/engine'
566
+ end,
567
+ 'actionmailbox' => proc do
568
+ my_require 'action_mailbox'
569
+ my_require 'action_mailbox/engine'
570
+ end,
571
+ 'actioncable' => proc do
572
+ my_require 'action_cable'
573
+ my_require 'action_cable/engine'
574
+ end,
491
575
  'actionmailer' => proc do
492
- my_require 'actionmailer'
576
+ my_require 'action_mailer'
577
+ my_require 'action_mailer/railtie'
493
578
  [
494
579
  ActionMailer::Base,
495
580
  ActionMailer::MessageDelivery,
496
581
  ]
497
582
  end,
498
583
  'activejob' => proc do
499
- my_require 'activejob'
584
+ my_require 'active_job'
585
+ my_require 'active_job/railtie'
500
586
  [
501
587
  ActiveJob::Base,
502
588
  ]
503
589
  end,
590
+ 'activemodel' => proc do
591
+ my_require 'active_model'
592
+ my_require 'active_model/railtie'
593
+ end,
594
+ 'activesupport' => proc do
595
+ my_require 'active_support'
596
+ end,
504
597
  'activerecord' => proc do
505
- my_require 'activerecord'
598
+ my_require 'active_record'
599
+ my_require 'active_record/railtie'
506
600
  [
507
601
  ActiveRecord::Schema,
508
602
  ActiveRecord::Migration::Current,
509
603
  ]
510
604
  end,
511
- 'actionview' => proc do
512
- my_require 'actionview'
513
- [
514
- ActionView::TestCase,
515
- ]
605
+ 'activestorage' => proc do
606
+ my_require 'active_storage'
607
+ my_require 'active_storage/engine'
516
608
  end,
517
609
  'rdoc' => proc do
518
610
  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.5371
4
+ version: 0.5.5390
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-15 00:00:00.000000000 Z
11
+ date: 2020-02-22 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.5371
19
+ version: 0.5.5390
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.5371
26
+ version: 0.5.5390
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement