http_status_codes 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +7 -0
  2. data/.rubocop.yml +8 -0
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG.md +5 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +48 -0
  7. data/Rakefile +12 -0
  8. data/lib/http_status_codes/version.rb +5 -0
  9. data/lib/http_status_codes.rb +77 -0
  10. data/sorbet/config +4 -0
  11. data/sorbet/rbi/annotations/.gitattributes +1 -0
  12. data/sorbet/rbi/annotations/minitest.rbi +119 -0
  13. data/sorbet/rbi/annotations/rainbow.rbi +269 -0
  14. data/sorbet/rbi/gems/.gitattributes +1 -0
  15. data/sorbet/rbi/gems/ast@2.4.2.rbi +585 -0
  16. data/sorbet/rbi/gems/erubi@1.13.1.rbi +157 -0
  17. data/sorbet/rbi/gems/json@2.9.1.rbi +1944 -0
  18. data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +9 -0
  19. data/sorbet/rbi/gems/minitest@5.25.4.rbi +1547 -0
  20. data/sorbet/rbi/gems/netrc@0.11.0.rbi +159 -0
  21. data/sorbet/rbi/gems/parallel@1.26.3.rbi +291 -0
  22. data/sorbet/rbi/gems/parser@3.3.6.0.rbi +5519 -0
  23. data/sorbet/rbi/gems/prism@1.3.0.rbi +41403 -0
  24. data/sorbet/rbi/gems/racc@1.8.1.rbi +162 -0
  25. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +403 -0
  26. data/sorbet/rbi/gems/rake@13.2.1.rbi +3022 -0
  27. data/sorbet/rbi/gems/rbi@0.2.2.rbi +4527 -0
  28. data/sorbet/rbi/gems/regexp_parser@2.10.0.rbi +3795 -0
  29. data/sorbet/rbi/gems/rubocop-ast@1.37.0.rbi +7608 -0
  30. data/sorbet/rbi/gems/rubocop@1.69.2.rbi +59462 -0
  31. data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1318 -0
  32. data/sorbet/rbi/gems/spoom@1.5.0.rbi +4932 -0
  33. data/sorbet/rbi/gems/tapioca@0.16.5.rbi +3617 -0
  34. data/sorbet/rbi/gems/thor@1.3.2.rbi +4378 -0
  35. data/sorbet/rbi/gems/unicode-display_width@3.1.3.rbi +130 -0
  36. data/sorbet/rbi/gems/unicode-emoji@4.0.4.rbi +251 -0
  37. data/sorbet/rbi/gems/yard-sorbet@0.9.0.rbi +435 -0
  38. data/sorbet/rbi/gems/yard@0.9.37.rbi +18379 -0
  39. data/sorbet/rbi/shims/gems/minitest.rbi +3 -0
  40. data/sorbet/tapioca/config.yml +13 -0
  41. data/sorbet/tapioca/require.rb +4 -0
  42. metadata +100 -0
