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.
Files changed (43) hide show
  1. checksums.yaml +5 -5
  2. data/.circleci/config.yml +1 -1
  3. data/.rubocop.yml +25 -30
  4. data/.ruby-version +1 -1
  5. data/Gemfile.lock +51 -43
  6. data/README.md +1 -1
  7. data/docs/EnvParser/AutoregisterFileNotFound.html +9 -10
  8. data/docs/EnvParser/Error.html +8 -9
  9. data/docs/EnvParser/TypeAlreadyDefinedError.html +8 -9
  10. data/docs/EnvParser/Types/BaseTypes.html +12 -11
  11. data/docs/EnvParser/Types/ChronologyTypes.html +10 -9
  12. data/docs/EnvParser/Types/InternetTypes.html +10 -9
  13. data/docs/EnvParser/Types.html +9 -10
  14. data/docs/EnvParser/UnknownTypeError.html +8 -9
  15. data/docs/EnvParser/UnparseableAutoregisterSpec.html +9 -10
  16. data/docs/EnvParser/ValueNotAllowedError.html +10 -11
  17. data/docs/EnvParser/ValueNotConvertibleError.html +8 -10
  18. data/docs/EnvParser.html +123 -186
  19. data/docs/_index.html +8 -10
  20. data/docs/class_list.html +2 -2
  21. data/docs/css/style.css +3 -2
  22. data/docs/file.README.html +254 -284
  23. data/docs/file_list.html +2 -2
  24. data/docs/frames.html +2 -2
  25. data/docs/index.html +254 -284
  26. data/docs/js/app.js +14 -3
  27. data/docs/method_list.html +3 -11
  28. data/docs/top-level-namespace.html +7 -85
  29. data/env_parser.gemspec +14 -14
  30. data/lib/env_parser/errors.rb +18 -18
  31. data/lib/env_parser/types/base_types.rb +69 -69
  32. data/lib/env_parser/types/chronology_types.rb +54 -54
  33. data/lib/env_parser/types/internet_types.rb +51 -51
  34. data/lib/env_parser/types.rb +2 -2
  35. data/lib/env_parser/version.rb +1 -1
  36. data/lib/env_parser.rb +206 -217
  37. data/spec/env_parser/types/base_types_spec.rb +98 -0
  38. data/spec/env_parser/types/chronology_types_spec.rb +49 -0
  39. data/spec/env_parser/types/internet_types_spec.rb +45 -0
  40. data/spec/env_parser_spec.rb +192 -0
  41. data/spec/spec_helper.rb +14 -0
  42. metadata +54 -50
  43. data/.travis.yml +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c332d39f13b5bc1bb69de8ea62bf563201cf9424
4
- data.tar.gz: 3f1318fa50244fedf66831472c70482acbfbe8a9
2
+ SHA256:
3
+ metadata.gz: 9ed18608fab89fa6aa9bb3e3b32decc07572b023e83adf3bd8783775a6dca7a9
4
+ data.tar.gz: ec26291940263eba67433a3707b7572c9c57f9158821b52dff57058eb6c75455
5
5
  SHA512:
6
- metadata.gz: ded5ae799d4457095e940a2737e95fcc58177fbc574deadc02ddaaee5c52b32a8edfbaf3be2984aef994507f73a4abf4721ef32930e4178ef0fe0c9427ee9598
7
- data.tar.gz: 8e2330caa387e8425e74453b73a0b7f45251ac60de85adba8f7fa39f58f2080fab9af51c900f30656b35dc937d77e5b68d8ca6f2086a42ba75a977b28f04aa16
6
+ metadata.gz: 25b4b496c3e71fb0d70c5f84647155d5d307cce11ff4304862ae3fe618ce27a71f3bdca1f51837832889585c43da9038ee010780b3a719d4a69c5c389d227c46
7
+ data.tar.gz: d613c53aab0d3272b7302a00aff11aa79f2b6002d4ddf6aa5cace820dc95be8f4bc2d3e160dbe148eea5cc7209a1d27997e2d5410b6d66b7e51e1b0ac2ab19c3
data/.circleci/config.yml CHANGED
@@ -7,7 +7,7 @@ jobs:
7
7
  build:
8
8
  docker:
9
9
  # specify the version you desire here
10
- - image: circleci/ruby:2.4.1-node-browsers
10
+ - image: cimg/ruby:3.0
11
11
 
12
12
  # Specify service dependencies here if necessary
13
13
  # CircleCI maintains a library of pre-built images
data/.rubocop.yml CHANGED
@@ -1,24 +1,21 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.4
3
- Include:
4
- - "**/*.rb"
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
- Enabled: false
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
- # This cop checks for non-ascii (non-English) characters in comments.
35
+ # Use only ASCII symbols in comments.
45
36
  #
46
- # NLC: Disabling this so we can use non-breaking spaces (' ') in documentation comments, preventing browsers from collapsing
47
- # multiple spaces in code blocks.
48
- Enabled: false
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
- # Use nested modules/class definitions instead of compact style.
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
- Enabled: false
52
+ EnforcedStyle: never
62
53
 
