repeatable 1.0.0 → 1.2.0
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/.github/workflows/ci.yml +77 -0
- data/CHANGELOG.md +27 -1
- data/CODE_OF_CONDUCT.md +128 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +89 -24
- data/README.md +44 -8
- data/Rakefile +5 -1
- data/bin/tapioca +29 -0
- data/lib/repeatable/conversions.rb +7 -2
- data/lib/repeatable/expression/base.rb +27 -11
- data/lib/repeatable/expression/biweekly.rb +15 -6
- data/lib/repeatable/expression/date.rb +11 -6
- data/lib/repeatable/expression/day_in_month.rb +5 -0
- data/lib/repeatable/expression/difference.rb +15 -5
- data/lib/repeatable/expression/exact_date.rb +6 -1
- data/lib/repeatable/expression/intersection.rb +8 -2
- data/lib/repeatable/expression/range_in_year.rb +34 -9
- data/lib/repeatable/expression/set.rb +17 -6
- data/lib/repeatable/expression/union.rb +7 -1
- data/lib/repeatable/expression/weekday.rb +5 -0
- data/lib/repeatable/expression/weekday_in_month.rb +15 -1
- data/lib/repeatable/expression.rb +2 -0
- data/lib/repeatable/last_date_of_month.rb +5 -0
- data/lib/repeatable/parse_error.rb +2 -0
- data/lib/repeatable/parser.rb +8 -1
- data/lib/repeatable/schedule.rb +24 -4
- data/lib/repeatable/types.rb +7 -0
- data/lib/repeatable/version.rb +3 -1
- data/lib/repeatable.rb +5 -0
- data/rbi/repeatable.rbi +316 -0
- data/repeatable.gemspec +3 -0
- data/sorbet/config +4 -0
- data/sorbet/rbi/annotations/.gitattributes +1 -0
- data/sorbet/rbi/annotations/rainbow.rbi +269 -0
- data/sorbet/rbi/gems/.gitattributes +1 -0
- data/sorbet/rbi/gems/ast@2.4.2.rbi +584 -0
- data/sorbet/rbi/gems/coderay@1.1.3.rbi +3426 -0
- data/sorbet/rbi/gems/commander@4.6.0.rbi +8 -0
- data/sorbet/rbi/gems/diff-lcs@1.4.4.rbi +1082 -0
- data/sorbet/rbi/gems/docile@1.4.0.rbi +376 -0
- data/sorbet/rbi/gems/erubi@1.12.0.rbi +145 -0
- data/sorbet/rbi/gems/highline@2.0.3.rbi +8 -0
- data/sorbet/rbi/gems/json@2.7.2.rbi +1561 -0
- data/sorbet/rbi/gems/language_server-protocol@3.17.0.3.rbi +14237 -0
- data/sorbet/rbi/gems/lint_roller@1.1.0.rbi +239 -0
- data/sorbet/rbi/gems/method_source@1.0.0.rbi +272 -0
- data/sorbet/rbi/gems/netrc@0.11.0.rbi +158 -0
- data/sorbet/rbi/gems/parallel@1.24.0.rbi +280 -0
- data/sorbet/rbi/gems/parlour@8.1.0.rbi +3053 -0
- data/sorbet/rbi/gems/parser@3.3.1.0.rbi +7320 -0
- data/sorbet/rbi/gems/prism@0.28.0.rbi +37903 -0
- data/sorbet/rbi/gems/pry@0.14.0.rbi +10072 -0
- data/sorbet/rbi/gems/racc@1.7.3.rbi +161 -0
- data/sorbet/rbi/gems/rainbow@3.1.1.rbi +402 -0
- data/sorbet/rbi/gems/rake@13.0.3.rbi +3024 -0
- data/sorbet/rbi/gems/rbi@0.1.13.rbi +3071 -0
- data/sorbet/rbi/gems/regexp_parser@2.9.0.rbi +3771 -0
- data/sorbet/rbi/gems/rexml@3.2.6.rbi +4781 -0
- data/sorbet/rbi/gems/rspec-core@3.10.1.rbi +10837 -0
- data/sorbet/rbi/gems/rspec-expectations@3.10.1.rbi +7930 -0
- data/sorbet/rbi/gems/rspec-mocks@3.10.2.rbi +5247 -0
- data/sorbet/rbi/gems/rspec-support@3.10.2.rbi +1594 -0
- data/sorbet/rbi/gems/rspec@3.10.0.rbi +76 -0
- data/sorbet/rbi/gems/rubocop-ast@1.31.3.rbi +7014 -0
- data/sorbet/rbi/gems/rubocop-performance@1.20.2.rbi +8 -0
- data/sorbet/rbi/gems/rubocop@1.62.1.rbi +57542 -0
- data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1317 -0
- data/sorbet/rbi/gems/simplecov-html@0.12.3.rbi +216 -0
- data/sorbet/rbi/gems/simplecov@0.21.2.rbi +2135 -0
- data/sorbet/rbi/gems/simplecov_json_formatter@0.1.4.rbi +8 -0
- data/sorbet/rbi/gems/spoom@1.3.2.rbi +4420 -0
- data/sorbet/rbi/gems/standard-custom@1.0.2.rbi +8 -0
- data/sorbet/rbi/gems/standard-performance@1.3.1.rbi +8 -0
- data/sorbet/rbi/gems/standard@1.35.1.rbi +850 -0
- data/sorbet/rbi/gems/tapioca@0.13.3.rbi +3527 -0
- data/sorbet/rbi/gems/thor@1.3.1.rbi +4351 -0
- data/sorbet/rbi/gems/unicode-display_width@2.5.0.rbi +65 -0
- data/sorbet/rbi/gems/yard-sorbet@0.8.1.rbi +428 -0
- data/sorbet/rbi/gems/yard@0.9.36.rbi +18220 -0
- data/sorbet/tapioca/config.yml +13 -0
- data/sorbet/tapioca/require.rb +4 -0
- metadata +75 -6
- data/.travis.yml +0 -18
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
# typed: true
|
|
2
|
+
|
|
3
|
+
# DO NOT EDIT MANUALLY
|
|
4
|
+
# This is an autogenerated file for types exported from the `lint_roller` gem.
|
|
5
|
+
# Please instead update this file by running `bin/tapioca gem lint_roller`.
|
|
6
|
+
|
|
7
|
+
# source://lint_roller//lib/lint_roller/version.rb#1
|
|
8
|
+
module LintRoller; end
|
|
9
|
+
|
|
10
|
+
# source://lint_roller//lib/lint_roller/about.rb#2
|
|
11
|
+
class LintRoller::About < ::Struct
|
|
12
|
+
# Returns the value of attribute description
|
|
13
|
+
#
|
|
14
|
+
# @return [Object] the current value of description
|
|
15
|
+
def description; end
|
|
16
|
+
|
|
17
|
+
# Sets the attribute description
|
|
18
|
+
#
|
|
19
|
+
# @param value [Object] the value to set the attribute description to.
|
|
20
|
+
# @return [Object] the newly set value
|
|
21
|
+
def description=(_); end
|
|
22
|
+
|
|
23
|
+
# Returns the value of attribute homepage
|
|
24
|
+
#
|
|
25
|
+
# @return [Object] the current value of homepage
|
|
26
|
+
def homepage; end
|
|
27
|
+
|
|
28
|
+
# Sets the attribute homepage
|
|
29
|
+
#
|
|
30
|
+
# @param value [Object] the value to set the attribute homepage to.
|
|
31
|
+
# @return [Object] the newly set value
|
|
32
|
+
def homepage=(_); end
|
|
33
|
+
|
|
34
|
+
# Returns the value of attribute name
|
|
35
|
+
#
|
|
36
|
+
# @return [Object] the current value of name
|
|
37
|
+
def name; end
|
|
38
|
+
|
|
39
|
+
# Sets the attribute name
|
|
40
|
+
#
|
|
41
|
+
# @param value [Object] the value to set the attribute name to.
|
|
42
|
+
# @return [Object] the newly set value
|
|
43
|
+
def name=(_); end
|
|
44
|
+
|
|
45
|
+
# Returns the value of attribute version
|
|
46
|
+
#
|
|
47
|
+
# @return [Object] the current value of version
|
|
48
|
+
def version; end
|
|
49
|
+
|
|
50
|
+
# Sets the attribute version
|
|
51
|
+
#
|
|
52
|
+
# @param value [Object] the value to set the attribute version to.
|
|
53
|
+
# @return [Object] the newly set value
|
|
54
|
+
def version=(_); end
|
|
55
|
+
|
|
56
|
+
class << self
|
|
57
|
+
def [](*_arg0); end
|
|
58
|
+
def inspect; end
|
|
59
|
+
def keyword_init?; end
|
|
60
|
+
def members; end
|
|
61
|
+
def new(*_arg0); end
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# source://lint_roller//lib/lint_roller/context.rb#2
|
|
66
|
+
class LintRoller::Context < ::Struct
|
|
67
|
+
# Returns the value of attribute engine
|
|
68
|
+
#
|
|
69
|
+
# @return [Object] the current value of engine
|
|
70
|
+
def engine; end
|
|
71
|
+
|
|
72
|
+
# Sets the attribute engine
|
|
73
|
+
#
|
|
74
|
+
# @param value [Object] the value to set the attribute engine to.
|
|
75
|
+
# @return [Object] the newly set value
|
|
76
|
+
def engine=(_); end
|
|
77
|
+
|
|
78
|
+
# Returns the value of attribute engine_version
|
|
79
|
+
#
|
|
80
|
+
# @return [Object] the current value of engine_version
|
|
81
|
+
def engine_version; end
|
|
82
|
+
|
|
83
|
+
# Sets the attribute engine_version
|
|
84
|
+
#
|
|
85
|
+
# @param value [Object] the value to set the attribute engine_version to.
|
|
86
|
+
# @return [Object] the newly set value
|
|
87
|
+
def engine_version=(_); end
|
|
88
|
+
|
|
89
|
+
# Returns the value of attribute rule_format
|
|
90
|
+
#
|
|
91
|
+
# @return [Object] the current value of rule_format
|
|
92
|
+
def rule_format; end
|
|
93
|
+
|
|
94
|
+
# Sets the attribute rule_format
|
|
95
|
+
#
|
|
96
|
+
# @param value [Object] the value to set the attribute rule_format to.
|
|
97
|
+
# @return [Object] the newly set value
|
|
98
|
+
def rule_format=(_); end
|
|
99
|
+
|
|
100
|
+
# Returns the value of attribute runner
|
|
101
|
+
#
|
|
102
|
+
# @return [Object] the current value of runner
|
|
103
|
+
def runner; end
|
|
104
|
+
|
|
105
|
+
# Sets the attribute runner
|
|
106
|
+
#
|
|
107
|
+
# @param value [Object] the value to set the attribute runner to.
|
|
108
|
+
# @return [Object] the newly set value
|
|
109
|
+
def runner=(_); end
|
|
110
|
+
|
|
111
|
+
# Returns the value of attribute runner_version
|
|
112
|
+
#
|
|
113
|
+
# @return [Object] the current value of runner_version
|
|
114
|
+
def runner_version; end
|
|
115
|
+
|
|
116
|
+
# Sets the attribute runner_version
|
|
117
|
+
#
|
|
118
|
+
# @param value [Object] the value to set the attribute runner_version to.
|
|
119
|
+
# @return [Object] the newly set value
|
|
120
|
+
def runner_version=(_); end
|
|
121
|
+
|
|
122
|
+
# Returns the value of attribute target_ruby_version
|
|
123
|
+
#
|
|
124
|
+
# @return [Object] the current value of target_ruby_version
|
|
125
|
+
def target_ruby_version; end
|
|
126
|
+
|
|
127
|
+
# Sets the attribute target_ruby_version
|
|
128
|
+
#
|
|
129
|
+
# @param value [Object] the value to set the attribute target_ruby_version to.
|
|
130
|
+
# @return [Object] the newly set value
|
|
131
|
+
def target_ruby_version=(_); end
|
|
132
|
+
|
|
133
|
+
class << self
|
|
134
|
+
def [](*_arg0); end
|
|
135
|
+
def inspect; end
|
|
136
|
+
def keyword_init?; end
|
|
137
|
+
def members; end
|
|
138
|
+
def new(*_arg0); end
|
|
139
|
+
end
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# source://lint_roller//lib/lint_roller/error.rb#2
|
|
143
|
+
class LintRoller::Error < ::StandardError; end
|
|
144
|
+
|
|
145
|
+
# source://lint_roller//lib/lint_roller/plugin.rb#2
|
|
146
|
+
class LintRoller::Plugin
|
|
147
|
+
# `config' is a Hash of options passed to the plugin by the user
|
|
148
|
+
#
|
|
149
|
+
# @return [Plugin] a new instance of Plugin
|
|
150
|
+
#
|
|
151
|
+
# source://lint_roller//lib/lint_roller/plugin.rb#4
|
|
152
|
+
def initialize(config = T.unsafe(nil)); end
|
|
153
|
+
|
|
154
|
+
# @raise [Error]
|
|
155
|
+
#
|
|
156
|
+
# source://lint_roller//lib/lint_roller/plugin.rb#8
|
|
157
|
+
def about; end
|
|
158
|
+
|
|
159
|
+
# `context' is an instance of LintRoller::Context provided by the runner
|
|
160
|
+
#
|
|
161
|
+
# @raise [Error]
|
|
162
|
+
#
|
|
163
|
+
# source://lint_roller//lib/lint_roller/plugin.rb#18
|
|
164
|
+
def rules(context); end
|
|
165
|
+
|
|
166
|
+
# `context' is an instance of LintRoller::Context provided by the runner
|
|
167
|
+
#
|
|
168
|
+
# @return [Boolean]
|
|
169
|
+
#
|
|
170
|
+
# source://lint_roller//lib/lint_roller/plugin.rb#13
|
|
171
|
+
def supported?(context); end
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
# source://lint_roller//lib/lint_roller/rules.rb#2
|
|
175
|
+
class LintRoller::Rules < ::Struct
|
|
176
|
+
# Returns the value of attribute config_format
|
|
177
|
+
#
|
|
178
|
+
# @return [Object] the current value of config_format
|
|
179
|
+
def config_format; end
|
|
180
|
+
|
|
181
|
+
# Sets the attribute config_format
|
|
182
|
+
#
|
|
183
|
+
# @param value [Object] the value to set the attribute config_format to.
|
|
184
|
+
# @return [Object] the newly set value
|
|
185
|
+
def config_format=(_); end
|
|
186
|
+
|
|
187
|
+
# Returns the value of attribute error
|
|
188
|
+
#
|
|
189
|
+
# @return [Object] the current value of error
|
|
190
|
+
def error; end
|
|
191
|
+
|
|
192
|
+
# Sets the attribute error
|
|
193
|
+
#
|
|
194
|
+
# @param value [Object] the value to set the attribute error to.
|
|
195
|
+
# @return [Object] the newly set value
|
|
196
|
+
def error=(_); end
|
|
197
|
+
|
|
198
|
+
# Returns the value of attribute type
|
|
199
|
+
#
|
|
200
|
+
# @return [Object] the current value of type
|
|
201
|
+
def type; end
|
|
202
|
+
|
|
203
|
+
# Sets the attribute type
|
|
204
|
+
#
|
|
205
|
+
# @param value [Object] the value to set the attribute type to.
|
|
206
|
+
# @return [Object] the newly set value
|
|
207
|
+
def type=(_); end
|
|
208
|
+
|
|
209
|
+
# Returns the value of attribute value
|
|
210
|
+
#
|
|
211
|
+
# @return [Object] the current value of value
|
|
212
|
+
def value; end
|
|
213
|
+
|
|
214
|
+
# Sets the attribute value
|
|
215
|
+
#
|
|
216
|
+
# @param value [Object] the value to set the attribute value to.
|
|
217
|
+
# @return [Object] the newly set value
|
|
218
|
+
def value=(_); end
|
|
219
|
+
|
|
220
|
+
class << self
|
|
221
|
+
def [](*_arg0); end
|
|
222
|
+
def inspect; end
|
|
223
|
+
def keyword_init?; end
|
|
224
|
+
def members; end
|
|
225
|
+
def new(*_arg0); end
|
|
226
|
+
end
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
# source://lint_roller//lib/lint_roller/support/merges_upstream_metadata.rb#2
|
|
230
|
+
module LintRoller::Support; end
|
|
231
|
+
|
|
232
|
+
# source://lint_roller//lib/lint_roller/support/merges_upstream_metadata.rb#3
|
|
233
|
+
class LintRoller::Support::MergesUpstreamMetadata
|
|
234
|
+
# source://lint_roller//lib/lint_roller/support/merges_upstream_metadata.rb#4
|
|
235
|
+
def merge(plugin_yaml, upstream_yaml); end
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
# source://lint_roller//lib/lint_roller/version.rb#2
|
|
239
|
+
LintRoller::VERSION = T.let(T.unsafe(nil), String)
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
# typed: true
|
|
2
|
+
|
|
3
|
+
# DO NOT EDIT MANUALLY
|
|
4
|
+
# This is an autogenerated file for types exported from the `method_source` gem.
|
|
5
|
+
# Please instead update this file by running `bin/tapioca gem method_source`.
|
|
6
|
+
|
|
7
|
+
# source://method_source//lib/method_source.rb#127
|
|
8
|
+
class Method
|
|
9
|
+
include ::MethodSource::SourceLocation::MethodExtensions
|
|
10
|
+
include ::MethodSource::MethodExtensions
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
# source://method_source//lib/method_source/version.rb#1
|
|
14
|
+
module MethodSource
|
|
15
|
+
extend ::MethodSource::CodeHelpers
|
|
16
|
+
|
|
17
|
+
class << self
|
|
18
|
+
# Helper method responsible for opening source file and buffering up
|
|
19
|
+
# the comments for a specified method. Defined here to avoid polluting
|
|
20
|
+
# `Method` class.
|
|
21
|
+
#
|
|
22
|
+
# @param source_location [Array] The array returned by Method#source_location
|
|
23
|
+
# @param method_name [String]
|
|
24
|
+
# @raise [SourceNotFoundError]
|
|
25
|
+
# @return [String] The comments up to the point of the method.
|
|
26
|
+
#
|
|
27
|
+
# source://method_source//lib/method_source.rb#38
|
|
28
|
+
def comment_helper(source_location, name = T.unsafe(nil)); end
|
|
29
|
+
|
|
30
|
+
# @deprecated — use MethodSource::CodeHelpers#expression_at
|
|
31
|
+
#
|
|
32
|
+
# source://method_source//lib/method_source.rb#66
|
|
33
|
+
def extract_code(source_location); end
|
|
34
|
+
|
|
35
|
+
# Load a memoized copy of the lines in a file.
|
|
36
|
+
#
|
|
37
|
+
# @param file_name [String]
|
|
38
|
+
# @param method_name [String]
|
|
39
|
+
# @raise [SourceNotFoundError]
|
|
40
|
+
# @return [Array<String>] the contents of the file
|
|
41
|
+
#
|
|
42
|
+
# source://method_source//lib/method_source.rb#51
|
|
43
|
+
def lines_for(file_name, name = T.unsafe(nil)); end
|
|
44
|
+
|
|
45
|
+
# Helper method responsible for extracting method body.
|
|
46
|
+
# Defined here to avoid polluting `Method` class.
|
|
47
|
+
#
|
|
48
|
+
# @param source_location [Array] The array returned by Method#source_location
|
|
49
|
+
# @param method_name [String]
|
|
50
|
+
# @return [String] The method body
|
|
51
|
+
#
|
|
52
|
+
# source://method_source//lib/method_source.rb#23
|
|
53
|
+
def source_helper(source_location, name = T.unsafe(nil)); end
|
|
54
|
+
|
|
55
|
+
# @deprecated — use MethodSource::CodeHelpers#complete_expression?
|
|
56
|
+
# @return [Boolean]
|
|
57
|
+
#
|
|
58
|
+
# source://method_source//lib/method_source.rb#59
|
|
59
|
+
def valid_expression?(str); end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# source://method_source//lib/method_source/code_helpers.rb#3
|
|
64
|
+
module MethodSource::CodeHelpers
|
|
65
|
+
# Retrieve the comment describing the expression on the given line of the given file.
|
|
66
|
+
#
|
|
67
|
+
# This is useful to get module or method documentation.
|
|
68
|
+
#
|
|
69
|
+
# @param file [Array<String>, File, String] The file to parse, either as a File or as
|
|
70
|
+
# a String or an Array of lines.
|
|
71
|
+
# @param line_number [Integer] The line number at which to look.
|
|
72
|
+
# NOTE: The first line in a file is line 1!
|
|
73
|
+
# @return [String] The comment
|
|
74
|
+
#
|
|
75
|
+
# source://method_source//lib/method_source/code_helpers.rb#52
|
|
76
|
+
def comment_describing(file, line_number); end
|
|
77
|
+
|
|
78
|
+
# Determine if a string of code is a complete Ruby expression.
|
|
79
|
+
#
|
|
80
|
+
# @example
|
|
81
|
+
# complete_expression?("class Hello") #=> false
|
|
82
|
+
# complete_expression?("class Hello; end") #=> true
|
|
83
|
+
# complete_expression?("class 123") #=> SyntaxError: unexpected tINTEGER
|
|
84
|
+
# @param code [String] The code to validate.
|
|
85
|
+
# @raise [SyntaxError] Any SyntaxError that does not represent incompleteness.
|
|
86
|
+
# @return [Boolean] Whether or not the code is a complete Ruby expression.
|
|
87
|
+
#
|
|
88
|
+
# source://method_source//lib/method_source/code_helpers.rb#66
|
|
89
|
+
def complete_expression?(str); end
|
|
90
|
+
|
|
91
|
+
# Retrieve the first expression starting on the given line of the given file.
|
|
92
|
+
#
|
|
93
|
+
# This is useful to get module or method source code.
|
|
94
|
+
#
|
|
95
|
+
# line 1!
|
|
96
|
+
#
|
|
97
|
+
# @option options
|
|
98
|
+
# @option options
|
|
99
|
+
# @param file [Array<String>, File, String] The file to parse, either as a File or as
|
|
100
|
+
# @param line_number [Integer] The line number at which to look.
|
|
101
|
+
# NOTE: The first line in a file is
|
|
102
|
+
# @param options [Hash] The optional configuration parameters.
|
|
103
|
+
# @raise [SyntaxError] If the first complete expression can't be identified
|
|
104
|
+
# @return [String] The first complete expression
|
|
105
|
+
#
|
|
106
|
+
# source://method_source//lib/method_source/code_helpers.rb#20
|
|
107
|
+
def expression_at(file, line_number, options = T.unsafe(nil)); end
|
|
108
|
+
|
|
109
|
+
private
|
|
110
|
+
|
|
111
|
+
# Get the first expression from the input.
|
|
112
|
+
#
|
|
113
|
+
# @param lines [Array<String>]
|
|
114
|
+
# @param consume [Integer] A number of lines to automatically
|
|
115
|
+
# consume (add to the expression buffer) without checking for validity.
|
|
116
|
+
# @raise [SyntaxError]
|
|
117
|
+
# @return [String] a valid ruby expression
|
|
118
|
+
# @yield a clean-up function to run before checking for complete_expression
|
|
119
|
+
#
|
|
120
|
+
# source://method_source//lib/method_source/code_helpers.rb#92
|
|
121
|
+
def extract_first_expression(lines, consume = T.unsafe(nil), &block); end
|
|
122
|
+
|
|
123
|
+
# Get the last comment from the input.
|
|
124
|
+
#
|
|
125
|
+
# @param lines [Array<String>]
|
|
126
|
+
# @return [String]
|
|
127
|
+
#
|
|
128
|
+
# source://method_source//lib/method_source/code_helpers.rb#106
|
|
129
|
+
def extract_last_comment(lines); end
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
# An exception matcher that matches only subsets of SyntaxErrors that can be
|
|
133
|
+
# fixed by adding more input to the buffer.
|
|
134
|
+
#
|
|
135
|
+
# source://method_source//lib/method_source/code_helpers.rb#124
|
|
136
|
+
module MethodSource::CodeHelpers::IncompleteExpression
|
|
137
|
+
class << self
|
|
138
|
+
# source://method_source//lib/method_source/code_helpers.rb#137
|
|
139
|
+
def ===(ex); end
|
|
140
|
+
|
|
141
|
+
# @return [Boolean]
|
|
142
|
+
#
|
|
143
|
+
# source://method_source//lib/method_source/code_helpers.rb#149
|
|
144
|
+
def rbx?; end
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
# source://method_source//lib/method_source/code_helpers.rb#125
|
|
149
|
+
MethodSource::CodeHelpers::IncompleteExpression::GENERIC_REGEXPS = T.let(T.unsafe(nil), Array)
|
|
150
|
+
|
|
151
|
+
# source://method_source//lib/method_source/code_helpers.rb#133
|
|
152
|
+
MethodSource::CodeHelpers::IncompleteExpression::RBX_ONLY_REGEXPS = T.let(T.unsafe(nil), Array)
|
|
153
|
+
|
|
154
|
+
# This module is to be included by `Method` and `UnboundMethod` and
|
|
155
|
+
# provides the `#source` functionality
|
|
156
|
+
#
|
|
157
|
+
# source://method_source//lib/method_source.rb#72
|
|
158
|
+
module MethodSource::MethodExtensions
|
|
159
|
+
# Return the comments associated with the method as a string.
|
|
160
|
+
#
|
|
161
|
+
# @example
|
|
162
|
+
# Set.instance_method(:clear).comment.display
|
|
163
|
+
# =>
|
|
164
|
+
# # Removes all elements and returns self.
|
|
165
|
+
# @raise SourceNotFoundException
|
|
166
|
+
# @return [String] The method's comments as a string
|
|
167
|
+
#
|
|
168
|
+
# source://method_source//lib/method_source.rb#121
|
|
169
|
+
def comment; end
|
|
170
|
+
|
|
171
|
+
# Return the sourcecode for the method as a string
|
|
172
|
+
#
|
|
173
|
+
# @example
|
|
174
|
+
# Set.instance_method(:clear).source.display
|
|
175
|
+
# =>
|
|
176
|
+
# def clear
|
|
177
|
+
# @hash.clear
|
|
178
|
+
# self
|
|
179
|
+
# end
|
|
180
|
+
# @raise SourceNotFoundException
|
|
181
|
+
# @return [String] The method sourcecode as a string
|
|
182
|
+
#
|
|
183
|
+
# source://method_source//lib/method_source.rb#109
|
|
184
|
+
def source; end
|
|
185
|
+
|
|
186
|
+
class << self
|
|
187
|
+
# We use the included hook to patch Method#source on rubinius.
|
|
188
|
+
# We need to use the included hook as Rubinius defines a `source`
|
|
189
|
+
# on Method so including a module will have no effect (as it's
|
|
190
|
+
# higher up the MRO).
|
|
191
|
+
#
|
|
192
|
+
# @param klass [Class] The class that includes the module.
|
|
193
|
+
#
|
|
194
|
+
# source://method_source//lib/method_source.rb#79
|
|
195
|
+
def included(klass); end
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
# source://method_source//lib/method_source/source_location.rb#2
|
|
200
|
+
module MethodSource::ReeSourceLocation
|
|
201
|
+
# Ruby enterprise edition provides all the information that's
|
|
202
|
+
# needed, in a slightly different way.
|
|
203
|
+
#
|
|
204
|
+
# source://method_source//lib/method_source/source_location.rb#5
|
|
205
|
+
def source_location; end
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
# source://method_source//lib/method_source/source_location.rb#10
|
|
209
|
+
module MethodSource::SourceLocation; end
|
|
210
|
+
|
|
211
|
+
# source://method_source//lib/method_source/source_location.rb#11
|
|
212
|
+
module MethodSource::SourceLocation::MethodExtensions
|
|
213
|
+
# Return the source location of a method for Ruby 1.8.
|
|
214
|
+
#
|
|
215
|
+
# @return [Array] A two element array. First element is the
|
|
216
|
+
# file, second element is the line in the file where the
|
|
217
|
+
# method definition is found.
|
|
218
|
+
#
|
|
219
|
+
# source://method_source//lib/method_source/source_location.rb#40
|
|
220
|
+
def source_location; end
|
|
221
|
+
|
|
222
|
+
private
|
|
223
|
+
|
|
224
|
+
# source://method_source//lib/method_source/source_location.rb#26
|
|
225
|
+
def trace_func(event, file, line, id, binding, classname); end
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# source://method_source//lib/method_source/source_location.rb#54
|
|
229
|
+
module MethodSource::SourceLocation::ProcExtensions
|
|
230
|
+
# Return the source location for a Proc (in implementations
|
|
231
|
+
# without Proc#source_location)
|
|
232
|
+
#
|
|
233
|
+
# @return [Array] A two element array. First element is the
|
|
234
|
+
# file, second element is the line in the file where the
|
|
235
|
+
# proc definition is found.
|
|
236
|
+
#
|
|
237
|
+
# source://method_source//lib/method_source/source_location.rb#74
|
|
238
|
+
def source_location; end
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
# source://method_source//lib/method_source/source_location.rb#81
|
|
242
|
+
module MethodSource::SourceLocation::UnboundMethodExtensions
|
|
243
|
+
# Return the source location of an instance method for Ruby 1.8.
|
|
244
|
+
#
|
|
245
|
+
# @return [Array] A two element array. First element is the
|
|
246
|
+
# file, second element is the line in the file where the
|
|
247
|
+
# method definition is found.
|
|
248
|
+
#
|
|
249
|
+
# source://method_source//lib/method_source/source_location.rb#101
|
|
250
|
+
def source_location; end
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
# An Exception to mark errors that were raised trying to find the source from
|
|
254
|
+
# a given source_location.
|
|
255
|
+
#
|
|
256
|
+
# source://method_source//lib/method_source.rb#16
|
|
257
|
+
class MethodSource::SourceNotFoundError < ::StandardError; end
|
|
258
|
+
|
|
259
|
+
# source://method_source//lib/method_source/version.rb#2
|
|
260
|
+
MethodSource::VERSION = T.let(T.unsafe(nil), String)
|
|
261
|
+
|
|
262
|
+
# source://method_source//lib/method_source.rb#137
|
|
263
|
+
class Proc
|
|
264
|
+
include ::MethodSource::SourceLocation::ProcExtensions
|
|
265
|
+
include ::MethodSource::MethodExtensions
|
|
266
|
+
end
|
|
267
|
+
|
|
268
|
+
# source://method_source//lib/method_source.rb#132
|
|
269
|
+
class UnboundMethod
|
|
270
|
+
include ::MethodSource::SourceLocation::UnboundMethodExtensions
|
|
271
|
+
include ::MethodSource::MethodExtensions
|
|
272
|
+
end
|
|
@@ -0,0 +1,158 @@
|
|
|
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
|
+
# source://netrc//lib/netrc.rb#3
|
|
8
|
+
class Netrc
|
|
9
|
+
# @return [Netrc] a new instance of Netrc
|
|
10
|
+
#
|
|
11
|
+
# source://netrc//lib/netrc.rb#166
|
|
12
|
+
def initialize(path, data); end
|
|
13
|
+
|
|
14
|
+
# source://netrc//lib/netrc.rb#180
|
|
15
|
+
def [](k); end
|
|
16
|
+
|
|
17
|
+
# source://netrc//lib/netrc.rb#188
|
|
18
|
+
def []=(k, info); end
|
|
19
|
+
|
|
20
|
+
# source://netrc//lib/netrc.rb#200
|
|
21
|
+
def delete(key); end
|
|
22
|
+
|
|
23
|
+
# source://netrc//lib/netrc.rb#211
|
|
24
|
+
def each(&block); end
|
|
25
|
+
|
|
26
|
+
# source://netrc//lib/netrc.rb#196
|
|
27
|
+
def length; end
|
|
28
|
+
|
|
29
|
+
# source://netrc//lib/netrc.rb#215
|
|
30
|
+
def new_item(m, l, p); end
|
|
31
|
+
|
|
32
|
+
# Returns the value of attribute new_item_prefix.
|
|
33
|
+
#
|
|
34
|
+
# source://netrc//lib/netrc.rb#178
|
|
35
|
+
def new_item_prefix; end
|
|
36
|
+
|
|
37
|
+
# Sets the attribute new_item_prefix
|
|
38
|
+
#
|
|
39
|
+
# @param value the value to set the attribute new_item_prefix to.
|
|
40
|
+
#
|
|
41
|
+
# source://netrc//lib/netrc.rb#178
|
|
42
|
+
def new_item_prefix=(_arg0); end
|
|
43
|
+
|
|
44
|
+
# source://netrc//lib/netrc.rb#219
|
|
45
|
+
def save; end
|
|
46
|
+
|
|
47
|
+
# source://netrc//lib/netrc.rb#233
|
|
48
|
+
def unparse; end
|
|
49
|
+
|
|
50
|
+
class << self
|
|
51
|
+
# source://netrc//lib/netrc.rb#42
|
|
52
|
+
def check_permissions(path); end
|
|
53
|
+
|
|
54
|
+
# source://netrc//lib/netrc.rb#33
|
|
55
|
+
def config; end
|
|
56
|
+
|
|
57
|
+
# @yield [self.config]
|
|
58
|
+
#
|
|
59
|
+
# source://netrc//lib/netrc.rb#37
|
|
60
|
+
def configure; end
|
|
61
|
+
|
|
62
|
+
# source://netrc//lib/netrc.rb#10
|
|
63
|
+
def default_path; end
|
|
64
|
+
|
|
65
|
+
# source://netrc//lib/netrc.rb#14
|
|
66
|
+
def home_path; end
|
|
67
|
+
|
|
68
|
+
# source://netrc//lib/netrc.rb#85
|
|
69
|
+
def lex(lines); end
|
|
70
|
+
|
|
71
|
+
# source://netrc//lib/netrc.rb#29
|
|
72
|
+
def netrc_filename; end
|
|
73
|
+
|
|
74
|
+
# Returns two values, a header and a list of items.
|
|
75
|
+
# Each item is a tuple, containing some or all of:
|
|
76
|
+
# - machine keyword (including trailing whitespace+comments)
|
|
77
|
+
# - machine name
|
|
78
|
+
# - login keyword (including surrounding whitespace+comments)
|
|
79
|
+
# - login
|
|
80
|
+
# - password keyword (including surrounding whitespace+comments)
|
|
81
|
+
# - password
|
|
82
|
+
# - trailing chars
|
|
83
|
+
# This lets us change individual fields, then write out the file
|
|
84
|
+
# with all its original formatting.
|
|
85
|
+
#
|
|
86
|
+
# source://netrc//lib/netrc.rb#129
|
|
87
|
+
def parse(ts); end
|
|
88
|
+
|
|
89
|
+
# Reads path and parses it as a .netrc file. If path doesn't
|
|
90
|
+
# exist, returns an empty object. Decrypt paths ending in .gpg.
|
|
91
|
+
#
|
|
92
|
+
# source://netrc//lib/netrc.rb#51
|
|
93
|
+
def read(path = T.unsafe(nil)); end
|
|
94
|
+
|
|
95
|
+
# @return [Boolean]
|
|
96
|
+
#
|
|
97
|
+
# source://netrc//lib/netrc.rb#112
|
|
98
|
+
def skip?(s); end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# source://netrc//lib/netrc.rb#8
|
|
103
|
+
Netrc::CYGWIN = T.let(T.unsafe(nil), T.untyped)
|
|
104
|
+
|
|
105
|
+
# source://netrc//lib/netrc.rb#244
|
|
106
|
+
class Netrc::Entry < ::Struct
|
|
107
|
+
# Returns the value of attribute login
|
|
108
|
+
#
|
|
109
|
+
# @return [Object] the current value of login
|
|
110
|
+
def login; end
|
|
111
|
+
|
|
112
|
+
# Sets the attribute login
|
|
113
|
+
#
|
|
114
|
+
# @param value [Object] the value to set the attribute login to.
|
|
115
|
+
# @return [Object] the newly set value
|
|
116
|
+
def login=(_); end
|
|
117
|
+
|
|
118
|
+
# Returns the value of attribute password
|
|
119
|
+
#
|
|
120
|
+
# @return [Object] the current value of password
|
|
121
|
+
def password; end
|
|
122
|
+
|
|
123
|
+
# Sets the attribute password
|
|
124
|
+
#
|
|
125
|
+
# @param value [Object] the value to set the attribute password to.
|
|
126
|
+
# @return [Object] the newly set value
|
|
127
|
+
def password=(_); end
|
|
128
|
+
|
|
129
|
+
def to_ary; end
|
|
130
|
+
|
|
131
|
+
class << self
|
|
132
|
+
def [](*_arg0); end
|
|
133
|
+
def inspect; end
|
|
134
|
+
def keyword_init?; end
|
|
135
|
+
def members; end
|
|
136
|
+
def new(*_arg0); end
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# source://netrc//lib/netrc.rb#250
|
|
141
|
+
class Netrc::Error < ::StandardError; end
|
|
142
|
+
|
|
143
|
+
# source://netrc//lib/netrc.rb#68
|
|
144
|
+
class Netrc::TokenArray < ::Array
|
|
145
|
+
# source://netrc//lib/netrc.rb#76
|
|
146
|
+
def readto; end
|
|
147
|
+
|
|
148
|
+
# source://netrc//lib/netrc.rb#69
|
|
149
|
+
def take; end
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
# source://netrc//lib/netrc.rb#4
|
|
153
|
+
Netrc::VERSION = T.let(T.unsafe(nil), String)
|
|
154
|
+
|
|
155
|
+
# see http://stackoverflow.com/questions/4871309/what-is-the-correct-way-to-detect-if-ruby-is-running-on-windows
|
|
156
|
+
#
|
|
157
|
+
# source://netrc//lib/netrc.rb#7
|
|
158
|
+
Netrc::WINDOWS = T.let(T.unsafe(nil), T.untyped)
|