sorbet 0.5.5313 → 0.5.5345
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-generator-tracepoint/tracepoint_serializer.rb +1 -1
- data/lib/gem_loader.rb +18 -0
- data/lib/require_everything.rb +3 -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: b17754ce05bb3bc34946008cda2af13971fd5069
|
4
|
+
data.tar.gz: 1af26425fc91103554f56b806e09020566ead5b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7243b33ad23b833c2938644765d5f0e0bb12a9f6783ef75e718823a127f9fb96c91a2e83ab21b276c44bdd89d822c8b47c3a6963a8843a9372262ffb819e100e
|
7
|
+
data.tar.gz: 22fc5c87a29118d07670edbd6ba95136015d78faf2cb10ed4196d8a3d305885598d127facc542141da3ffd0a8c85bc2c54a682d030416dba843fe6b1295ef7cd
|
@@ -218,7 +218,7 @@ module Sorbet::Private
|
|
218
218
|
location&.match(/^.*\/(ruby)\/([\d.]+)\//) || # ruby stdlib
|
219
219
|
location&.match(/^.*\/(j?ruby)-([\d.]+)\//) || # jvm ruby stdlib
|
220
220
|
location&.match(/^.*\/(site_ruby)\/([\d.]+)\//) || # rubygems
|
221
|
-
location&.match(/^.*\/gems\/(?:j?ruby-)?[\d.]+(?:@[^\/]+)?(?:\/bundler)?\/gems\/([^\/]+)-([^-\/]+)\//i) # gem
|
221
|
+
location&.match(/^.*\/gems\/(?:(?:j?ruby-)?[\d.]+(?:@[^\/]+)?(?:\/bundler)?\/)?gems\/([^\/]+)-([^-\/]+)\//i) # gem
|
222
222
|
if match.nil?
|
223
223
|
# uncomment to generate files for methods outside of gems
|
224
224
|
# {
|
data/lib/gem_loader.rb
CHANGED
@@ -538,6 +538,24 @@ class Sorbet::Private::GemLoader
|
|
538
538
|
my_require 'simplecov'
|
539
539
|
my_require 'codecov'
|
540
540
|
end,
|
541
|
+
'sparql' => proc do
|
542
|
+
my_require 'sparql'
|
543
|
+
[
|
544
|
+
SPARQL::Algebra,
|
545
|
+
SPARQL::Algebra::Aggregate,
|
546
|
+
SPARQL::Algebra::Evaluatable,
|
547
|
+
SPARQL::Algebra::Expression,
|
548
|
+
SPARQL::Algebra::Operator,
|
549
|
+
SPARQL::Algebra::Query,
|
550
|
+
SPARQL::Algebra::Update,
|
551
|
+
SPARQL::Client,
|
552
|
+
SPARQL::Grammar,
|
553
|
+
SPARQL::Grammar::Parser,
|
554
|
+
SPARQL::Grammar::Terminals,
|
555
|
+
SPARQL::Results,
|
556
|
+
SPARQL::VERSION,
|
557
|
+
]
|
558
|
+
end,
|
541
559
|
}
|
542
560
|
|
543
561
|
# This is so that the autoloader doesn't treat these as manditory requires
|
data/lib/require_everything.rb
CHANGED
@@ -59,6 +59,9 @@ class Sorbet::Private::RequireEverything
|
|
59
59
|
# generate it without using the whole rails ecosystem.
|
60
60
|
next if /db\/schema.rb$/.match(abs_path)
|
61
61
|
|
62
|
+
# Skip **/extconf.rb, as running it will emit build configuration artifacts
|
63
|
+
next if /\/extconf.rb$/.match(abs_path)
|
64
|
+
|
62
65
|
begin
|
63
66
|
my_require(abs_path, i+1, abs_paths.size)
|
64
67
|
rescue LoadError, NoMethodError, SyntaxError
|
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.5345
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-06 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.5345
|
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.5345
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|