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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db3d3f02ab489eefdf85122b219d01a14d43322040009566548ba76ebed07767
4
- data.tar.gz: 1979f168d55f7f11fab7625a3916154b97ec9a1736e9a204a561399de5a3406c
3
+ metadata.gz: cfa73d5ba1b30f6b49b593c65306034ea6ce4e93d9d306e5a535009583f45638
4
+ data.tar.gz: 76f451e89e6d9f5c3ffe3c1fb87621e1e90fec91ec259fa1d513d8fc6ddd5d40
5
5
  SHA512:
6
- metadata.gz: b47fd47823f2b74493affc0180eb96cb4146c34d89d670edb4350703009dccd341ce278f1221e9c7eafd8f2d8a117caa2ba6991a931e5927396091347d4970b6
7
- data.tar.gz: 3143684aabac9d380583de9bfcb51045e78efacefc75051a7281dc2760a2efc24e70101f6c688ef396b7ba7f336d128f6641372a52c2e95be33082c8d9724712
6
+ metadata.gz: 5cb5c0aa1e5907a524328e3931cb01a501b9a49b36ddc45388e97a115c81c58e16b05c99dffc95870e47eab5ff81db9af809f4d962f8e33ae42a0c90c0bc7d55
7
+ data.tar.gz: da161b3b81821bfc6c09615c66927905d1a4f590879613aba0ed526015f06c281c372528ed597c488afd7933ab78c116247ab5545c29099e160e2e49293af90f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ### 0.0.14
2
+
3
+ 2024-10-25 10:26
4
+
5
+ #### FIXED
6
+
7
+ - Fix permissions
8
+
1
9
  ### 0.0.13
2
10
 
3
11
  2024-10-25 10:23
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- curlyq (0.0.13)
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.1)
14
- nokogiri (1.16.2-arm64-darwin)
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.7.3)
22
+ racc (1.8.1)
23
23
  rake (13.1.0)
24
24
  rdoc (6.3.3)
25
- rexml (3.2.6)
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.13.
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.13
49
+ 0.0.14
50
50
 
51
51
  GLOBAL OPTIONS
52
52
  --help - Show this message
data/lib/curly/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # Top level module for CurlyQ
2
2
  module Curly
3
3
  # Current version number
4
- VERSION = '0.0.13'
4
+ VERSION = '0.0.14'
5
5
  end
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.12<!--END VER-->.
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: curlyq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra