edn-abnf 0.5.18 → 0.5.19
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/bin/edn-abnf +2 -3
- data/edn-abnf.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: effdc6cdfdcefbb7a165c19ba58c2561ae6c761964ccf93b1c026bfa49b4b4eb
|
|
4
|
+
data.tar.gz: 55503cdf847880b8d17eadbf565a85019a00be18e9d39765f95284b614e354a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfb48b24e0e5477da7b7471f3c118c314406541f1a6ad6e31c800925ce507d8fc8e375474b8049a3a5f8097aa4e245da2f25ab62b8b8804528c7a635cc8d0938
|
|
7
|
+
data.tar.gz: abdc8c446f76f7e598c8f7185238a1846e4260b0bc9ffafd30478335007a6544da0577e04322e73f747a1ed643aa3db6ce8d544c7c230c724198444c035c8992
|
data/bin/edn-abnf
CHANGED
|
@@ -88,14 +88,13 @@ begin
|
|
|
88
88
|
opts.on("-wCOL", "--wrap=COL", Integer, "EDN: wrap at column COL") do |v|
|
|
89
89
|
$options.wrap = v
|
|
90
90
|
end
|
|
91
|
-
opts.on("-T", "--[no-]terminator", "Format with comma as terminator") do |v|
|
|
91
|
+
opts.on("-T", "--[no-]terminator", "EDN: Format with comma as terminator") do |v|
|
|
92
92
|
$options.terminator = v
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
op.parse!
|
|
96
96
|
rescue Exception => e
|
|
97
|
-
warn e
|
|
98
|
-
warn op
|
|
97
|
+
warn op unless e.to_s == 'exit'
|
|
99
98
|
exit 1
|
|
100
99
|
end
|
|
101
100
|
|
data/edn-abnf.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "edn-abnf"
|
|
3
|
-
s.version = "0.5.
|
|
3
|
+
s.version = "0.5.19"
|
|
4
4
|
s.summary = "CBOR Extended Diagnostic Notation (EDN) implemented in ABNF"
|
|
5
5
|
s.description = %q{edn-abnf implements converters and miscellaneous tools for CBOR EDN's ABNF}
|
|
6
6
|
s.author = "Carsten Bormann"
|