curlyq 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +5 -5
- data/README.md +2 -2
- data/lib/curly/version.rb +1 -1
- data/src/_README.md +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: cfa73d5ba1b30f6b49b593c65306034ea6ce4e93d9d306e5a535009583f45638
|
4
|
+
data.tar.gz: 76f451e89e6d9f5c3ffe3c1fb87621e1e90fec91ec259fa1d513d8fc6ddd5d40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cb5c0aa1e5907a524328e3931cb01a501b9a49b36ddc45388e97a115c81c58e16b05c99dffc95870e47eab5ff81db9af809f4d962f8e33ae42a0c90c0bc7d55
|
7
|
+
data.tar.gz: da161b3b81821bfc6c09615c66927905d1a4f590879613aba0ed526015f06c281c372528ed597c488afd7933ab78c116247ab5545c29099e160e2e49293af90f
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
curlyq (0.0.
|
4
|
+
curlyq (0.0.14)
|
5
5
|
gli (~> 2.21.0)
|
6
6
|
nokogiri (~> 1.16.0)
|
7
7
|
selenium-webdriver (~> 4.16.0)
|
@@ -10,8 +10,8 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
gli (2.21.
|
14
|
-
nokogiri (1.16.
|
13
|
+
gli (2.21.5)
|
14
|
+
nokogiri (1.16.7-arm64-darwin)
|
15
15
|
racc (~> 1.4)
|
16
16
|
parallel (1.23.0)
|
17
17
|
parallel_tests (3.13.0)
|
@@ -19,10 +19,10 @@ GEM
|
|
19
19
|
pastel (0.8.0)
|
20
20
|
tty-color (~> 0.5)
|
21
21
|
power_assert (2.0.3)
|
22
|
-
racc (1.
|
22
|
+
racc (1.8.1)
|
23
23
|
rake (13.1.0)
|
24
24
|
rdoc (6.3.3)
|
25
|
-
rexml (3.
|
25
|
+
rexml (3.3.7)
|
26
26
|
rubyzip (2.3.2)
|
27
27
|
selenium-webdriver (4.16.0)
|
28
28
|
rexml (~> 3.2, >= 3.2.5)
|
data/README.md
CHANGED
@@ -13,7 +13,7 @@ _If you find this useful, feel free to [buy me some coffee][donate]._
|
|
13
13
|
[jq]: https://github.com/jqlang/jq "Command-line JSON processor"
|
14
14
|
[yq]: https://github.com/mikefarah/yq "yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor"
|
15
15
|
|
16
|
-
The current version of `curlyq` is 0.0.
|
16
|
+
The current version of `curlyq` is 0.0.14.
|
17
17
|
|
18
18
|
CurlyQ is a utility that provides a simple interface for curl, with additional features for things like extracting images and links, finding elements by CSS selector or XPath, getting detailed header info, and more. It's designed to be part of a scripting pipeline, outputting everything as structured data (JSON or YAML). It also has rudimentary support for making calls to JSON endpoints easier, but it's expected that you'll use something like [jq] to parse the output.
|
19
19
|
|
@@ -46,7 +46,7 @@ SYNOPSIS
|
|
46
46
|
curlyq [global options] command [command options] [arguments...]
|
47
47
|
|
48
48
|
VERSION
|
49
|
-
0.0.
|
49
|
+
0.0.14
|
50
50
|
|
51
51
|
GLOBAL OPTIONS
|
52
52
|
--help - Show this message
|
data/lib/curly/version.rb
CHANGED
data/src/_README.md
CHANGED
@@ -13,7 +13,7 @@ _If you find this useful, feel free to [buy me some coffee][donate]._
|
|
13
13
|
[jq]: https://github.com/jqlang/jq "Command-line JSON processor"
|
14
14
|
[yq]: https://github.com/mikefarah/yq "yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor"
|
15
15
|
|
16
|
-
The current version of `curlyq` is <!--VER-->0.0.
|
16
|
+
The current version of `curlyq` is <!--VER-->0.0.13<!--END VER-->.
|
17
17
|
|
18
18
|
CurlyQ is a utility that provides a simple interface for curl, with additional features for things like extracting images and links, finding elements by CSS selector or XPath, getting detailed header info, and more. It's designed to be part of a scripting pipeline, outputting everything as structured data (JSON or YAML). It also has rudimentary support for making calls to JSON endpoints easier, but it's expected that you'll use something like [jq] to parse the output.
|
19
19
|
|