rql-parser 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '095b70c0d1deea29834083481ea144f6c4df2d146616bca56858209e81940193'
4
- data.tar.gz: 96902b99b811b494924395da9201f006dd4b4c893126ac17a1f067c316799d9e
3
+ metadata.gz: 37f131d2124338d9496d2cc77baf3ae2f7d1f2b7b47b289bcae7595d5b600315
4
+ data.tar.gz: cf36c00f6c0a1e36112cb572a3946dd27be31d3eb76dfb6c427969ad0abae20b
5
5
  SHA512:
6
- metadata.gz: 26fc39f3faecd46265950cfdb0b1c3aab25061597e1b1bf4e96cc0a37f71eed5dc5b857c566fc8bf6b566b9c49fa4229d83df8504cab3f2d21e00b24cbdd63f4
7
- data.tar.gz: a7598751cc016ad508cacddad4f4cf9f04e0b1d022066a26ad401e82e391041b4d52182d7bbd5b4fbda1f4ff453b631e297a74766a5c8d7f60807825490926fe
6
+ metadata.gz: 5c10c855f781ac0fe1db0bcf06c04de9acbc3c89fc42c94a81e8a643782eec19b54be7579887f655534e5ef157c14494bda185c8aa2a7049c773e9e89cf07342
7
+ data.tar.gz: cc843f1002b0dccb1f3af3c659622b999c04643d80971b03ed0eab8abb7a38464d74d255f7cf8ee46c2e45878f6ef56eccf06c518e0db05bcd8334c196847341
@@ -1,8 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ #### 1.1.2
4
+
5
+ - Update Readme text to clarify that a result of parsing is
6
+ an abstract syntax tree, not a binary tree
7
+ - Fix typos
8
+
9
+ ---
10
+
3
11
  #### 1.1.1
4
12
 
5
- - Change name from `rql_parser` to 'rql-parser' for consistency
13
+ - Change name from `rql_parser` to `rql-parser` for consistency
6
14
 
7
15
  ---
8
16
 
data/README.md CHANGED
@@ -33,7 +33,7 @@ rql = 'eq(hello,world)&ruby=eq=awesome' # your RQL query here
33
33
  output = RqlParser.parse(rql)
34
34
  ```
35
35
 
36
- `output.result` yields a binary tree representing the query:
36
+ `output.result` yields an [abstract syntax tree](https://en.wikipedia.org/wiki/Abstract_syntax_tree) representing the query:
37
37
 
38
38
  ```ruby
39
39
  rql = 'eq(hello,world)&ruby=eq=awesome' # your RQL query here
@@ -1,3 +1,3 @@
1
1
  module RqlParser
2
- VERSION = '1.1.1'.freeze
2
+ VERSION = '1.1.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rql-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Deorigosa
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-27 00:00:00.000000000 Z
11
+ date: 2018-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_interaction