spoom 1.5.1 → 1.5.3
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/spoom/sorbet/config.rb +3 -6
- data/lib/spoom/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15a5275f0e7dc1a73b36bd18bd66aea991464104a1d22029a751255d2541a5d5
|
|
4
|
+
data.tar.gz: 93184b912b7d720e551f9cb870666a31b052c2511535caf1fd9c4c819d0f62c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bbd6251f963e41482bedce4b46b19a1d69600dd5cca59d99bac72500af7f8a906cdb1c8ac6b7c499044ba7a24446257b5f5acad3a1335f1d16df81f291d253d
|
|
7
|
+
data.tar.gz: c4d1de6df7599dd9732bf8fd53b7c00667ec6b0e769b8fbcbfab1aa631424c1f7de68371626a63cecc0cbaf844382ad19809cbac5f91915c3930fe001d427726
|
data/lib/spoom/sorbet/config.rb
CHANGED
|
@@ -67,9 +67,9 @@ module Spoom
|
|
|
67
67
|
sig { returns(String) }
|
|
68
68
|
def options_string
|
|
69
69
|
opts = []
|
|
70
|
-
opts.concat(paths)
|
|
71
|
-
opts.concat(ignore.map { |p| "--ignore #{p}" })
|
|
72
|
-
opts.concat(allowed_extensions.map { |ext| "--allowed-extension #{ext}" })
|
|
70
|
+
opts.concat(paths.map { |p| "'#{p}'" })
|
|
71
|
+
opts.concat(ignore.map { |p| "--ignore '#{p}'" })
|
|
72
|
+
opts.concat(allowed_extensions.map { |ext| "--allowed-extension '#{ext}'" })
|
|
73
73
|
opts << "--no-stdlib" if @no_stdlib
|
|
74
74
|
opts.join(" ")
|
|
75
75
|
end
|
|
@@ -95,9 +95,6 @@ module Spoom
|
|
|
95
95
|
when /^--allowed-extension=/
|
|
96
96
|
config.allowed_extensions << parse_option(line)
|
|
97
97
|
next
|
|
98
|
-
when /^--ignore=/
|
|
99
|
-
config.ignore << parse_option(line)
|
|
100
|
-
next
|
|
101
98
|
when /^--ignore$/
|
|
102
99
|
state = :ignore
|
|
103
100
|
next
|
data/lib/spoom/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spoom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexandre Terrasa
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2025-01-
|
|
10
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: bundler
|
|
@@ -93,6 +93,20 @@ dependencies:
|
|
|
93
93
|
- - ">="
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
95
|
version: 0.28.0
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: rbi
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 0.2.3
|
|
103
|
+
type: :runtime
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: 0.2.3
|
|
96
110
|
- !ruby/object:Gem::Dependency
|
|
97
111
|
name: sorbet-static-and-runtime
|
|
98
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -232,7 +246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
246
|
- !ruby/object:Gem::Version
|
|
233
247
|
version: '0'
|
|
234
248
|
requirements: []
|
|
235
|
-
rubygems_version: 3.6.
|
|
249
|
+
rubygems_version: 3.6.3
|
|
236
250
|
specification_version: 4
|
|
237
251
|
summary: Useful tools for Sorbet enthusiasts.
|
|
238
252
|
test_files: []
|