curlyq 0.0.3 → 0.0.4

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: 74306df5fa01c7d69f341fb38f0ef966ef1acdad835db8e2d49feb6e064ebd28
4
- data.tar.gz: e8b117b64755738951adfd6e9265fb813118e4e187f5d1cd138788f6759f0d3d
3
+ metadata.gz: '091e39001a4456eef85fa25e97281c6218e3383619d37a14a66ca9bd41fee9ab'
4
+ data.tar.gz: c287e095d4f9525e924d08cd580c37ab19448ae93bb384d419526b60cf895493
5
5
  SHA512:
6
- metadata.gz: a98b2b0d24cba28ef4487b5564668e1266b56cf1e097488510865e26795cb4d752ef15c8f83360cc7208bc529e48b6bc857821eb8193b9077302bc24fa9a33e0
7
- data.tar.gz: e6c2c276a6bf265612da74085a62c3b475c7dd401dd4f149ff274902c1a21d0f7c241f6a269a5c28dceddf46b62e175d1b45c6940a2f99364be8967e2d67a67c
6
+ metadata.gz: e51492325696e09319666ee29b753472f555129dc7664f34a08b1ae30dd319cdb5518727030d2d7bbaa1dfaefc6dd14ce4ccf2756243238dd885d37e2dbffbb4
7
+ data.tar.gz: 27c006a7433cd9bd9208cc0aa69c0029974ca98524ecf3ee323bad00cc09490acfbfd5b4e61a65e22d5f750ebe05fa03d5d1bae1d1b977bf1028ed2aa21e2ee7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ### 0.0.4
2
+
3
+ 2024-01-10 13:54
4
+
5
+ #### FIXED
6
+
7
+ - Queries combined with + or & not requiring all matches to be true
8
+
1
9
  ### 0.0.3
2
10
 
3
11
  2024-01-10 13:38
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- curlyq (0.0.3)
4
+ curlyq (0.0.4)
5
5
  gli (~> 2.21.0)
6
6
  nokogiri (~> 1.16.0)
7
7
  selenium-webdriver (~> 4.16.0)
data/README.md CHANGED
@@ -10,7 +10,7 @@ _If you find this useful, feel free to [buy me some coffee][donate]._
10
10
  [donate]: https://brettterpstra.com/donate
11
11
 
12
12
 
13
- The current version of `curlyq` is 0.0.3
13
+ The current version of `curlyq` is 0.0.4
14
14
  .
15
15
 
16
16
  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.
@@ -44,7 +44,7 @@ SYNOPSIS
44
44
  curlyq [global options] command [command options] [arguments...]
45
45
 
46
46
  VERSION
47
- 0.0.3
47
+ 0.0.4
48
48
 
49
49
  GLOBAL OPTIONS
50
50
  --help - Show this message
data/lib/curly/hash.rb CHANGED
@@ -110,6 +110,8 @@ class ::Hash
110
110
  r[key] =~ /^#{a[2]}$/i ? true : false
111
111
  end
112
112
  end
113
+
114
+ return false unless keep
113
115
  end
114
116
 
115
117
  keep
data/lib/curly/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Curly
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
data/src/_README.md CHANGED
@@ -10,7 +10,7 @@ _If you find this useful, feel free to [buy me some coffee][donate]._
10
10
  [donate]: https://brettterpstra.com/donate
11
11
  <!--END GITHUB-->
12
12
 
13
- The current version of `curlyq` is <!--VER-->0.0.2<!--END VER-->.
13
+ The current version of `curlyq` is <!--VER-->0.0.3<!--END VER-->.
14
14
 
15
15
  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.
16
16
 
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.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra