env_parser 1.3.1 → 1.3.2
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/.circleci/config.yml +1 -1
- data/.rubocop.yml +22 -35
- data/.ruby-version +1 -1
- data/Gemfile.lock +44 -42
- data/README.md +1 -1
- data/docs/EnvParser/AutoregisterFileNotFound.html +6 -6
- data/docs/EnvParser/Error.html +5 -6
- data/docs/EnvParser/TypeAlreadyDefinedError.html +5 -6
- data/docs/EnvParser/Types/BaseTypes.html +9 -7
- data/docs/EnvParser/Types/ChronologyTypes.html +7 -6
- data/docs/EnvParser/Types/InternetTypes.html +7 -6
- data/docs/EnvParser/Types.html +6 -6
- data/docs/EnvParser/UnknownTypeError.html +5 -6
- data/docs/EnvParser/UnparseableAutoregisterSpec.html +6 -6
- data/docs/EnvParser/ValueNotAllowedError.html +7 -6
- data/docs/EnvParser/ValueNotConvertibleError.html +5 -6
- data/docs/EnvParser.html +117 -121
- data/docs/_index.html +5 -7
- data/docs/file.README.html +241 -143
- data/docs/frames.html +1 -1
- data/docs/index.html +241 -143
- data/docs/method_list.html +1 -9
- data/docs/top-level-namespace.html +4 -82
- data/env_parser.gemspec +14 -14
- data/lib/env_parser/errors.rb +18 -18
- data/lib/env_parser/types/base_types.rb +69 -69
- data/lib/env_parser/types/chronology_types.rb +54 -54
- data/lib/env_parser/types/internet_types.rb +50 -50
- data/lib/env_parser/types.rb +2 -2
- data/lib/env_parser/version.rb +1 -1
- data/lib/env_parser.rb +205 -213
- data/spec/env_parser/types/base_types_spec.rb +98 -0
- data/spec/env_parser/types/chronology_types_spec.rb +49 -0
- data/spec/env_parser/types/internet_types_spec.rb +45 -0
- data/spec/env_parser_spec.rb +192 -0
- data/spec/spec_helper.rb +14 -0
- metadata +53 -48
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ed18608fab89fa6aa9bb3e3b32decc07572b023e83adf3bd8783775a6dca7a9
|
4
|
+
data.tar.gz: ec26291940263eba67433a3707b7572c9c57f9158821b52dff57058eb6c75455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25b4b496c3e71fb0d70c5f84647155d5d307cce11ff4304862ae3fe618ce27a71f3bdca1f51837832889585c43da9038ee010780b3a719d4a69c5c389d227c46
|
7
|
+
data.tar.gz: d613c53aab0d3272b7302a00aff11aa79f2b6002d4ddf6aa5cace820dc95be8f4bc2d3e160dbe148eea5cc7209a1d27997e2d5410b6d66b7e51e1b0ac2ab19c3
|
data/.circleci/config.yml
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,16 +1,7 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion:
|
3
|
-
NewCops: enable
|
2
|
+
TargetRubyVersion: 3.0
|
4
3
|
SuggestExtensions: false
|
5
|
-
|
6
|
-
- "**/*.rb"
|
7
|
-
- "**/*.rake"
|
8
|
-
- "**/Gemfile"
|
9
|
-
Exclude:
|
10
|
-
- ".git/**/*"
|
11
|
-
- "tmp/**/*"
|
12
|
-
- "true/**/*"
|
13
|
-
- "vendor/**/*"
|
4
|
+
NewCops: enable
|
14
5
|
|
15
6
|
|
16
7
|
Layout/EmptyLineAfterGuardClause:
|
@@ -18,21 +9,13 @@ Layout/EmptyLineAfterGuardClause:
|
|
18
9
|
Enabled: false
|
19
10
|
|
20
11
|
Layout/LineLength:
|
21
|
-
#
|
22
|
-
Max:
|
23
|
-
Exclude:
|
24
|
-
- 'spec/**/*.rb'
|
25
|
-
|
26
|
-
|
27
|
-
Lint/ConstantDefinitionInBlock:
|
28
|
-
# Do not define constants within a block.
|
29
|
-
Exclude:
|
30
|
-
- 'spec/**/*.rb'
|
12
|
+
# Checks that line length does not exceed the configured limit.
|
13
|
+
Max: 150
|
31
14
|
|
32
15
|
|
33
16
|
Metrics/AbcSize:
|
34
17
|
# A calculated magnitude based on number of assignments, branches, and conditions.
|
35
|
-
|
18
|
+
Max: 30
|
36
19
|
|
37
20
|
Metrics/BlockLength:
|
38
21
|
# Avoid long blocks with many lines.
|
@@ -49,29 +32,33 @@ Metrics/MethodLength:
|
|
49
32
|
|
50
33
|
|
51
34
|
Style/AsciiComments:
|
52
|
-
#
|
35
|
+
# Use only ASCII symbols in comments.
|
53
36
|
#
|
54
|
-
# NLC:
|
55
|
-
# multiple spaces in code blocks.
|
56
|
-
|
57
|
-
|
58
|
-
Style/BlockDelimiters:
|
59
|
-
# Check for uses of braces or do/end around single line or multi-line blocks.
|
60
|
-
Exclude:
|
61
|
-
- 'spec/**/*.rb'
|
37
|
+
# NLC: We're allowing non-breaking spaces (' '), as they're needed to prevent
|
38
|
+
# browsers from collapsing multiple spaces in documentation code blocks.
|
39
|
+
AllowedChars:
|
40
|
+
- ' '
|
62
41
|
|
63
42
|
Style/ClassAndModuleChildren:
|
64
|
-
#
|
43
|
+
# Checks style of children classes and modules.
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
Style/FetchEnvVar:
|
47
|
+
# Suggests `ENV.fetch` for the replacement of `ENV[]`.
|
65
48
|
Enabled: false
|
66
49
|
|
67
50
|
Style/FrozenStringLiteralComment:
|
68
51
|
# Add the frozen_string_literal comment to the top of files to help transition to frozen string literals by default.
|
69
|
-
|
52
|
+
EnforcedStyle: never
|
70
53
|
|
71
54
|
Style/NumericLiterals:
|
72
|
-
#
|
55
|
+
# Add underscores to large numeric literals to improve their readability.
|
73
56
|
Enabled: false
|
74
57
|
|
75
58
|
Style/RegexpLiteral:
|
76
|
-
#
|
59
|
+
# Use / or %r around regular expressions.
|
77
60
|
EnforcedStyle: percent_r
|
61
|
+
|
62
|
+
Style/StringLiterals:
|
63
|
+
# Check for use of ' vs ".
|
64
|
+
ConsistentQuotesInMultiline: true
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0
|
data/Gemfile.lock
CHANGED
@@ -1,81 +1,83 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
env_parser (1.3.
|
5
|
-
activesupport (>=
|
4
|
+
env_parser (1.3.2)
|
5
|
+
activesupport (>= 6.1.0)
|
6
6
|
chronic
|
7
7
|
chronic_duration
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (
|
12
|
+
activesupport (7.0.4)
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
14
|
i18n (>= 1.6, < 2)
|
15
15
|
minitest (>= 5.1)
|
16
16
|
tzinfo (~> 2.0)
|
17
|
-
|
18
|
-
ast (2.4.1)
|
17
|
+
ast (2.4.2)
|
19
18
|
chronic (0.10.2)
|
20
19
|
chronic_duration (0.10.6)
|
21
20
|
numerizer (~> 0.1.1)
|
22
|
-
concurrent-ruby (1.1.
|
23
|
-
diff-lcs (1.
|
24
|
-
i18n (1.
|
21
|
+
concurrent-ruby (1.1.10)
|
22
|
+
diff-lcs (1.5.0)
|
23
|
+
i18n (1.12.0)
|
25
24
|
concurrent-ruby (~> 1.0)
|
26
|
-
|
25
|
+
json (2.6.3)
|
26
|
+
minitest (5.16.3)
|
27
27
|
numerizer (0.1.1)
|
28
|
-
parallel (1.
|
29
|
-
parser (3.
|
28
|
+
parallel (1.22.1)
|
29
|
+
parser (3.1.3.0)
|
30
30
|
ast (~> 2.4.1)
|
31
|
-
rainbow (3.
|
32
|
-
rake (13.0.
|
33
|
-
regexp_parser (2.
|
34
|
-
rexml (3.2.
|
35
|
-
rspec (3.
|
36
|
-
rspec-core (~> 3.
|
37
|
-
rspec-expectations (~> 3.
|
38
|
-
rspec-mocks (~> 3.
|
39
|
-
rspec-core (3.
|
40
|
-
rspec-support (~> 3.
|
41
|
-
rspec-expectations (3.
|
31
|
+
rainbow (3.1.1)
|
32
|
+
rake (13.0.6)
|
33
|
+
regexp_parser (2.6.1)
|
34
|
+
rexml (3.2.5)
|
35
|
+
rspec (3.12.0)
|
36
|
+
rspec-core (~> 3.12.0)
|
37
|
+
rspec-expectations (~> 3.12.0)
|
38
|
+
rspec-mocks (~> 3.12.0)
|
39
|
+
rspec-core (3.12.0)
|
40
|
+
rspec-support (~> 3.12.0)
|
41
|
+
rspec-expectations (3.12.1)
|
42
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
-
rspec-support (~> 3.
|
44
|
-
rspec-mocks (3.
|
43
|
+
rspec-support (~> 3.12.0)
|
44
|
+
rspec-mocks (3.12.1)
|
45
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
46
|
-
rspec-support (~> 3.
|
47
|
-
rspec-support (3.
|
48
|
-
rspec_junit_formatter (0.
|
46
|
+
rspec-support (~> 3.12.0)
|
47
|
+
rspec-support (3.12.0)
|
48
|
+
rspec_junit_formatter (0.6.0)
|
49
49
|
rspec-core (>= 2, < 4, != 2.12.0)
|
50
|
-
rubocop (1.
|
50
|
+
rubocop (1.40.0)
|
51
|
+
json (~> 2.3)
|
51
52
|
parallel (~> 1.10)
|
52
|
-
parser (>= 2.
|
53
|
+
parser (>= 3.1.2.1)
|
53
54
|
rainbow (>= 2.2.2, < 4.0)
|
54
55
|
regexp_parser (>= 1.8, < 3.0)
|
55
|
-
rexml
|
56
|
-
rubocop-ast (>= 1.
|
56
|
+
rexml (>= 3.2.5, < 4.0)
|
57
|
+
rubocop-ast (>= 1.23.0, < 2.0)
|
57
58
|
ruby-progressbar (~> 1.7)
|
58
|
-
unicode-display_width (>= 1.4.0, <
|
59
|
-
rubocop-ast (1.
|
60
|
-
parser (>=
|
59
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
60
|
+
rubocop-ast (1.24.0)
|
61
|
+
parser (>= 3.1.1.0)
|
61
62
|
ruby-progressbar (1.11.0)
|
62
|
-
tzinfo (2.0.
|
63
|
+
tzinfo (2.0.5)
|
63
64
|
concurrent-ruby (~> 1.0)
|
64
|
-
unicode-display_width (
|
65
|
-
|
66
|
-
|
65
|
+
unicode-display_width (2.3.0)
|
66
|
+
webrick (1.7.0)
|
67
|
+
yard (0.9.28)
|
68
|
+
webrick (~> 1.7.0)
|
67
69
|
|
68
70
|
PLATFORMS
|
69
71
|
ruby
|
70
72
|
|
71
73
|
DEPENDENCIES
|
72
|
-
bundler (~> 2
|
74
|
+
bundler (~> 2)
|
73
75
|
env_parser!
|
74
76
|
rake
|
75
|
-
rspec (~> 3
|
77
|
+
rspec (~> 3)
|
76
78
|
rspec_junit_formatter
|
77
|
-
rubocop
|
79
|
+
rubocop
|
78
80
|
yard
|
79
81
|
|
80
82
|
BUNDLED WITH
|
81
|
-
2.
|
83
|
+
2.3.24
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
[](https://rubygems.org/gems/env_parser)
|
2
|
-
[](https://github.com/nestor-custodio/env_parser/blob/
|
2
|
+
[](https://github.com/nestor-custodio/env_parser/blob/main/LICENSE.txt)
|
3
3
|
|
4
4
|
|
5
5
|
# EnvParser
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::AutoregisterFileNotFound
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -105,8 +105,8 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
|
108
|
+
<p>Error class used to indicate a missing auto-registration spec file (used by the “autoregister”
|
109
|
+
feature).</p>
|
110
110
|
|
111
111
|
|
112
112
|
</div>
|
@@ -133,9 +133,9 @@
|
|
133
133
|
</div>
|
134
134
|
|
135
135
|
<div id="footer">
|
136
|
-
Generated on
|
137
|
-
<a href="
|
138
|
-
0.9.
|
136
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
137
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
138
|
+
0.9.28 (ruby-3.0.4).
|
139
139
|
</div>
|
140
140
|
|
141
141
|
</div>
|
data/docs/EnvParser/Error.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::Error
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -103,8 +103,7 @@
|
|
103
103
|
|
104
104
|
<h2>Overview</h2><div class="docstring">
|
105
105
|
<div class="discussion">
|
106
|
-
|
107
|
-
<p>Base error class for EnvParser.</p>
|
106
|
+
<p>Base error class for EnvParser.</p>
|
108
107
|
|
109
108
|
|
110
109
|
</div>
|
@@ -129,9 +128,9 @@
|
|
129
128
|
</div>
|
130
129
|
|
131
130
|
<div id="footer">
|
132
|
-
Generated on
|
133
|
-
<a href="
|
134
|
-
0.9.
|
131
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
132
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
133
|
+
0.9.28 (ruby-3.0.4).
|
135
134
|
</div>
|
136
135
|
|
137
136
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::TypeAlreadyDefinedError
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -105,8 +105,7 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
<p>Error class used to indicate a type has already been defined.</p>
|
108
|
+
<p>Error class used to indicate a type has already been defined.</p>
|
110
109
|
|
111
110
|
|
112
111
|
</div>
|
@@ -133,9 +132,9 @@
|
|
133
132
|
</div>
|
134
133
|
|
135
134
|
<div id="footer">
|
136
|
-
Generated on
|
137
|
-
<a href="
|
138
|
-
0.9.
|
135
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
136
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
137
|
+
0.9.28 (ruby-3.0.4).
|
139
138
|
</div>
|
140
139
|
|
141
140
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Module: EnvParser::Types::BaseTypes
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -85,8 +85,8 @@
|
|
85
85
|
|
86
86
|
<h2>Overview</h2><div class="docstring">
|
87
87
|
<div class="discussion">
|
88
|
-
|
89
|
-
|
88
|
+
<p>Defines types for primitive classes, adding the following:</p>
|
89
|
+
|
90
90
|
<table>
|
91
91
|
<tbody>
|
92
92
|
<tr>
|
@@ -147,7 +147,9 @@
|
|
147
147
|
</tr>
|
148
148
|
</tbody>
|
149
149
|
</table>
|
150
|
-
|
150
|
+
|
151
|
+
<p>Note JSON is parsed using <em>quirks-mode</em> (meaning ‘true’, ‘25’, and ‘null’ are all considered
|
152
|
+
valid, parseable JSON).</p>
|
151
153
|
|
152
154
|
|
153
155
|
</div>
|
@@ -167,9 +169,9 @@
|
|
167
169
|
</div>
|
168
170
|
|
169
171
|
<div id="footer">
|
170
|
-
Generated on
|
171
|
-
<a href="
|
172
|
-
0.9.
|
172
|
+
Generated on Sun Dec 25 19:19:23 2022 by
|
173
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
174
|
+
0.9.28 (ruby-3.0.4).
|
173
175
|
</div>
|
174
176
|
|
175
177
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Module: EnvParser::Types::ChronologyTypes
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -85,8 +85,8 @@
|
|
85
85
|
|
86
86
|
<h2>Overview</h2><div class="docstring">
|
87
87
|
<div class="discussion">
|
88
|
-
|
89
|
-
|
88
|
+
<p>Defines types for date/time-related values, adding the following:</p>
|
89
|
+
|
90
90
|
<table>
|
91
91
|
<tbody>
|
92
92
|
<tr>
|
@@ -132,6 +132,7 @@
|
|
132
132
|
</tbody>
|
133
133
|
</table>
|
134
134
|
|
135
|
+
|
135
136
|
</div>
|
136
137
|
</div>
|
137
138
|
<div class="tags">
|
@@ -149,9 +150,9 @@
|
|
149
150
|
</div>
|
150
151
|
|
151
152
|
<div id="footer">
|
152
|
-
Generated on
|
153
|
-
<a href="
|
154
|
-
0.9.
|
153
|
+
Generated on Sun Dec 25 19:19:23 2022 by
|
154
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
155
|
+
0.9.28 (ruby-3.0.4).
|
155
156
|
</div>
|
156
157
|
|
157
158
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Module: EnvParser::Types::InternetTypes
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -85,8 +85,8 @@
|
|
85
85
|
|
86
86
|
<h2>Overview</h2><div class="docstring">
|
87
87
|
<div class="discussion">
|
88
|
-
|
89
|
-
|
88
|
+
<p>Defines types for internet-related values, adding the following:</p>
|
89
|
+
|
90
90
|
<table>
|
91
91
|
<tbody>
|
92
92
|
<tr>
|
@@ -132,6 +132,7 @@
|
|
132
132
|
</tbody>
|
133
133
|
</table>
|
134
134
|
|
135
|
+
|
135
136
|
</div>
|
136
137
|
</div>
|
137
138
|
<div class="tags">
|
@@ -149,9 +150,9 @@
|
|
149
150
|
</div>
|
150
151
|
|
151
152
|
<div id="footer">
|
152
|
-
Generated on
|
153
|
-
<a href="
|
154
|
-
0.9.
|
153
|
+
Generated on Sun Dec 25 19:19:23 2022 by
|
154
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
155
|
+
0.9.28 (ruby-3.0.4).
|
155
156
|
</div>
|
156
157
|
|
157
158
|
</div>
|
data/docs/EnvParser/Types.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Module: EnvParser::Types
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -87,8 +87,8 @@
|
|
87
87
|
|
88
88
|
<h2>Overview</h2><div class="docstring">
|
89
89
|
<div class="discussion">
|
90
|
-
|
91
|
-
|
90
|
+
<p>The parent module for all EnvParser type definition modules.
|
91
|
+
Exists only for documentation’s sake.</p>
|
92
92
|
|
93
93
|
|
94
94
|
</div>
|
@@ -118,9 +118,9 @@
|
|
118
118
|
</div>
|
119
119
|
|
120
120
|
<div id="footer">
|
121
|
-
Generated on
|
122
|
-
<a href="
|
123
|
-
0.9.
|
121
|
+
Generated on Sun Dec 25 19:19:23 2022 by
|
122
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
123
|
+
0.9.28 (ruby-3.0.4).
|
124
124
|
</div>
|
125
125
|
|
126
126
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::UnknownTypeError
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -105,8 +105,7 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
<p>Error class used to indicate the requested “as” type has not been defined.</p>
|
108
|
+
<p>Error class used to indicate the requested “as” type has not been defined.</p>
|
110
109
|
|
111
110
|
|
112
111
|
</div>
|
@@ -133,9 +132,9 @@
|
|
133
132
|
</div>
|
134
133
|
|
135
134
|
<div id="footer">
|
136
|
-
Generated on
|
137
|
-
<a href="
|
138
|
-
0.9.
|
135
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
136
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
137
|
+
0.9.28 (ruby-3.0.4).
|
139
138
|
</div>
|
140
139
|
|
141
140
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::UnparseableAutoregisterSpec
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -105,8 +105,8 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
|
108
|
+
<p>Error class used to indicate an unparseable auto-registration spec (used by the “autoregister”
|
109
|
+
feature).</p>
|
110
110
|
|
111
111
|
|
112
112
|
</div>
|
@@ -133,9 +133,9 @@
|
|
133
133
|
</div>
|
134
134
|
|
135
135
|
<div id="footer">
|
136
|
-
Generated on
|
137
|
-
<a href="
|
138
|
-
0.9.
|
136
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
137
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
138
|
+
0.9.28 (ruby-3.0.4).
|
139
139
|
</div>
|
140
140
|
|
141
141
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::ValueNotAllowedError
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -105,8 +105,9 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
|
108
|
+
<p>Error class used to indicate parsed values that do not pass user-validation, either by not
|
109
|
+
being part of the given “from_set” list, or by failing the “validated_by” Proc or yield-block
|
110
|
+
check.</p>
|
110
111
|
|
111
112
|
|
112
113
|
</div>
|
@@ -133,9 +134,9 @@
|
|
133
134
|
</div>
|
134
135
|
|
135
136
|
<div id="footer">
|
136
|
-
Generated on
|
137
|
-
<a href="
|
138
|
-
0.9.
|
137
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
138
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
139
|
+
0.9.28 (ruby-3.0.4).
|
139
140
|
</div>
|
140
141
|
|
141
142
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
Exception: EnvParser::ValueNotConvertibleError
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.28
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -105,8 +105,7 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
<p>Error class used to indicate value given is not convertible to the requested type.</p>
|
108
|
+
<p>Error class used to indicate value given is not convertible to the requested type.</p>
|
110
109
|
|
111
110
|
|
112
111
|
</div>
|
@@ -133,9 +132,9 @@
|
|
133
132
|
</div>
|
134
133
|
|
135
134
|
<div id="footer">
|
136
|
-
Generated on
|
137
|
-
<a href="
|
138
|
-
0.9.
|
135
|
+
Generated on Sun Dec 25 19:19:24 2022 by
|
136
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
137
|
+
0.9.28 (ruby-3.0.4).
|
139
138
|
</div>
|
140
139
|
|
141
140
|
</div>
|