custom_elements_manifest_parser 0.2.7 → 0.2.8
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/.yardopts +1 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +8 -1
- data/README.md +2 -2
- data/Rakefile +4 -0
- data/lib/custom_elements_manifest_parser/version.rb +1 -1
- data/lib/custom_elements_manifest_parser.rb +6 -4
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5941c0ae977e0440541172e05578281a00b6f0f6efbef48a157ead4df426ce73
|
|
4
|
+
data.tar.gz: 2f5963abf861c2d16db39ef4ee9b463ab7065a45ab89905f1000143084c24806
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4847ce0fbe7850f8e65c9a4ac526f3b6e594ddf755a0ce13762addf89d2916e006b9d57013f3f064a344abcf467a1f5bc164035fb1ba218e0961042e5743f2b7
|
|
7
|
+
data.tar.gz: 13c3ddbfb1dab53158571506936842ece1dcf353c98020f66c471dc4caf2a28f8a05d2b93710bf167f5a42fcf8908b7d46bdc5464f2c930ec69c6b702feb491f
|
data/.yardopts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
-m markdown
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
custom_elements_manifest_parser (0.2.
|
|
4
|
+
custom_elements_manifest_parser (0.2.8)
|
|
5
5
|
dry-struct (~> 1.0)
|
|
6
6
|
dry-types (~> 1.0)
|
|
7
7
|
dry-validation (~> 1.0)
|
|
@@ -9,6 +9,7 @@ PATH
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
+
backports (3.24.1)
|
|
12
13
|
concurrent-ruby (1.2.2)
|
|
13
14
|
dry-configurable (1.1.0)
|
|
14
15
|
dry-core (~> 1.0, < 2)
|
|
@@ -49,8 +50,13 @@ GEM
|
|
|
49
50
|
zeitwerk (~> 2.6)
|
|
50
51
|
ice_nine (0.11.2)
|
|
51
52
|
minitest (5.20.0)
|
|
53
|
+
rainbow (3.1.1)
|
|
52
54
|
rake (13.0.6)
|
|
53
55
|
yard (0.9.34)
|
|
56
|
+
yard-junk (0.0.9)
|
|
57
|
+
backports (>= 3.18)
|
|
58
|
+
rainbow
|
|
59
|
+
yard
|
|
54
60
|
zeitwerk (2.6.12)
|
|
55
61
|
|
|
56
62
|
PLATFORMS
|
|
@@ -61,6 +67,7 @@ DEPENDENCIES
|
|
|
61
67
|
minitest (~> 5.0)
|
|
62
68
|
rake (~> 13.0)
|
|
63
69
|
yard
|
|
70
|
+
yard-junk (~> 0.0.9)
|
|
64
71
|
|
|
65
72
|
BUNDLED WITH
|
|
66
73
|
2.2.33
|
data/README.md
CHANGED
|
@@ -240,7 +240,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
240
240
|
|
|
241
241
|
## Contributing
|
|
242
242
|
|
|
243
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/custom_elements_manifest_parser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/
|
|
243
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/custom_elements_manifest_parser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/konnorrogers/custom_elements_manifest_parser/blob/main/CODE_OF_CONDUCT.md).
|
|
244
244
|
|
|
245
245
|
## License
|
|
246
246
|
|
|
@@ -248,4 +248,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
|
248
248
|
|
|
249
249
|
## Code of Conduct
|
|
250
250
|
|
|
251
|
-
Everyone interacting in the CustomElementsManifestParser project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
|
251
|
+
Everyone interacting in the CustomElementsManifestParser project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/konnorrogers/custom_elements_manifest_parser/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# Requires all files
|
|
4
|
-
#
|
|
5
|
-
Dir["#{__dir__}/custom_elements_manifest_parser/**/*.rb"].each { |file| require file }
|
|
4
|
+
# Dir["#{__dir__}/custom_elements_manifest_parser/**/*.rb"].each { |file| require file }
|
|
6
5
|
|
|
6
|
+
$LOAD_PATH.unshift __dir__
|
|
7
|
+
|
|
8
|
+
require "#{__dir__}/custom_elements_manifest_parser/types.rb"
|
|
9
|
+
require "#{__dir__}/custom_elements_manifest_parser/parser.rb"
|
|
10
|
+
require "#{__dir__}/custom_elements_manifest_parser/version.rb"
|
|
7
11
|
|
|
8
|
-
#
|
|
9
12
|
# Top level parser
|
|
10
13
|
module CustomElementsManifestParser
|
|
11
|
-
autoload :Parser, "custom_elements_manifest_parser/parser"
|
|
12
14
|
# Shortuct for `CustomElementsManifestParser::Parser.new().parse()`
|
|
13
15
|
# @return [CustomElementsManifestParser::Parser]
|
|
14
16
|
def self.parse(hash)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: custom_elements_manifest_parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- konnorrogers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-10-
|
|
11
|
+
date: 2023-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-struct
|
|
@@ -59,6 +59,7 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".yardopts"
|
|
62
63
|
- CHANGELOG.md
|
|
63
64
|
- CODE_OF_CONDUCT.md
|
|
64
65
|
- Gemfile
|