grape_sorbet 0.0.12 → 0.0.13
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/.rgignore +14 -0
- data/.rubocop.yml +4 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +91 -72
- data/grape_sorbet.gemspec +1 -1
- data/lib/grape_sorbet/version.rb +1 -1
- metadata +5 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfcbac73566ff86202a2b6474a7572dcde8b43f0f37f4b1aaad93b7babf9cd44
|
4
|
+
data.tar.gz: a25e32b30f5ab136dfad88b98706705a01ed5208b35bcb7e375e63e70ead5270
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3ef582b8581c71315ebda6382594ba0abb5517ea053f9586bd4d0666b9427e3e00429b1f899e6bd83cc02a10903e376f6e35b656afcfabe1caadd6b16a77068
|
7
|
+
data.tar.gz: f077c55cac3a423df56d7844a215f79e4570d0907a8a74194d7046e1e3885f389356f51d87fe69642fe642a0e326155119bda8baab9c0fc20f960575b6cca678
|
data/.rgignore
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# Files that are committed in the repository but that we don't want to search
|
2
|
+
# through with ripgrep.
|
3
|
+
#
|
4
|
+
# ripgrep already ignores files matched by .gitignore.
|
5
|
+
#
|
6
|
+
# See https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md for more info.
|
7
|
+
|
8
|
+
# Ignore build artifacts regardless of directory depth
|
9
|
+
**/builds/
|
10
|
+
|
11
|
+
# Tapioca-generated files
|
12
|
+
sorbet/rbi/annotations/**
|
13
|
+
sorbet/rbi/dsl/**
|
14
|
+
sorbet/rbi/gems/**
|
data/.rubocop.yml
CHANGED
@@ -2,16 +2,18 @@
|
|
2
2
|
inherit_gem:
|
3
3
|
rubocop-shopify: rubocop.yml
|
4
4
|
|
5
|
-
|
5
|
+
plugins:
|
6
6
|
- rubocop-minitest
|
7
7
|
- rubocop-performance
|
8
8
|
- rubocop-rake
|
9
|
+
|
10
|
+
require:
|
9
11
|
- rubocop-sorbet
|
10
12
|
|
11
13
|
AllCops:
|
12
14
|
NewCops: enable
|
13
15
|
SuggestExtensions: false
|
14
|
-
TargetRubyVersion: 3.
|
16
|
+
TargetRubyVersion: 3.2
|
15
17
|
|
16
18
|
Naming/ConstantName:
|
17
19
|
Enabled: false
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4.2
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
grape_sorbet (0.0.
|
4
|
+
grape_sorbet (0.0.13)
|
5
5
|
activesupport
|
6
6
|
grape (~> 2.0)
|
7
7
|
sorbet-runtime (~> 0.5.10741)
|
@@ -9,45 +9,52 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (
|
12
|
+
activesupport (8.0.1)
|
13
13
|
base64
|
14
|
+
benchmark (>= 0.3)
|
14
15
|
bigdecimal
|
15
|
-
concurrent-ruby (~> 1.0, >= 1.
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
16
17
|
connection_pool (>= 2.2.5)
|
17
18
|
drb
|
18
19
|
i18n (>= 1.6, < 2)
|
20
|
+
logger (>= 1.4.2)
|
19
21
|
minitest (>= 5.1)
|
20
|
-
|
21
|
-
tzinfo (~> 2.0)
|
22
|
+
securerandom (>= 0.3)
|
23
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
24
|
+
uri (>= 0.13.1)
|
22
25
|
ansi (1.5.0)
|
23
26
|
ast (2.4.2)
|
24
27
|
base64 (0.2.0)
|
25
|
-
|
28
|
+
benchmark (0.4.0)
|
29
|
+
bigdecimal (3.1.9)
|
26
30
|
builder (3.3.0)
|
27
|
-
bundler-audit (0.9.
|
31
|
+
bundler-audit (0.9.2)
|
28
32
|
bundler (>= 1.2.0, < 3)
|
29
33
|
thor (~> 1.0)
|
30
|
-
concurrent-ruby (1.3.
|
31
|
-
connection_pool (2.
|
34
|
+
concurrent-ruby (1.3.5)
|
35
|
+
connection_pool (2.5.0)
|
36
|
+
date (3.4.1)
|
32
37
|
docile (1.4.1)
|
33
38
|
drb (2.2.1)
|
34
|
-
dry-core (1.0
|
39
|
+
dry-core (1.1.0)
|
35
40
|
concurrent-ruby (~> 1.0)
|
41
|
+
logger
|
36
42
|
zeitwerk (~> 2.6)
|
37
|
-
dry-inflector (1.
|
38
|
-
dry-logic (1.
|
43
|
+
dry-inflector (1.2.0)
|
44
|
+
dry-logic (1.6.0)
|
45
|
+
bigdecimal
|
39
46
|
concurrent-ruby (~> 1.0)
|
40
|
-
dry-core (~> 1.
|
47
|
+
dry-core (~> 1.1)
|
41
48
|
zeitwerk (~> 2.6)
|
42
|
-
dry-types (1.
|
49
|
+
dry-types (1.8.2)
|
43
50
|
bigdecimal (~> 3.0)
|
44
51
|
concurrent-ruby (~> 1.0)
|
45
52
|
dry-core (~> 1.0)
|
46
53
|
dry-inflector (~> 1.0)
|
47
54
|
dry-logic (~> 1.4)
|
48
55
|
zeitwerk (~> 2.6)
|
49
|
-
erubi (1.13.
|
50
|
-
grape (2.
|
56
|
+
erubi (1.13.1)
|
57
|
+
grape (2.3.0)
|
51
58
|
activesupport (>= 6)
|
52
59
|
dry-types (>= 1.1)
|
53
60
|
mustermann-grape (~> 1.1.0)
|
@@ -56,115 +63,127 @@ GEM
|
|
56
63
|
grape-entity (1.0.1)
|
57
64
|
activesupport (>= 3.0.0)
|
58
65
|
multi_json (>= 1.3.2)
|
59
|
-
i18n (1.14.
|
66
|
+
i18n (1.14.7)
|
60
67
|
concurrent-ruby (~> 1.0)
|
61
|
-
io-console (0.
|
62
|
-
irb (1.
|
68
|
+
io-console (0.8.0)
|
69
|
+
irb (1.15.1)
|
70
|
+
pp (>= 0.6.0)
|
63
71
|
rdoc (>= 4.0.0)
|
64
72
|
reline (>= 0.4.2)
|
65
|
-
json (2.
|
66
|
-
language_server-protocol (3.17.0.
|
67
|
-
|
73
|
+
json (2.10.1)
|
74
|
+
language_server-protocol (3.17.0.4)
|
75
|
+
lint_roller (1.1.0)
|
76
|
+
logger (1.6.6)
|
77
|
+
minitest (5.25.4)
|
68
78
|
minitest-reporters (1.7.1)
|
69
79
|
ansi
|
70
80
|
builder
|
71
81
|
minitest (>= 5.0)
|
72
82
|
ruby-progressbar
|
73
83
|
multi_json (1.15.0)
|
74
|
-
mustermann (3.0.
|
84
|
+
mustermann (3.0.3)
|
75
85
|
ruby2_keywords (~> 0.0.1)
|
76
86
|
mustermann-grape (1.1.0)
|
77
87
|
mustermann (>= 1.0.0)
|
78
|
-
mutex_m (0.2.0)
|
79
88
|
netrc (0.11.0)
|
80
|
-
parallel (1.26.
|
81
|
-
parser (3.3.
|
89
|
+
parallel (1.26.3)
|
90
|
+
parser (3.3.7.1)
|
82
91
|
ast (~> 2.4.1)
|
83
92
|
racc
|
84
|
-
|
85
|
-
|
93
|
+
pp (0.6.2)
|
94
|
+
prettyprint
|
95
|
+
prettyprint (0.2.0)
|
96
|
+
prism (1.3.0)
|
97
|
+
psych (5.2.3)
|
98
|
+
date
|
86
99
|
stringio
|
87
100
|
racc (1.8.1)
|
88
|
-
rack (3.1.
|
101
|
+
rack (3.1.10)
|
89
102
|
rainbow (3.1.1)
|
90
103
|
rake (13.2.1)
|
91
|
-
rbi (0.
|
92
|
-
prism (
|
104
|
+
rbi (0.2.4)
|
105
|
+
prism (~> 1.0)
|
93
106
|
sorbet-runtime (>= 0.5.9204)
|
94
|
-
rdoc (6.
|
107
|
+
rdoc (6.12.0)
|
95
108
|
psych (>= 4.0.0)
|
96
|
-
regexp_parser (2.
|
97
|
-
reline (0.
|
109
|
+
regexp_parser (2.10.0)
|
110
|
+
reline (0.6.0)
|
98
111
|
io-console (~> 0.5)
|
99
|
-
|
100
|
-
strscan
|
101
|
-
rubocop (1.65.1)
|
112
|
+
rubocop (1.72.2)
|
102
113
|
json (~> 2.3)
|
103
|
-
language_server-protocol (
|
114
|
+
language_server-protocol (~> 3.17.0.2)
|
115
|
+
lint_roller (~> 1.1.0)
|
104
116
|
parallel (~> 1.10)
|
105
117
|
parser (>= 3.3.0.2)
|
106
118
|
rainbow (>= 2.2.2, < 4.0)
|
107
|
-
regexp_parser (>= 2.
|
108
|
-
|
109
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
119
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
120
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
110
121
|
ruby-progressbar (~> 1.7)
|
111
|
-
unicode-display_width (>= 2.4.0, <
|
112
|
-
rubocop-ast (1.
|
122
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
123
|
+
rubocop-ast (1.38.1)
|
113
124
|
parser (>= 3.3.1.0)
|
114
|
-
rubocop-minitest (0.
|
115
|
-
|
116
|
-
rubocop
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
rubocop (
|
125
|
+
rubocop-minitest (0.37.1)
|
126
|
+
lint_roller (~> 1.1)
|
127
|
+
rubocop (>= 1.72.1, < 2.0)
|
128
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
129
|
+
rubocop-performance (1.24.0)
|
130
|
+
lint_roller (~> 1.1)
|
131
|
+
rubocop (>= 1.72.1, < 2.0)
|
132
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
133
|
+
rubocop-rake (0.7.1)
|
134
|
+
lint_roller (~> 1.1)
|
135
|
+
rubocop (>= 1.72.1)
|
122
136
|
rubocop-shopify (2.15.1)
|
123
137
|
rubocop (~> 1.51)
|
124
|
-
rubocop-sorbet (0.8.
|
138
|
+
rubocop-sorbet (0.8.9)
|
125
139
|
rubocop (>= 1)
|
126
140
|
ruby-progressbar (1.13.0)
|
127
141
|
ruby2_keywords (0.0.5)
|
142
|
+
securerandom (0.4.1)
|
128
143
|
simplecov (0.22.0)
|
129
144
|
docile (~> 1.1)
|
130
145
|
simplecov-html (~> 0.11)
|
131
146
|
simplecov_json_formatter (~> 0.1)
|
132
|
-
simplecov-html (0.
|
147
|
+
simplecov-html (0.13.1)
|
133
148
|
simplecov_json_formatter (0.1.4)
|
134
|
-
sorbet (0.5.
|
135
|
-
sorbet-static (= 0.5.
|
136
|
-
sorbet-runtime (0.5.
|
137
|
-
sorbet-static (0.5.
|
138
|
-
sorbet-static (0.5.
|
139
|
-
sorbet-static (0.5.
|
140
|
-
sorbet-static-and-runtime (0.5.
|
141
|
-
sorbet (= 0.5.
|
142
|
-
sorbet-runtime (= 0.5.
|
143
|
-
spoom (1.4
|
149
|
+
sorbet (0.5.11856)
|
150
|
+
sorbet-static (= 0.5.11856)
|
151
|
+
sorbet-runtime (0.5.11856)
|
152
|
+
sorbet-static (0.5.11856-aarch64-linux)
|
153
|
+
sorbet-static (0.5.11856-universal-darwin)
|
154
|
+
sorbet-static (0.5.11856-x86_64-linux)
|
155
|
+
sorbet-static-and-runtime (0.5.11856)
|
156
|
+
sorbet (= 0.5.11856)
|
157
|
+
sorbet-runtime (= 0.5.11856)
|
158
|
+
spoom (1.5.4)
|
144
159
|
erubi (>= 1.10.0)
|
145
160
|
prism (>= 0.28.0)
|
161
|
+
rbi (>= 0.2.3)
|
146
162
|
sorbet-static-and-runtime (>= 0.5.10187)
|
147
163
|
thor (>= 0.19.2)
|
148
|
-
stringio (3.1.
|
149
|
-
|
150
|
-
|
164
|
+
stringio (3.1.5)
|
165
|
+
tapioca (0.16.11)
|
166
|
+
benchmark
|
151
167
|
bundler (>= 2.2.25)
|
152
168
|
netrc (>= 0.11.0)
|
153
169
|
parallel (>= 1.21.0)
|
154
|
-
rbi (
|
170
|
+
rbi (~> 0.2)
|
155
171
|
sorbet-static-and-runtime (>= 0.5.11087)
|
156
172
|
spoom (>= 1.2.0)
|
157
173
|
thor (>= 1.2.0)
|
158
174
|
yard-sorbet
|
159
|
-
thor (1.3.
|
175
|
+
thor (1.3.2)
|
160
176
|
tzinfo (2.0.6)
|
161
177
|
concurrent-ruby (~> 1.0)
|
162
|
-
unicode-display_width (
|
163
|
-
|
178
|
+
unicode-display_width (3.1.4)
|
179
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
180
|
+
unicode-emoji (4.0.4)
|
181
|
+
uri (1.0.2)
|
182
|
+
yard (0.9.37)
|
164
183
|
yard-sorbet (0.9.0)
|
165
184
|
sorbet-runtime
|
166
185
|
yard
|
167
|
-
zeitwerk (2.6.
|
186
|
+
zeitwerk (2.6.18)
|
168
187
|
|
169
188
|
PLATFORMS
|
170
189
|
aarch64-linux
|
@@ -190,4 +209,4 @@ DEPENDENCIES
|
|
190
209
|
tapioca (>= 0.16.0)
|
191
210
|
|
192
211
|
BUNDLED WITH
|
193
|
-
2.5
|
212
|
+
2.6.5
|
data/grape_sorbet.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
13
13
|
"the Grape API framework in a Sorbet-typed Ruby project."
|
14
14
|
spec.homepage = "https://github.com/thatch-health/grape_sorbet"
|
15
15
|
spec.license = "MIT"
|
16
|
-
spec.required_ruby_version = ">= 3.
|
16
|
+
spec.required_ruby_version = ">= 3.2.0"
|
17
17
|
|
18
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
19
19
|
spec.metadata["source_code_uri"] = spec.homepage
|
data/lib/grape_sorbet/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grape_sorbet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thatch Health, Inc.
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-02-25 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activesupport
|
@@ -61,6 +60,7 @@ extensions: []
|
|
61
60
|
extra_rdoc_files: []
|
62
61
|
files:
|
63
62
|
- ".editorconfig"
|
63
|
+
- ".rgignore"
|
64
64
|
- ".rubocop.yml"
|
65
65
|
- ".ruby-version"
|
66
66
|
- CHANGELOG.md
|
@@ -84,7 +84,6 @@ metadata:
|
|
84
84
|
homepage_uri: https://github.com/thatch-health/grape_sorbet
|
85
85
|
source_code_uri: https://github.com/thatch-health/grape_sorbet
|
86
86
|
changelog_uri: https://github.com/thatch-health/grape_sorbet/blob/main/CHANGELOG.md
|
87
|
-
post_install_message:
|
88
87
|
rdoc_options: []
|
89
88
|
require_paths:
|
90
89
|
- lib
|
@@ -92,15 +91,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
91
|
requirements:
|
93
92
|
- - ">="
|
94
93
|
- !ruby/object:Gem::Version
|
95
|
-
version: 3.
|
94
|
+
version: 3.2.0
|
96
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
96
|
requirements:
|
98
97
|
- - ">="
|
99
98
|
- !ruby/object:Gem::Version
|
100
99
|
version: '0'
|
101
100
|
requirements: []
|
102
|
-
rubygems_version: 3.5
|
103
|
-
signing_key:
|
101
|
+
rubygems_version: 3.6.5
|
104
102
|
specification_version: 4
|
105
103
|
summary: Sorbet signatures and Tapioca DSL compiler for Grape.
|
106
104
|
test_files: []
|