sorbet 0.5.5368 → 0.5.5384

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 +102 -10
  3. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a91f9ca7f16643943343294fb04b2c6be5cd456
4
- data.tar.gz: 59e03a1e441dd48080fc41b55351740a662700db
3
+ metadata.gz: d1c6aa5e1b9b7da4c19873b1530e1f58789a15be
4
+ data.tar.gz: 52b7730f7e925e24e02518a53cf9bd4709da8081
5
5
  SHA512:
6
- metadata.gz: 7c58f794bc051dafd877b123174625eeb4accd6470e1032ad79c87131d3c6d0906569a6ac1470a5ca1cf2c7323b4038bebd18909e2f7793180ada17b68c0de8e
7
- data.tar.gz: ff987783c7c59759ae70895ebf78e57934aebeab6c3c53e128309afbd1c83da8eb49510b83798ef50579460771915049dd823619d49b0501a09e311fac2d67dc
6
+ metadata.gz: ca67d541335980280320c0e9c53cc4352029f0435f460d76ffb89458eded547c3cbc4b4c2ee8eabd57991ae57adaf47faa24a606b121ac4d630e8ef95d194205
7
+ data.tar.gz: e439c75c926479c14c052df6c10442375dc619762d42205fd26bcd402c1c3b179e876d227e3c215d937baf99b219a2930592d75db006a2d8a9a1e7a356c668c6
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.5368
4
+ version: 0.5.5384
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-13 00:00:00.000000000 Z
11
+ date: 2020-02-20 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.5368
19
+ version: 0.5.5384
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.5368
26
+ version: 0.5.5384
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement