sorbet 0.5.5376 → 0.5.5400
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 +116 -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: 1f1b7e1292f314921ae3620b26eda2586b0b775c
|
4
|
+
data.tar.gz: 0f20814df3eadd345beeaa2671afc98a6e968016
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7bb84be067871f5f5e4d1520fe9b0ec0bd9a92186f25890aff0cef694056bff36567b021e498805cffb34916616d1894cf47483c673f24ead1c45b9d596beac
|
7
|
+
data.tar.gz: cd9ff6083800b317d74a59f562e3c15743051f1a38a973cf2e9dd2f6496a171dabc9e45e160e16d0bc51e0a3687649a49b38c73b2bd4757f7ef669744446d10d
|
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
|
@@ -545,6 +571,44 @@ class Sorbet::Private::GemLoader
|
|
545
571
|
'actioncable' => proc do
|
546
572
|
my_require 'action_cable'
|
547
573
|
my_require 'action_cable/engine'
|
574
|
+
[
|
575
|
+
ActionCable::Server,
|
576
|
+
ActionCable::Server::Base,
|
577
|
+
ActionCable::Server::Broadcasting,
|
578
|
+
ActionCable::Server::Connections,
|
579
|
+
ActionCable::Server::Configuration,
|
580
|
+
ActionCable::Server::Worker,
|
581
|
+
ActionCable::Server::ActiveRecordConnectionManagement,
|
582
|
+
ActionCable::Connection,
|
583
|
+
ActionCable::Connection::Authorization,
|
584
|
+
ActionCable::Connection::Base,
|
585
|
+
ActionCable::Connection::ClientSocket,
|
586
|
+
ActionCable::Connection::Identification,
|
587
|
+
ActionCable::Connection::InternalChannel,
|
588
|
+
ActionCable::Connection::MessageBuffer,
|
589
|
+
ActionCable::Connection::Stream,
|
590
|
+
ActionCable::Connection::StreamEventLoop,
|
591
|
+
ActionCable::Connection::Subscriptions,
|
592
|
+
ActionCable::Connection::TaggedLoggerProxy,
|
593
|
+
ActionCable::Connection::TestCase,
|
594
|
+
ActionCable::Connection::WebSocket,
|
595
|
+
ActionCable::Channel,
|
596
|
+
ActionCable::Channel::Base,
|
597
|
+
ActionCable::Channel::Broadcasting,
|
598
|
+
ActionCable::Channel::Callbacks,
|
599
|
+
ActionCable::Channel::Naming,
|
600
|
+
ActionCable::Channel::PeriodicTimers,
|
601
|
+
ActionCable::Channel::Streams,
|
602
|
+
ActionCable::Channel::TestCase,
|
603
|
+
ActionCable::RemoteConnections,
|
604
|
+
ActionCable::SubscriptionAdapter,
|
605
|
+
ActionCable::SubscriptionAdapter::Base,
|
606
|
+
ActionCable::SubscriptionAdapter::Test,
|
607
|
+
ActionCable::SubscriptionAdapter::SubscriberMap,
|
608
|
+
ActionCable::SubscriptionAdapter::ChannelPrefix,
|
609
|
+
ActionCable::TestHelper,
|
610
|
+
ActionCable::TestCase,
|
611
|
+
]
|
548
612
|
end,
|
549
613
|
'actionmailer' => proc do
|
550
614
|
my_require 'action_mailer'
|
@@ -675,6 +739,58 @@ class Sorbet::Private::GemLoader
|
|
675
739
|
FriendlyId::SequentiallySlugged
|
676
740
|
]
|
677
741
|
end,
|
742
|
+
'rdf' => proc do
|
743
|
+
my_require 'rdf'
|
744
|
+
my_require 'rdf/ntriples'
|
745
|
+
[
|
746
|
+
RDF::Countable,
|
747
|
+
RDF::Durable,
|
748
|
+
RDF::Enumerable,
|
749
|
+
RDF::Indexable,
|
750
|
+
RDF::Mutable,
|
751
|
+
RDF::Queryable,
|
752
|
+
RDF::Readable,
|
753
|
+
RDF::TypeCheck,
|
754
|
+
RDF::Transactable,
|
755
|
+
RDF::Writable,
|
756
|
+
RDF::Graph,
|
757
|
+
RDF::IRI,
|
758
|
+
RDF::Literal,
|
759
|
+
RDF::Node,
|
760
|
+
RDF::Resource,
|
761
|
+
RDF::Statement,
|
762
|
+
RDF::URI,
|
763
|
+
RDF::Value,
|
764
|
+
RDF::Term,
|
765
|
+
RDF::List,
|
766
|
+
RDF::Format,
|
767
|
+
RDF::Reader,
|
768
|
+
RDF::ReaderError,
|
769
|
+
RDF::Writer,
|
770
|
+
RDF::WriterError,
|
771
|
+
RDF::NTriples,
|
772
|
+
RDF::NQuads,
|
773
|
+
RDF::Changeset,
|
774
|
+
RDF::Dataset,
|
775
|
+
RDF::Repository,
|
776
|
+
RDF::Transaction,
|
777
|
+
RDF::Query,
|
778
|
+
RDF::Query::Pattern,
|
779
|
+
RDF::Query::Solution,
|
780
|
+
RDF::Query::Solutions,
|
781
|
+
RDF::Query::Variable,
|
782
|
+
RDF::Query::HashPatternNormalizer,
|
783
|
+
RDF::Vocabulary,
|
784
|
+
RDF::StrictVocabulary,
|
785
|
+
RDF::Util,
|
786
|
+
RDF::Util::Aliasing,
|
787
|
+
RDF::Util::Cache,
|
788
|
+
RDF::Util::File,
|
789
|
+
RDF::Util::Logger,
|
790
|
+
RDF::Util::UUID,
|
791
|
+
RDF::Util::Coercions,
|
792
|
+
]
|
793
|
+
end,
|
678
794
|
}
|
679
795
|
|
680
796
|
# 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.5400
|
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-26 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.5400
|
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.5400
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|