env_parser 1.3.0 → 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 +5 -5
- data/.circleci/config.yml +1 -1
- data/.rubocop.yml +25 -30
- data/.ruby-version +1 -1
- data/Gemfile.lock +51 -43
- data/README.md +1 -1
- data/docs/EnvParser/AutoregisterFileNotFound.html +9 -10
- data/docs/EnvParser/Error.html +8 -9
- data/docs/EnvParser/TypeAlreadyDefinedError.html +8 -9
- data/docs/EnvParser/Types/BaseTypes.html +12 -11
- data/docs/EnvParser/Types/ChronologyTypes.html +10 -9
- data/docs/EnvParser/Types/InternetTypes.html +10 -9
- data/docs/EnvParser/Types.html +9 -10
- data/docs/EnvParser/UnknownTypeError.html +8 -9
- data/docs/EnvParser/UnparseableAutoregisterSpec.html +9 -10
- data/docs/EnvParser/ValueNotAllowedError.html +10 -11
- data/docs/EnvParser/ValueNotConvertibleError.html +8 -10
- data/docs/EnvParser.html +123 -186
- data/docs/_index.html +8 -10
- data/docs/class_list.html +2 -2
- data/docs/css/style.css +3 -2
- data/docs/file.README.html +254 -284
- data/docs/file_list.html +2 -2
- data/docs/frames.html +2 -2
- data/docs/index.html +254 -284
- data/docs/js/app.js +14 -3
- data/docs/method_list.html +3 -11
- data/docs/top-level-namespace.html +7 -85
- 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 +51 -51
- data/lib/env_parser/types.rb +2 -2
- data/lib/env_parser/version.rb +1 -1
- data/lib/env_parser.rb +206 -217
- 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 +54 -50
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
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,24 +1,21 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion:
|
3
|
-
|
4
|
-
|
5
|
-
- "**/*.rake"
|
6
|
-
- "**/Gemfile"
|
7
|
-
Exclude:
|
8
|
-
- ".git/**/*"
|
9
|
-
- "tmp/**/*"
|
10
|
-
- "true/**/*"
|
11
|
-
- "vendor/**/*"
|
2
|
+
TargetRubyVersion: 3.0
|
3
|
+
SuggestExtensions: false
|
4
|
+
NewCops: enable
|
12
5
|
|
13
6
|
|
14
7
|
Layout/EmptyLineAfterGuardClause:
|
15
8
|
# Add empty line after guard clause.
|
16
9
|
Enabled: false
|
17
10
|
|
11
|
+
Layout/LineLength:
|
12
|
+
# Checks that line length does not exceed the configured limit.
|
13
|
+
Max: 150
|
14
|
+
|
18
15
|
|
19
16
|
Metrics/AbcSize:
|
20
17
|
# A calculated magnitude based on number of assignments, branches, and conditions.
|
21
|
-
|
18
|
+
Max: 30
|
22
19
|
|
23
20
|
Metrics/BlockLength:
|
24
21
|
# Avoid long blocks with many lines.
|
@@ -29,41 +26,39 @@ Metrics/CyclomaticComplexity:
|
|
29
26
|
# A complexity metric that is strongly correlated to the number of test cases needed to validate a method.
|
30
27
|
Max: 10
|
31
28
|
|
32
|
-
Metrics/LineLength:
|
33
|
-
# Limit lines to 100 characters.
|
34
|
-
Max: 100
|
35
|
-
Exclude:
|
36
|
-
- 'spec/**/*.rb'
|
37
|
-
|
38
29
|
Metrics/MethodLength:
|
39
30
|
# Avoid methods longer than 25 lines of code.
|
40
31
|
Max: 25
|
41
32
|
|
42
33
|
|
43
34
|
Style/AsciiComments:
|
44
|
-
#
|
35
|
+
# Use only ASCII symbols in comments.
|
45
36
|
#
|
46
|
-
# NLC:
|
47
|
-
# multiple spaces in code blocks.
|
48
|
-
|
49
|
-
|
50
|
-
Style/BlockDelimiters:
|
51
|
-
# Check for uses of braces or do/end around single line or multi-line blocks.
|
52
|
-
Exclude:
|
53
|
-
- '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
|
+
- ' '
|
54
41
|
|
55
42
|
Style/ClassAndModuleChildren:
|
56
|
-
#
|
43
|
+
# Checks style of children classes and modules.
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
Style/FetchEnvVar:
|
47
|
+
# Suggests `ENV.fetch` for the replacement of `ENV[]`.
|
57
48
|
Enabled: false
|
58
49
|
|
59
50
|
Style/FrozenStringLiteralComment:
|
60
51
|
# Add the frozen_string_literal comment to the top of files to help transition to frozen string literals by default.
|
61
|
-
|
52
|
+
EnforcedStyle: never
|
62
53
|
|
63
54
|
Style/NumericLiterals:
|
64
|
-
#
|
55
|
+
# Add underscores to large numeric literals to improve their readability.
|
65
56
|
Enabled: false
|
66
57
|
|
67
58
|
Style/RegexpLiteral:
|
68
|
-
#
|
59
|
+
# Use / or %r around regular expressions.
|
69
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,75 +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
|
-
i18n (>=
|
15
|
-
minitest (
|
16
|
-
tzinfo (~>
|
17
|
-
ast (2.4.
|
14
|
+
i18n (>= 1.6, < 2)
|
15
|
+
minitest (>= 5.1)
|
16
|
+
tzinfo (~> 2.0)
|
17
|
+
ast (2.4.2)
|
18
18
|
chronic (0.10.2)
|
19
19
|
chronic_duration (0.10.6)
|
20
20
|
numerizer (~> 0.1.1)
|
21
|
-
concurrent-ruby (1.1.
|
22
|
-
diff-lcs (1.
|
23
|
-
i18n (1.
|
21
|
+
concurrent-ruby (1.1.10)
|
22
|
+
diff-lcs (1.5.0)
|
23
|
+
i18n (1.12.0)
|
24
24
|
concurrent-ruby (~> 1.0)
|
25
|
-
|
26
|
-
minitest (5.
|
25
|
+
json (2.6.3)
|
26
|
+
minitest (5.16.3)
|
27
27
|
numerizer (0.1.1)
|
28
|
-
parallel (1.
|
29
|
-
parser (
|
30
|
-
ast (~> 2.4.
|
31
|
-
rainbow (3.
|
32
|
-
rake (
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
rspec-
|
37
|
-
|
38
|
-
rspec-
|
39
|
-
rspec-
|
28
|
+
parallel (1.22.1)
|
29
|
+
parser (3.1.3.0)
|
30
|
+
ast (~> 2.4.1)
|
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)
|
40
42
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
-
rspec-support (~> 3.
|
42
|
-
rspec-mocks (3.
|
43
|
+
rspec-support (~> 3.12.0)
|
44
|
+
rspec-mocks (3.12.1)
|
43
45
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-support (3.
|
46
|
-
rspec_junit_formatter (0.
|
46
|
+
rspec-support (~> 3.12.0)
|
47
|
+
rspec-support (3.12.0)
|
48
|
+
rspec_junit_formatter (0.6.0)
|
47
49
|
rspec-core (>= 2, < 4, != 2.12.0)
|
48
|
-
rubocop (
|
49
|
-
|
50
|
+
rubocop (1.40.0)
|
51
|
+
json (~> 2.3)
|
50
52
|
parallel (~> 1.10)
|
51
|
-
parser (>= 2.
|
53
|
+
parser (>= 3.1.2.1)
|
52
54
|
rainbow (>= 2.2.2, < 4.0)
|
55
|
+
regexp_parser (>= 1.8, < 3.0)
|
56
|
+
rexml (>= 3.2.5, < 4.0)
|
57
|
+
rubocop-ast (>= 1.23.0, < 2.0)
|
53
58
|
ruby-progressbar (~> 1.7)
|
54
|
-
unicode-display_width (>= 1.4.0, <
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
59
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
60
|
+
rubocop-ast (1.24.0)
|
61
|
+
parser (>= 3.1.1.0)
|
62
|
+
ruby-progressbar (1.11.0)
|
63
|
+
tzinfo (2.0.5)
|
64
|
+
concurrent-ruby (~> 1.0)
|
65
|
+
unicode-display_width (2.3.0)
|
66
|
+
webrick (1.7.0)
|
67
|
+
yard (0.9.28)
|
68
|
+
webrick (~> 1.7.0)
|
61
69
|
|
62
70
|
PLATFORMS
|
63
71
|
ruby
|
64
72
|
|
65
73
|
DEPENDENCIES
|
66
|
-
bundler (~>
|
74
|
+
bundler (~> 2)
|
67
75
|
env_parser!
|
68
|
-
rake
|
69
|
-
rspec (~> 3
|
76
|
+
rake
|
77
|
+
rspec (~> 3)
|
70
78
|
rspec_junit_formatter
|
71
79
|
rubocop
|
72
80
|
yard
|
73
81
|
|
74
82
|
BUNDLED WITH
|
75
|
-
|
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,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::AutoregisterFileNotFound";
|
19
19
|
relpath = '../';
|
20
20
|
</script>
|
@@ -105,9 +105,8 @@
|
|
105
105
|
|
106
106
|
<h2>Overview</h2><div class="docstring">
|
107
107
|
<div class="discussion">
|
108
|
-
|
109
|
-
|
110
|
-
the “autoregister” feature).</p>
|
108
|
+
<p>Error class used to indicate a missing auto-registration spec file (used by the “autoregister”
|
109
|
+
feature).</p>
|
111
110
|
|
112
111
|
|
113
112
|
</div>
|
@@ -134,9 +133,9 @@ the “autoregister” feature).</p>
|
|
134
133
|
</div>
|
135
134
|
|
136
135
|
<div id="footer">
|
137
|
-
Generated on Sun
|
138
|
-
<a href="
|
139
|
-
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).
|
140
139
|
</div>
|
141
140
|
|
142
141
|
</div>
|
data/docs/EnvParser/Error.html
CHANGED
@@ -6,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::Error";
|
19
19
|
relpath = '../';
|
20
20
|
</script>
|
@@ -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 Sun
|
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,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::TypeAlreadyDefinedError";
|
19
19
|
relpath = '../';
|
20
20
|
</script>
|
@@ -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 Sun
|
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,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::Types::BaseTypes";
|
19
19
|
relpath = '../../';
|
20
20
|
</script>
|
@@ -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,8 +147,9 @@
|
|
147
147
|
</tr>
|
148
148
|
</tbody>
|
149
149
|
</table>
|
150
|
-
|
151
|
-
|
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>
|
152
153
|
|
153
154
|
|
154
155
|
</div>
|
@@ -168,9 +169,9 @@
|
|
168
169
|
</div>
|
169
170
|
|
170
171
|
<div id="footer">
|
171
|
-
Generated on Sun
|
172
|
-
<a href="
|
173
|
-
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).
|
174
175
|
</div>
|
175
176
|
|
176
177
|
</div>
|
@@ -6,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::Types::ChronologyTypes";
|
19
19
|
relpath = '../../';
|
20
20
|
</script>
|
@@ -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 Sun
|
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,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::Types::InternetTypes";
|
19
19
|
relpath = '../../';
|
20
20
|
</script>
|
@@ -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 Sun
|
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,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::Types";
|
19
19
|
relpath = '../';
|
20
20
|
</script>
|
@@ -87,9 +87,8 @@
|
|
87
87
|
|
88
88
|
<h2>Overview</h2><div class="docstring">
|
89
89
|
<div class="discussion">
|
90
|
-
|
91
|
-
|
92
|
-
for documentation's sake.</p>
|
90
|
+
<p>The parent module for all EnvParser type definition modules.
|
91
|
+
Exists only for documentation’s sake.</p>
|
93
92
|
|
94
93
|
|
95
94
|
</div>
|
@@ -119,9 +118,9 @@ for documentation's sake.</p>
|
|
119
118
|
</div>
|
120
119
|
|
121
120
|
<div id="footer">
|
122
|
-
Generated on Sun
|
123
|
-
<a href="
|
124
|
-
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).
|
125
124
|
</div>
|
126
125
|
|
127
126
|
</div>
|
@@ -6,15 +6,15 @@
|
|
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
|
|
13
|
-
<link rel="stylesheet" href="../css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="../css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "EnvParser::UnknownTypeError";
|
19
19
|
relpath = '../';
|
20
20
|
</script>
|
@@ -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 Sun
|
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>
|