sorbet 0.5.5369 → 0.5.5388

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: f01638bad1353eb7606277545b901d0725c4bf6b
4
- data.tar.gz: d2f6e3d136714b8b056b58008a63a1e5fce30b28
3
+ metadata.gz: 154e1cf83037076995eda04d4b1c73b1974cc675
4
+ data.tar.gz: a34e279bde1040bd10dd16c916c5ad729fd77c3d
5
5
  SHA512:
6
- metadata.gz: 9d19b5e57e116ea9d9747c8ea2ca2b7c21f17ba13f5d11b7604f308a5e44af8f541af656b8564344907aec631be7d76e714de74a9a23d3f4bbbcb68852df1e4b
7
- data.tar.gz: bb8717f6ac4e1a64b423b860d0b24047a4110cfbbc7d47bafde071e8c437229c790633715464cb0b51f7631d14f811a40e36f11ca6306f86bfcba007625fd544
6
+ metadata.gz: 9787a2942920f3a97b9280ad8729ee9965d0090ead991ac328a15367395852112a984d046afc98056b9c2d7da6ca0d2d4c8b300697ed1e9d3eeb99e965f21a30
7
+ data.tar.gz: e2a8eefc76a35ba09e511958e107d0fd36541c29132c78aa0a51c03e18b7e850c16b392918160968b009551b0309df2acb552b40dccfb14edb58b552037153d5
@@ -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.5369
4
+ version: 0.5.5388
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-14 00:00:00.000000000 Z
11
+ date: 2020-02-21 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.5369
19
+ version: 0.5.5388
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.5369
26
+ version: 0.5.5388
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement