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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +1 -1
  3. data/.rubocop.yml +22 -35
  4. data/.ruby-version +1 -1
  5. data/Gemfile.lock +44 -42
  6. data/README.md +1 -1
  7. data/docs/EnvParser/AutoregisterFileNotFound.html +6 -6
  8. data/docs/EnvParser/Error.html +5 -6
  9. data/docs/EnvParser/TypeAlreadyDefinedError.html +5 -6
  10. data/docs/EnvParser/Types/BaseTypes.html +9 -7
  11. data/docs/EnvParser/Types/ChronologyTypes.html +7 -6
  12. data/docs/EnvParser/Types/InternetTypes.html +7 -6
  13. data/docs/EnvParser/Types.html +6 -6
  14. data/docs/EnvParser/UnknownTypeError.html +5 -6
  15. data/docs/EnvParser/UnparseableAutoregisterSpec.html +6 -6
  16. data/docs/EnvParser/ValueNotAllowedError.html +7 -6
  17. data/docs/EnvParser/ValueNotConvertibleError.html +5 -6
  18. data/docs/EnvParser.html +117 -121
  19. data/docs/_index.html +5 -7
  20. data/docs/file.README.html +241 -143
  21. data/docs/frames.html +1 -1
  22. data/docs/index.html +241 -143
  23. data/docs/method_list.html +1 -9
  24. data/docs/top-level-namespace.html +4 -82
  25. data/env_parser.gemspec +14 -14
  26. data/lib/env_parser/errors.rb +18 -18
  27. data/lib/env_parser/types/base_types.rb +69 -69
  28. data/lib/env_parser/types/chronology_types.rb +54 -54
  29. data/lib/env_parser/types/internet_types.rb +50 -50
  30. data/lib/env_parser/types.rb +2 -2
  31. data/lib/env_parser/version.rb +1 -1
  32. data/lib/env_parser.rb +205 -213
  33. data/spec/env_parser/types/base_types_spec.rb +98 -0
  34. data/spec/env_parser/types/chronology_types_spec.rb +49 -0
  35. data/spec/env_parser/types/internet_types_spec.rb +45 -0
  36. data/spec/env_parser_spec.rb +192 -0
  37. data/spec/spec_helper.rb +14 -0
  38. metadata +53 -48
  39. data/.travis.yml +0 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d6d57f56549ef5746444f13eb1b306f6d9e2b46de648a0b218ea890e0b59a79
4
- data.tar.gz: 981d6ca140586a772801ff1b705508e30c211bfe412f63260192d89fe8630e2c
3
+ metadata.gz: 9ed18608fab89fa6aa9bb3e3b32decc07572b023e83adf3bd8783775a6dca7a9
4
+ data.tar.gz: ec26291940263eba67433a3707b7572c9c57f9158821b52dff57058eb6c75455
5
5
  SHA512:
6
- metadata.gz: 2220164e6600e4f4112cdd3d575454aee82cde8a01e3fde5ab06314f6788d414d513296a75c6fe89ea074c1ccf65d418c8a8d1855057bbe06162fca374a61b06
7
- data.tar.gz: ba9946219aa484356e80e1dcac0ebbcd745f6c1cd9d94fdf24a06ca35a4deb0ce91fae9cd67ea268509820fdbc30ed2b3f03698a060008d568c87e1f45f130ce
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.7.2
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,16 +1,7 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.7
3
- NewCops: enable
2
+ TargetRubyVersion: 3.0
4
3
  SuggestExtensions: false
5
- Include:
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
- # Limit lines to 100 characters.
22
- Max: 100
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
- Enabled: false
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
- # This cop checks for non-ascii (non-English) characters in comments.
35
+ # Use only ASCII symbols in comments.
53
36
  #
54
- # NLC: Disabling this so we can use non-breaking spaces (' ') in documentation comments, preventing browsers from collapsing
55
- # multiple spaces in code blocks.
56
- Enabled: false
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
- # 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[]`.
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
- Enabled: false
52
+ EnforcedStyle: never
70
53
 
71
54
  Style/NumericLiterals:
72
- # 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.
73
56
  Enabled: false
74
57
 
75
58
  Style/RegexpLiteral:
76
- # Enforces using / or %r around regular expressions.
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
- 2.7
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.1)
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 (6.1.0)
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
- zeitwerk (~> 2.3)
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.7)
23
- diff-lcs (1.4.4)
24
- i18n (1.8.6)
21
+ concurrent-ruby (1.1.10)
22
+ diff-lcs (1.5.0)
23
+ i18n (1.12.0)
25
24
  concurrent-ruby (~> 1.0)
26
- minitest (5.14.2)
25
+ json (2.6.3)
26
+ minitest (5.16.3)
27
27
  numerizer (0.1.1)
28
- parallel (1.20.1)
29
- parser (3.0.0.0)
28
+ parallel (1.22.1)
29
+ parser (3.1.3.0)
30
30
  ast (~> 2.4.1)
31
- rainbow (3.0.0)
32
- rake (13.0.3)
33
- regexp_parser (2.0.3)
34
- rexml (3.2.4)
35
- rspec (3.10.0)
36
- rspec-core (~> 3.10.0)
37
- rspec-expectations (~> 3.10.0)
38
- rspec-mocks (~> 3.10.0)
39
- rspec-core (3.10.1)
40
- rspec-support (~> 3.10.0)
41
- rspec-expectations (3.10.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)
42
42
  diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.10.0)
44
- rspec-mocks (3.10.1)
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.10.0)
47
- rspec-support (3.10.1)
48
- rspec_junit_formatter (0.4.1)
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.7.0)
50
+ rubocop (1.40.0)
51
+ json (~> 2.3)
51
52
  parallel (~> 1.10)
52
- parser (>= 2.7.1.5)
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.2.0, < 2.0)
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, < 2.0)
59
- rubocop-ast (1.4.0)
60
- parser (>= 2.7.1.5)
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.4)
63
+ tzinfo (2.0.5)
63
64
  concurrent-ruby (~> 1.0)
64
- unicode-display_width (1.7.0)
65
- yard (0.9.26)
66
- zeitwerk (2.4.2)
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.0)
74
+ bundler (~> 2)
73
75
  env_parser!
74
76
  rake
75
- rspec (~> 3.0)
77
+ rspec (~> 3)
76
78
  rspec_junit_formatter
77
- rubocop (= 1.7)
79
+ rubocop
78
80
  yard
79
81
 
80
82
  BUNDLED WITH
81
- 2.1.4
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,7 +6,7 @@
6
6
  <title>
7
7
  Exception: EnvParser::AutoregisterFileNotFound
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <p>Error class used to indicate a missing auto-registration spec file (used by the “autoregister” feature).</p>
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 Sat Jan 2 17:31:18 2021 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.26 (ruby-2.7.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).
139
139
  </div>
140
140
 
141
141
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: EnvParser::Error
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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 Sat Jan 2 17:31:18 2021 by
133
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
134
- 0.9.26 (ruby-2.7.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,7 +6,7 @@
6
6
  <title>
7
7
  Exception: EnvParser::TypeAlreadyDefinedError
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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 Sat Jan 2 17:31:18 2021 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.26 (ruby-2.7.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,7 +6,7 @@
6
6
  <title>
7
7
  Module: EnvParser::Types::BaseTypes
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <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,7 +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;, &#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>
151
153
 
152
154
 
153
155
  </div>
@@ -167,9 +169,9 @@
167
169
  </div>
168
170
 
169
171
  <div id="footer">
170
- Generated on Sat Jan 2 17:31:18 2021 by
171
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
172
- 0.9.26 (ruby-2.7.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).
173
175
  </div>
174
176
 
175
177
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: EnvParser::Types::ChronologyTypes
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <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 Sat Jan 2 17:31:18 2021 by
153
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
154
- 0.9.26 (ruby-2.7.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,7 +6,7 @@
6
6
  <title>
7
7
  Module: EnvParser::Types::InternetTypes
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <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 Sat Jan 2 17:31:18 2021 by
153
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
154
- 0.9.26 (ruby-2.7.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,7 +6,7 @@
6
6
  <title>
7
7
  Module: EnvParser::Types
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <p>The parent module for all EnvParser type definition modules. Exists only for documentation&#39;s sake.</p>
90
+ <p>The parent module for all EnvParser type definition modules.
91
+ Exists only for documentations 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 Sat Jan 2 17:31:18 2021 by
122
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
123
- 0.9.26 (ruby-2.7.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).
124
124
  </div>
125
125
 
126
126
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: EnvParser::UnknownTypeError
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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 Sat Jan 2 17:31:18 2021 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.26 (ruby-2.7.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,7 +6,7 @@
6
6
  <title>
7
7
  Exception: EnvParser::UnparseableAutoregisterSpec
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <p>Error class used to indicate an unparseable auto-registration spec (used by the “autoregister” feature).</p>
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 Sat Jan 2 17:31:18 2021 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.26 (ruby-2.7.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).
139
139
  </div>
140
140
 
141
141
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: EnvParser::ValueNotAllowedError
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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
- <p>Error class used to indicate parsed values that do not pass user-validation, either by not being part of the given “from_set” list, or by failing the “validated_by” Proc or yield-block check.</p>
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 Sat Jan 2 17:31:18 2021 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.26 (ruby-2.7.2).
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
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; 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 Sat Jan 2 17:31:18 2021 by
137
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
- 0.9.26 (ruby-2.7.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>