yaml-parser 1.0 → 1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +16 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZjIwZDM4NTJhYjRhODdjZThiOGMxMjc2OTQ4MTk0Yjg1ODE5Mjg4Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MzRiNzQ1NGQzNjcwZGQ0NDQ2MWM5YTAzMzQyNmEyYjRhNjliOTM0Zg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDM5ODM1NDI4NmI5YzFjM2YzYWNjYjQwMDI1YmNkMGQwNWE2Zjk0OGFhODIz
|
10
|
+
MjVhZDA2ODIyMzM2ZDBkMzZkOWVlNjdmNDVlYTEyZjc0MjAxMjhiYWRkMTRk
|
11
|
+
OTJiMDI5ZTZlYmIxNjFhMjQ2ZGMyYWIwZTBiYTQyNjJkOGJkOTY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTU1ZjIyMWE5ODAwNjJiYzVjMDRhYzY1N2JiNjc0NTRiYjZjZjRhMWYwMjk0
|
14
|
+
ZDU3YmM1YmUxYTA4ZDgwY2FiYTBiOTc3NjFlNmUyZGVhZGJjMWY5OWVkZmU4
|
15
|
+
ZDVmMDZhN2QzZTE2ZTViODg4YWFjNTM1Nzk2ZjJlODJhZmRiNGE=
|
data/README.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# yaml-parser
|
2
|
+
Validates all files .yaml files in a directory three by parsing them.
|
3
|
+
|
4
|
+
#### Installation
|
5
|
+
|
6
|
+
gem install yaml-parser
|
7
|
+
|
8
|
+
#### Usage
|
9
|
+
yaml-parser /path/to/directory
|
10
|
+
|
11
|
+
|
12
|
+
#### Example output
|
13
|
+
yaml-parser example/
|
14
|
+
Scanned 595 yaml files. 2 error(s) found
|
15
|
+
(common.yaml): found character that cannot start any token while scanning for the next token at line 32 column 35
|
16
|
+
(fqdn/foo.bar.buzz.yaml): could not find expected ':' while scanning a simple key at line 2 column 1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yaml-parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.1'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Johan Haals
|
@@ -19,6 +19,7 @@ extra_rdoc_files: []
|
|
19
19
|
files:
|
20
20
|
- lib/yaml-parser.rb
|
21
21
|
- bin/yaml-parser
|
22
|
+
- README.md
|
22
23
|
homepage: http://github.com/jhaals/yaml-parser
|
23
24
|
licenses: []
|
24
25
|
metadata: {}
|