@@ -0,0 +1,159 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `netrc` gem.
5
+ # Please instead update this file by running `bin/tapioca gem netrc`.
6
+
7
+
8
+ # source://netrc//lib/netrc.rb#3
9
+ class Netrc
10
+ # @return [Netrc] a new instance of Netrc
11
+ #
12
+ # source://netrc//lib/netrc.rb#166
13
+ def initialize(path, data); end
14
+
15
+ # source://netrc//lib/netrc.rb#180
16
+ def [](k); end
17
+
18
+ # source://netrc//lib/netrc.rb#188
19
+ def []=(k, info); end
20
+
21
+ # source://netrc//lib/netrc.rb#200
22
+ def delete(key); end
23
+
24
+ # source://netrc//lib/netrc.rb#211
25
+ def each(&block); end
26
+
27
+ # source://netrc//lib/netrc.rb#196
28
+ def length; end
29
+
30
+ # source://netrc//lib/netrc.rb#215
31
+ def new_item(m, l, p); end
32
+
33
+ # Returns the value of attribute new_item_prefix.
34
+ #
35
+ # source://netrc//lib/netrc.rb#178
36
+ def new_item_prefix; end
37
+
38
+ # Sets the attribute new_item_prefix
39
+ #
40
+ # @param value the value to set the attribute new_item_prefix to.
41
+ #
42
+ # source://netrc//lib/netrc.rb#178
43
+ def new_item_prefix=(_arg0); end
44
+
45
+ # source://netrc//lib/netrc.rb#219
46
+ def save; end
47
+
48
+ # source://netrc//lib/netrc.rb#233
49
+ def unparse; end
50
+
51
+ class << self
52
+ # source://netrc//lib/netrc.rb#42
53
+ def check_permissions(path); end
54
+
55
+ # source://netrc//lib/netrc.rb#33
56
+ def config; end
57
+
58
+ # @yield [self.config]
59
+ #
60
+ # source://netrc//lib/netrc.rb#37
61
+ def configure; end
62
+
63
+ # source://netrc//lib/netrc.rb#10
64
+ def default_path; end
65
+
66
+ # source://netrc//lib/netrc.rb#14
67
+ def home_path; end
68
+
69
+ # source://netrc//lib/netrc.rb#85
70
+ def lex(lines); end
71
+
72
+ # source://netrc//lib/netrc.rb#29
73
+ def netrc_filename; end
74
+
75
+ # Returns two values, a header and a list of items.
76
+ # Each item is a tuple, containing some or all of:
77
+ # - machine keyword (including trailing whitespace+comments)
78
+ # - machine name
79
+ # - login keyword (including surrounding whitespace+comments)
80
+ # - login
81
+ # - password keyword (including surrounding whitespace+comments)
82
+ # - password
83
+ # - trailing chars
84
+ # This lets us change individual fields, then write out the file
85
+ # with all its original formatting.
86
+ #
87
+ # source://netrc//lib/netrc.rb#129
88
+ def parse(ts); end
89
+
90
+ # Reads path and parses it as a .netrc file. If path doesn't
91
+ # exist, returns an empty object. Decrypt paths ending in .gpg.
92
+ #
93
+ # source://netrc//lib/netrc.rb#51
94
+ def read(path = T.unsafe(nil)); end
95
+
96
+ # @return [Boolean]
97
+ #
98
+ # source://netrc//lib/netrc.rb#112
99
+ def skip?(s); end
100
+ end
101
+ end
102
+
103
+ # source://netrc//lib/netrc.rb#8
104
+ Netrc::CYGWIN = T.let(T.unsafe(nil), T.untyped)
105
+
106
+ # source://netrc//lib/netrc.rb#244
107
+ class Netrc::Entry < ::Struct
108
+ # Returns the value of attribute login
109
+ #
110
+ # @return [Object] the current value of login
111
+ def login; end
112
+
113
+ # Sets the attribute login
114
+ #
115
+ # @param value [Object] the value to set the attribute login to.
116
+ # @return [Object] the newly set value
117
+ def login=(_); end
118
+
119
+ # Returns the value of attribute password
120
+ #
121
+ # @return [Object] the current value of password
122
+ def password; end
123
+
124
+ # Sets the attribute password
125
+ #
126
+ # @param value [Object] the value to set the attribute password to.
127
+ # @return [Object] the newly set value
128
+ def password=(_); end
129
+
130
+ def to_ary; end
131
+
132
+ class << self
133
+ def [](*_arg0); end
134
+ def inspect; end
135
+ def keyword_init?; end
136
+ def members; end
137
+ def new(*_arg0); end
138
+ end
139
+ end
140
+
141
+ # source://netrc//lib/netrc.rb#250
142
+ class Netrc::Error < ::StandardError; end
143
+
144
+ # source://netrc//lib/netrc.rb#68
145
+ class Netrc::TokenArray < ::Array
146
+ # source://netrc//lib/netrc.rb#76
147
+ def readto; end
148
+
149
+ # source://netrc//lib/netrc.rb#69
150
+ def take; end
151
+ end
152
+
153
+ # source://netrc//lib/netrc.rb#4
154
+ Netrc::VERSION = T.let(T.unsafe(nil), String)
155
+
156
+ # see http://stackoverflow.com/questions/4871309/what-is-the-correct-way-to-detect-if-ruby-is-running-on-windows
157
+ #
158
+ # source://netrc//lib/netrc.rb#7
159
+ Netrc::WINDOWS = T.let(T.unsafe(nil), T.untyped)
@@ -0,0 +1,291 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `parallel` gem.
5
+ # Please instead update this file by running `bin/tapioca gem parallel`.
6
+
7
+
8
+ # source://parallel//lib/parallel/version.rb#2
9
+ module Parallel
10
+ class << self
11
+ # @return [Boolean]
12
+ #
13
+ # source://parallel//lib/parallel.rb#243
14
+ def all?(*args, &block); end
15
+
16
+ # @return [Boolean]
17
+ #
18
+ # source://parallel//lib/parallel.rb#238
19
+ def any?(*args, &block); end
20
+
21
+ # source://parallel//lib/parallel.rb#234
22
+ def each(array, options = T.unsafe(nil), &block); end
23
+
24
+ # source://parallel//lib/parallel.rb#248
25
+ def each_with_index(array, options = T.unsafe(nil), &block); end
26
+
27
+ # source://parallel//lib/parallel.rb#307
28
+ def filter_map(*_arg0, **_arg1, &_arg2); end
29
+
30
+ # source://parallel//lib/parallel.rb#303
31
+ def flat_map(*_arg0, **_arg1, &_arg2); end
32
+
33
+ # source://parallel//lib/parallel.rb#228
34
+ def in_processes(options = T.unsafe(nil), &block); end
35
+
36
+ # source://parallel//lib/parallel.rb#212
37
+ def in_threads(options = T.unsafe(nil)); end
38
+
39
+ # source://parallel//lib/parallel.rb#252
40
+ def map(source, options = T.unsafe(nil), &block); end
41
+
42
+ # source://parallel//lib/parallel.rb#299
43
+ def map_with_index(array, options = T.unsafe(nil), &block); end
44
+
45
+ # Number of physical processor cores on the current system.
46
+ #
47
+ # source://parallel//lib/parallel.rb#312
48
+ def physical_processor_count; end
49
+
50
+ # Number of processors seen by the OS or value considering CPU quota if the process is inside a cgroup,
51
+ # used for process scheduling
52
+ #
53
+ # source://parallel//lib/parallel.rb#342
54
+ def processor_count; end
55
+
56
+ # source://parallel//lib/parallel.rb#346
57
+ def worker_number; end
58
+
59
+ # TODO: this does not work when doing threads in forks, so should remove and yield the number instead if needed
60
+ #
61
+ # source://parallel//lib/parallel.rb#351
62
+ def worker_number=(worker_num); end
63
+
64
+ private
65
+
66
+ # source://parallel//lib/parallel.rb#384
67
+ def add_progress_bar!(job_factory, options); end
68
+
69
+ # source://parallel//lib/parallel.rb#699
70
+ def available_processor_count; end
71
+
72
+ # source://parallel//lib/parallel.rb#647
73
+ def call_with_index(item, index, options, &block); end
74
+
75
+ # source://parallel//lib/parallel.rb#579
76
+ def create_workers(job_factory, options, &block); end
77
+
78
+ # options is either a Integer or a Hash with :count
79
+ #
80
+ # source://parallel//lib/parallel.rb#637
81
+ def extract_count_from_options(options); end
82
+
83
+ # source://parallel//lib/parallel.rb#665
84
+ def instrument_finish(item, index, result, options); end
85
+
86
+ # yield results in the order of the input items
87
+ # needs to use `options` to store state between executions
88
+ # needs to use `done` index since a nil result would also be valid
89
+ #
90
+ # source://parallel//lib/parallel.rb#674
91
+ def instrument_finish_in_order(item, index, result, options); end
92
+
93
+ # source://parallel//lib/parallel.rb#694
94
+ def instrument_start(item, index, options); end
95
+
96
+ # source://parallel//lib/parallel.rb#357
97
+ def physical_processor_count_windows; end
98
+
99
+ # source://parallel//lib/parallel.rb#613
100
+ def process_incoming_jobs(read, write, job_factory, options, &block); end
101
+
102
+ # source://parallel//lib/parallel.rb#567
103
+ def replace_worker(job_factory, workers, index, options, blk); end
104
+
105
+ # source://parallel//lib/parallel.rb#378
106
+ def run(command); end
107
+
108
+ # source://parallel//lib/parallel.rb#658
109
+ def with_instrumentation(item, index, options); end
110
+
111
+ # source://parallel//lib/parallel.rb#409
112
+ def work_direct(job_factory, options, &block); end
113
+
114
+ # source://parallel//lib/parallel.rb#519
115
+ def work_in_processes(job_factory, options, &blk); end
116
+
117
+ # source://parallel//lib/parallel.rb#453
118
+ def work_in_ractors(job_factory, options); end
119
+
120
+ # source://parallel//lib/parallel.rb#428
121
+ def work_in_threads(job_factory, options, &block); end
122
+
123
+ # source://parallel//lib/parallel.rb#587
124
+ def worker(job_factory, options, &block); end
125
+ end
126
+ end
127
+
128
+ # source://parallel//lib/parallel.rb#11
129
+ class Parallel::Break < ::StandardError
130
+ # @return [Break] a new instance of Break
131
+ #
132
+ # source://parallel//lib/parallel.rb#14
133
+ def initialize(value = T.unsafe(nil)); end
134
+
135
+ # Returns the value of attribute value.
136
+ #
137
+ # source://parallel//lib/parallel.rb#12
138
+ def value; end
139
+ end
140
+
141
+ # source://parallel//lib/parallel.rb#8
142
+ class Parallel::DeadWorker < ::StandardError; end
143
+
144
+ # source://parallel//lib/parallel.rb#32
145
+ class Parallel::ExceptionWrapper
146
+ # @return [ExceptionWrapper] a new instance of ExceptionWrapper
147
+ #
148
+ # source://parallel//lib/parallel.rb#35
149
+ def initialize(exception); end
150
+
151
+ # Returns the value of attribute exception.
152
+ #
153
+ # source://parallel//lib/parallel.rb#33
154
+ def exception; end
155
+ end
156
+
157
+ # source://parallel//lib/parallel.rb#98
158
+ class Parallel::JobFactory
159
+ # @return [JobFactory] a new instance of JobFactory
160
+ #
161
+ # source://parallel//lib/parallel.rb#99
162
+ def initialize(source, mutex); end
163
+
164
+ # source://parallel//lib/parallel.rb#107
165
+ def next; end
166
+
167
+ # generate item that is sent to workers
168
+ # just index is faster + less likely to blow up with unserializable errors
169
+ #
170
+ # source://parallel//lib/parallel.rb#136
171
+ def pack(item, index); end
172
+
173
+ # source://parallel//lib/parallel.rb#126
174
+ def size; end
175
+
176
+ # unpack item that is sent to workers
177
+ #
178
+ # source://parallel//lib/parallel.rb#141
179
+ def unpack(data); end
180
+
181
+ private
182
+
183
+ # @return [Boolean]
184
+ #
185
+ # source://parallel//lib/parallel.rb#147
186
+ def producer?; end
187
+
188
+ # source://parallel//lib/parallel.rb#151
189
+ def queue_wrapper(array); end
190
+ end
191
+
192
+ # source://parallel//lib/parallel.rb#20
193
+ class Parallel::Kill < ::Parallel::Break; end
194
+
195
+ # source://parallel//lib/parallel.rb#6
196
+ Parallel::Stop = T.let(T.unsafe(nil), Object)
197
+
198
+ # source://parallel//lib/parallel.rb#23
199
+ class Parallel::UndumpableException < ::StandardError
200
+ # @return [UndumpableException] a new instance of UndumpableException
201
+ #
202
+ # source://parallel//lib/parallel.rb#26
203
+ def initialize(original); end
204
+
205
+ # Returns the value of attribute backtrace.
206
+ #
207
+ # source://parallel//lib/parallel.rb#24
208
+ def backtrace; end
209
+ end
210
+
211
+ # source://parallel//lib/parallel.rb#156
212
+ class Parallel::UserInterruptHandler
213
+ class << self
214
+ # source://parallel//lib/parallel.rb#181
215
+ def kill(thing); end
216
+
217
+ # kill all these pids or threads if user presses Ctrl+c
218
+ #
219
+ # source://parallel//lib/parallel.rb#161
220
+ def kill_on_ctrl_c(pids, options); end
221
+
222
+ private
223
+
224
+ # source://parallel//lib/parallel.rb#205
225
+ def restore_interrupt(old, signal); end
226
+
227
+ # source://parallel//lib/parallel.rb#190
228
+ def trap_interrupt(signal); end
229
+ end
230
+ end
231
+
232
+ # source://parallel//lib/parallel.rb#157
233
+ Parallel::UserInterruptHandler::INTERRUPT_SIGNAL = T.let(T.unsafe(nil), Symbol)
234
+
235
+ # source://parallel//lib/parallel/version.rb#3
236
+ Parallel::VERSION = T.let(T.unsafe(nil), String)
237
+
238
+ # source://parallel//lib/parallel/version.rb#3
239
+ Parallel::Version = T.let(T.unsafe(nil), String)
240
+
241
+ # source://parallel//lib/parallel.rb#51
242
+ class Parallel::Worker
243
+ # @return [Worker] a new instance of Worker
244
+ #
245
+ # source://parallel//lib/parallel.rb#55
246
+ def initialize(read, write, pid); end
247
+
248
+ # might be passed to started_processes and simultaneously closed by another thread
249
+ # when running in isolation mode, so we have to check if it is closed before closing
250
+ #
251
+ # source://parallel//lib/parallel.rb#68
252
+ def close_pipes; end
253
+
254
+ # Returns the value of attribute pid.
255
+ #
256
+ # source://parallel//lib/parallel.rb#52
257
+ def pid; end
258
+
259
+ # Returns the value of attribute read.
260
+ #
261
+ # source://parallel//lib/parallel.rb#52
262
+ def read; end
263
+
264
+ # source://parallel//lib/parallel.rb#61
265
+ def stop; end
266
+
267
+ # Returns the value of attribute thread.
268
+ #
269
+ # source://parallel//lib/parallel.rb#53
270
+ def thread; end
271
+
272
+ # Sets the attribute thread
273
+ #
274
+ # @param value the value to set the attribute thread to.
275
+ #
276
+ # source://parallel//lib/parallel.rb#53
277
+ def thread=(_arg0); end
278
+
279
+ # source://parallel//lib/parallel.rb#73
280
+ def work(data); end
281
+
282
+ # Returns the value of attribute write.
283
+ #
284
+ # source://parallel//lib/parallel.rb#52
285
+ def write; end
286
+
287
+ private
288
+
289
+ # source://parallel//lib/parallel.rb#91
290
+ def wait; end
291
+ end