sorbet 0.5.5388 → 0.5.5406
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.
- checksums.yaml +4 -4
- data/lib/gem_loader.rb +110 -0
- 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: d218009f4ef12d849c1526bb4a5a2753a38f58e6
|
4
|
+
data.tar.gz: 7d99d83f316220f7812c600bbacd30f5c78feda2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 920cbdcb6e0b2231e3bd95d2e8cf712cc2d89395cb3680ee8a6c3a2b47e6a32882b1ca834824f2bf939c06b09b6b73bd7ef906e1ca15a19d5e334bf50c3076c3
|
7
|
+
data.tar.gz: 800262082e7fef3a8b01ad0a387cf071ce02e717baa9017397fcee4e6c92982b93e8d66215ae016b9a4922be93e84dea8bdac473ef8a22811c335995bbdc1af9
|
data/lib/gem_loader.rb
CHANGED
@@ -557,7 +557,28 @@ class Sorbet::Private::GemLoader
|
|
557
557
|
my_require 'action_view/railtie'
|
558
558
|
[
|
559
559
|
ActionView::Base,
|
560
|
+
ActionView::Context,
|
561
|
+
ActionView::Digestor,
|
562
|
+
ActionView::Helpers,
|
563
|
+
ActionView::LookupContext,
|
564
|
+
ActionView::Layouts,
|
565
|
+
ActionView::PathSet,
|
566
|
+
ActionView::RecordIdentifier,
|
567
|
+
ActionView::Rendering,
|
568
|
+
ActionView::RoutingUrlFor,
|
569
|
+
ActionView::Template,
|
570
|
+
ActionView::Template::Error,
|
571
|
+
ActionView::Template::RawFile,
|
572
|
+
ActionView::Template::Handlers,
|
573
|
+
ActionView::Template::HTML,
|
574
|
+
ActionView::Template::Inline,
|
575
|
+
ActionView::Template::Sources,
|
576
|
+
ActionView::Template::Text,
|
577
|
+
ActionView::Template::Types,
|
578
|
+
ActionView::UnboundTemplate,
|
579
|
+
ActionView::ViewPaths,
|
560
580
|
ActionView::TestCase,
|
581
|
+
ActionView::CacheExpiry,
|
561
582
|
]
|
562
583
|
end,
|
563
584
|
'actiontext' => proc do
|
@@ -571,6 +592,43 @@ class Sorbet::Private::GemLoader
|
|
571
592
|
'actioncable' => proc do
|
572
593
|
my_require 'action_cable'
|
573
594
|
my_require 'action_cable/engine'
|
595
|
+
[
|
596
|
+
ActionCable::Server,
|
597
|
+
ActionCable::Server::Base,
|
598
|
+
ActionCable::Server::Broadcasting,
|
599
|
+
ActionCable::Server::Connections,
|
600
|
+
ActionCable::Server::Configuration,
|
601
|
+
ActionCable::Server::Worker,
|
602
|
+
ActionCable::Connection,
|
603
|
+
ActionCable::Connection::Authorization,
|
604
|
+
ActionCable::Connection::Base,
|
605
|
+
ActionCable::Connection::ClientSocket,
|
606
|
+
ActionCable::Connection::Identification,
|
607
|
+
ActionCable::Connection::InternalChannel,
|
608
|
+
ActionCable::Connection::MessageBuffer,
|
609
|
+
ActionCable::Connection::Stream,
|
610
|
+
ActionCable::Connection::StreamEventLoop,
|
611
|
+
ActionCable::Connection::Subscriptions,
|
612
|
+
ActionCable::Connection::TaggedLoggerProxy,
|
613
|
+
ActionCable::Connection::TestCase,
|
614
|
+
ActionCable::Connection::WebSocket,
|
615
|
+
ActionCable::Channel,
|
616
|
+
ActionCable::Channel::Base,
|
617
|
+
ActionCable::Channel::Broadcasting,
|
618
|
+
ActionCable::Channel::Callbacks,
|
619
|
+
ActionCable::Channel::Naming,
|
620
|
+
ActionCable::Channel::PeriodicTimers,
|
621
|
+
ActionCable::Channel::Streams,
|
622
|
+
ActionCable::Channel::TestCase,
|
623
|
+
ActionCable::RemoteConnections,
|
624
|
+
ActionCable::SubscriptionAdapter,
|
625
|
+
ActionCable::SubscriptionAdapter::Base,
|
626
|
+
ActionCable::SubscriptionAdapter::Test,
|
627
|
+
ActionCable::SubscriptionAdapter::SubscriberMap,
|
628
|
+
ActionCable::SubscriptionAdapter::ChannelPrefix,
|
629
|
+
ActionCable::TestHelper,
|
630
|
+
ActionCable::TestCase,
|
631
|
+
]
|
574
632
|
end,
|
575
633
|
'actionmailer' => proc do
|
576
634
|
my_require 'action_mailer'
|
@@ -701,6 +759,58 @@ class Sorbet::Private::GemLoader
|
|
701
759
|
FriendlyId::SequentiallySlugged
|
702
760
|
]
|
703
761
|
end,
|
762
|
+
'rdf' => proc do
|
763
|
+
my_require 'rdf'
|
764
|
+
my_require 'rdf/ntriples'
|
765
|
+
[
|
766
|
+
RDF::Countable,
|
767
|
+
RDF::Durable,
|
768
|
+
RDF::Enumerable,
|
769
|
+
RDF::Indexable,
|
770
|
+
RDF::Mutable,
|
771
|
+
RDF::Queryable,
|
772
|
+
RDF::Readable,
|
773
|
+
RDF::TypeCheck,
|
774
|
+
RDF::Transactable,
|
775
|
+
RDF::Writable,
|
776
|
+
RDF::Graph,
|
777
|
+
RDF::IRI,
|
778
|
+
RDF::Literal,
|
779
|
+
RDF::Node,
|
780
|
+
RDF::Resource,
|
781
|
+
RDF::Statement,
|
782
|
+
RDF::URI,
|
783
|
+
RDF::Value,
|
784
|
+
RDF::Term,
|
785
|
+
RDF::List,
|
786
|
+
RDF::Format,
|
787
|
+
RDF::Reader,
|
788
|
+
RDF::ReaderError,
|
789
|
+
RDF::Writer,
|
790
|
+
RDF::WriterError,
|
791
|
+
RDF::NTriples,
|
792
|
+
RDF::NQuads,
|
793
|
+
RDF::Changeset,
|
794
|
+
RDF::Dataset,
|
795
|
+
RDF::Repository,
|
796
|
+
RDF::Transaction,
|
797
|
+
RDF::Query,
|
798
|
+
RDF::Query::Pattern,
|
799
|
+
RDF::Query::Solution,
|
800
|
+
RDF::Query::Solutions,
|
801
|
+
RDF::Query::Variable,
|
802
|
+
RDF::Query::HashPatternNormalizer,
|
803
|
+
RDF::Vocabulary,
|
804
|
+
RDF::StrictVocabulary,
|
805
|
+
RDF::Util,
|
806
|
+
RDF::Util::Aliasing,
|
807
|
+
RDF::Util::Cache,
|
808
|
+
RDF::Util::File,
|
809
|
+
RDF::Util::Logger,
|
810
|
+
RDF::Util::UUID,
|
811
|
+
RDF::Util::Coercions,
|
812
|
+
]
|
813
|
+
end,
|
704
814
|
}
|
705
815
|
|
706
816
|
# This is so that the autoloader doesn't treat these as manditory requires
|
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.5406
|
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-29 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.5406
|
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.5406
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|