yq 0.0.2 → 0.0.3
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/lib/yq/version.rb +1 -1
- data/yq.gemspec +3 -2
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ff4345f8c77a644d5a97600d15eb5f7ae59f49f
|
4
|
+
data.tar.gz: cac6d3daacb77f74e0b09a8ab3931a8f7498e6cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b91f9ad0bf43aae28d98fca8b8d3a4c3dae4f095c997c4815d04b38e6e275a4872b1030077870bc037bb5f73c850e7cbe2c63feca0a08ad779aeca514a39a79
|
7
|
+
data.tar.gz: ca2b430365ff2b01d3d85f60d4432382273d43ccc2699abfb7a43fd9f22c7d4a3c589fbb5a457e945e846f3bf323b2fbe8f018cc41daed44941ce778f2b86515
|
data/lib/yq/version.rb
CHANGED
data/yq.gemspec
CHANGED
@@ -8,8 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Yq::VERSION
|
9
9
|
spec.authors = ["Jim Park"]
|
10
10
|
spec.email = ["yq@jim80.net"]
|
11
|
-
spec.summary = %q{A
|
12
|
-
spec.description = "
|
11
|
+
spec.summary = %q{A JQ wrapper for YAML}
|
12
|
+
spec.description = "This unceremoniously shells out to a jq available in $PATH.
|
13
|
+
Please make sure jq is installed."
|
13
14
|
spec.homepage = "https://github.com/jim80net/yq"
|
14
15
|
spec.license = "GPLv2"
|
15
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Park
|
@@ -66,7 +66,9 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description:
|
69
|
+
description: |-
|
70
|
+
This unceremoniously shells out to a jq available in $PATH.
|
71
|
+
Please make sure jq is installed.
|
70
72
|
email:
|
71
73
|
- yq@jim80.net
|
72
74
|
executables:
|
@@ -111,7 +113,7 @@ rubyforge_project:
|
|
111
113
|
rubygems_version: 2.4.3
|
112
114
|
signing_key:
|
113
115
|
specification_version: 4
|
114
|
-
summary: A
|
116
|
+
summary: A JQ wrapper for YAML
|
115
117
|
test_files:
|
116
118
|
- spec/spec_helper.rb
|
117
119
|
- spec/yq_bin_spec.rb
|