63
54
  Style/NumericLiterals:
64
- # his cop checks for big numeric literals without _ between groups of digits in them.
55
+ # Add underscores to large numeric literals to improve their readability.
65
56
  Enabled: false
66
57
 
67
58
  Style/RegexpLiteral:
68
- # Enforces using / or %r around regular expressions.
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
- 2.4.2
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.0)
5
- activesupport (>= 5.0.0)
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 (5.2.3)
12
+ activesupport (7.0.4)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (>= 0.7, < 2)
15
- minitest (~> 5.1)
16
- tzinfo (~> 1.1)
17
- ast (2.4.0)
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.5)
22
- diff-lcs (1.3)
23
- i18n (1.7.0)
21
+ concurrent-ruby (1.1.10)
22
+ diff-lcs (1.5.0)
23
+ i18n (1.12.0)
24
24
  concurrent-ruby (~> 1.0)
25
- jaro_winkler (1.5.3)
26
- minitest (5.12.2)
25
+ json (2.6.3)
26
+ minitest (5.16.3)
27
27
  numerizer (0.1.1)
28
- parallel (1.18.0)
29
- parser (2.6.5.0)
30
- ast (~> 2.4.0)
31
- rainbow (3.0.0)
32
- rake (10.5.0)
33
- rspec (3.7.0)
34
- rspec-core (~> 3.7.0)
35
- rspec-expectations (~> 3.7.0)
36
- rspec-mocks (~> 3.7.0)
37
- rspec-core (3.7.0)
38
- rspec-support (~> 3.7.0)
39
- rspec-expectations (3.7.0)
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.7.0)
42
- rspec-mocks (3.7.0)
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.7.0)
45
- rspec-support (3.7.0)
46
- rspec_junit_formatter (0.3.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 (0.75.1)
49
- jaro_winkler (~> 1.5.1)
50
+ rubocop (1.40.0)
51
+ json (~> 2.3)
50
52
  parallel (~> 1.10)
51
- parser (>= 2.6)
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, < 1.7)
55
- ruby-progressbar (1.10.1)
56
- thread_safe (0.3.6)
57
- tzinfo (1.2.5)
58
- thread_safe (~> 0.1)
59
- unicode-display_width (1.6.0)
60
- yard (0.9.20)
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 (~> 1.16)
74
+ bundler (~> 2)
67
75
  env_parser!
68
- rake (~> 10.0)
69
- rspec (~> 3.0)
76
+ rake
77
+ rspec (~> 3)
70
78
  rspec_junit_formatter
71
79
  rubocop
72
80
  yard
73
81
 
74
82
  BUNDLED WITH
75
- 1.16.0
83
+ 2.3.24
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  [![Gem Version](https://img.shields.io/github/v/release/nestor-custodio/env_parser?color=green&label=gem%20version)](https://rubygems.org/gems/env_parser)
2
- [![MIT License](https://img.shields.io/github/license/nestor-custodio/env_parser)](https://github.com/nestor-custodio/env_parser/blob/master/LICENSE.txt)
2
+ [![MIT License](https://img.shields.io/github/license/nestor-custodio/env_parser)](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
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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
- <p>Error class used to indicate a missing auto-registration spec file (used by
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 Nov 3 21:30:37 2019 by
138
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
139
- 0.9.20 (ruby-2.4.2).
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>
@@ -6,15 +6,15 @@
6
6
  <title>
7
7
  Exception: EnvParser::Error
8
8
 
9
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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 Nov 3 21:30:37 2019 by
133
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
134
- 0.9.20 (ruby-2.4.2).
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
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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 Nov 3 21:30:37 2019 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.20 (ruby-2.4.2).
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
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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
- <p>Defines types for primitive classes, adding the following:</p>
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
- <p>Note JSON is parsed using <em>quirks-mode</em> (meaning &#39;true&#39;,
151
- &#39;25&#39;, and &#39;null&#39; are all considered valid, parseable JSON).</p>
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 Nov 3 21:30:37 2019 by
172
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
173
- 0.9.20 (ruby-2.4.2).
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
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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
- <p>Defines types for date/time-related values, adding the following:</p>
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 Nov 3 21:30:37 2019 by
153
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
154
- 0.9.20 (ruby-2.4.2).
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
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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
- <p>Defines types for internet-related values, adding the following:</p>
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 Nov 3 21:30:37 2019 by
153
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
154
- 0.9.20 (ruby-2.4.2).
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
8
8
 
9
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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
- <p>The parent module for all EnvParser type definition modules. Exists only
92
- for documentation&#39;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&#39;s sake.</p>
119
118
  </div>
120
119
 
121
120
  <div id="footer">
122
- Generated on Sun Nov 3 21:30:37 2019 by
123
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
124
- 0.9.20 (ruby-2.4.2).
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
- &mdash; Documentation by YARD 0.9.20
9
+ &mdash; Documentation by YARD 0.9.28
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
14
 
15
- <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
16
 
17
- <script type="text/javascript" charset="utf-8">
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 Nov 3 21:30:37 2019 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.20 (ruby-2.4.2).
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>