node_query 1.5.0 → 1.6.0

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: 526c6ef0b0f58f1a8f1f7aff14e147ce4220cd6366bea5d5108db29591e0ab02
4
- data.tar.gz: 347fc60e4f3629871356757349c5a126235a192049eefa713fb15890d26033d0
3
+ metadata.gz: 86cae1819b055b5c50aa47879d3da1902805a24fa484f9697270e1591f4af73f
4
+ data.tar.gz: 59c4f42f81cd67758c0e3e6d237c3e23e3f35aec2175ae9d4798d93b3b4d11c6
5
5
  SHA512:
6
- metadata.gz: b94b5f913b63824d89211dc6156add8ada6963a0122cf5d6adafc60fcf20af62a4f9a239f2bd341ef12167adcf8a5785b96b9c1b6bbad41d2ebe3f0eb90b498f
7
- data.tar.gz: 2a9613221d35553af7e91e1e2a20792dbee63572634e254633cb0951180adb48b582454dee93f6c817d870ec16962af346bb1ce4ea253b253da10cb7e78ada49
6
+ metadata.gz: 1b10e103621f14acc695c6b27c26d15a4751c804a907273b95056516697934d381aefdb8396aa90056385b90a741052bc9d5dc8a2a2c2afe05e69101d06af958
7
+ data.tar.gz: 36063af159d24d01bdf7e447aab58fc0800a95d3c764915635a31f2f26ae7ff401a8243287c3d1b01ca5cae1ddc6753ad952dee7c7f3ffa62c66834114bc572d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.6.0 (2022-09-16)
4
+
5
+ * Rename `nodeType` to `node_type`
6
+
3
7
  ## 1.5.0 (2022-09-15)
4
8
 
5
9
  * Add `Helper.to_string`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- node_query (1.5.0)
4
+ node_query (1.6.0)
5
5
  activesupport (< 7.0.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -83,7 +83,7 @@ node = Parser::CurrentRuby.parse(source)
83
83
 
84
84
  # It will get the node of initialize.
85
85
  NodeQuery.new('.def[name=initialize]').query_nodes(node)
86
- NodeQuery.new({ nodeType: 'def', name: 'initialize' }).query_nodes(node)
86
+ NodeQuery.new({ node_type: 'def', name: 'initialize' }).query_nodes(node)
87
87
  ```
88
88
 
89
89
  ## Node Query Language
@@ -313,7 +313,7 @@ It matches ivasgn node whose left value is either @id or @name.
313
313
  ### rules matches node type
314
314
 
315
315
  ```
316
- { nodeType: 'class' }
316
+ { node_type: 'class' }
317
317
  ```
318
318
 
319
319
  It matches class node
@@ -321,13 +321,13 @@ It matches class node
321
321
  ### rules matches attribute
322
322
 
323
323
  ```
324
- { nodeType: 'def', name: 'initialize' }
324
+ { node_type: 'def', name: 'initialize' }
325
325
  ```
326
326
 
327
327
  It matches def node whose name is initialize
328
328
 
329
329
  ```
330
- { nodeType: 'def', arguments: { "0": 1, "1": "Murphy" } }
330
+ { node_type: 'def', arguments: { "0": 1, "1": "Murphy" } }
331
331
  ```
332
332
 
333
333
  It matches def node whose arguments are 1 and Murphy.
@@ -335,7 +335,7 @@ It matches def node whose arguments are 1 and Murphy.
335
335
  ### rules matches nested attribute
336
336
 
337
337
  ```
338
- { nodeType: 'class', parent_class: { name: 'Base' } }
338
+ { node_type: 'class', parent_class: { name: 'Base' } }
339
339
  ```
340
340
 
341
341
  It matches class node whose parent class name is Base
@@ -343,7 +343,7 @@ It matches class node whose parent class name is Base
343
343
  ### rules matches evaluated value
344
344
 
345
345
  ```
346
- { nodeType: 'ivasgn', left_value: '@{{right_value}}' }
346
+ { node_type: 'ivasgn', left_value: '@{{right_value}}' }
347
347
  ```
348
348
 
349
349
  It matches ivasgn node whose left value equals '@' plus the evaluated value of right value.
@@ -351,7 +351,7 @@ It matches ivasgn node whose left value equals '@' plus the evaluated value of r
351
351
  ### rules matches nested selector
352
352
 
353
353
  ```
354
- { nodeType: 'def', body: { "0": { nodeType: 'ivasgn' } } }
354
+ { node_type: 'def', body: { "0": { node_type: 'ivasgn' } } }
355
355
  ```
356
356
 
357
357
  It matches def node whose first child node is an ivasgn node.
@@ -359,7 +359,7 @@ It matches def node whose first child node is an ivasgn node.
359
359
  ### rules matches method result
360
360
 
361
361
  ```
362
- { nodeType: 'def', arguments: { size: 2 } }
362
+ { node_type: 'def', arguments: { size: 2 } }
363
363
  ```
364
364
 
365
365
  It matches def node whose arguments size is 2.
@@ -367,73 +367,73 @@ It matches def node whose arguments size is 2.
367
367
  ### rules matches operators
368
368
 
369
369
  ```
370
- { nodeType: 'class', name: 'User' }
370
+ { node_type: 'class', name: 'User' }
371
371
  ```
372
372
 
373
373
  Value of name is equal to User
374
374
 
375
375
  ```
376
- { nodeType: 'def', arguments: { size { not: 2 } }
376
+ { node_type: 'def', arguments: { size { not: 2 } }
377
377
  ```
378
378
 
379
379
  Size of arguments is not equal to 2
380
380
 
381
381
  ```
382
- { nodeType: 'def', arguments: { size { gte: 2 } }
382
+ { node_type: 'def', arguments: { size { gte: 2 } }
383
383
  ```
384
384
 
385
385
  Size of arguments is greater than or equal to 2
386
386
 
387
387
  ```
388
- { nodeType: 'def', arguments: { size { gt: 2 } }
388
+ { node_type: 'def', arguments: { size { gt: 2 } }
389
389
  ```
390
390
 
391
391
  Size of arguments is greater than 2
392
392
 
393
393
  ```
394
- { nodeType: 'def', arguments: { size { lte: 2 } }
394
+ { node_type: 'def', arguments: { size { lte: 2 } }
395
395
  ```
396
396
 
397
397
  Size of arguments is less than or equal to 2
398
398
 
399
399
  ```
400
- { nodeType: 'def', arguments: { size { lt: 2 } }
400
+ { node_type: 'def', arguments: { size { lt: 2 } }
401
401
  ```
402
402
 
403
403
  Size of arguments is less than 2
404
404
 
405
405
  ```
406
- { nodeType: 'class', name: { in: ['User', 'Account'] } }
406
+ { node_type: 'class', name: { in: ['User', 'Account'] } }
407
407
  ```
408
408
 
409
409
  Value of name is either User or Account
410
410
 
411
411
  ```
412
- { nodeType: 'class', name: { not_in: ['User', 'Account'] } }
412
+ { node_type: 'class', name: { not_in: ['User', 'Account'] } }
413
413
  ```
414
414
 
415
415
  Value of name is neither User nor Account
416
416
 
417
417
  ```
418
- { nodeType: 'def', arguments: { includes: 'id' } }
418
+ { node_type: 'def', arguments: { includes: 'id' } }
419
419
  ```
420
420
 
421
421
  Value of arguments includes id
422
422
 
423
423
  ```
424
- { nodeType: 'class', name: /User/ }
424
+ { node_type: 'class', name: /User/ }
425
425
  ```
426
426
 
427
427
  Value of name matches User
428
428
 
429
429
  ```
430
- { nodeType: 'class', name: { not: /User/ } }
430
+ { node_type: 'class', name: { not: /User/ } }
431
431
  ```
432
432
 
433
433
  Value of name does not match User
434
434
 
435
435
  ```
436
- { nodeType: 'class', name: { in: [/User/, /Account/] } }
436
+ { node_type: 'class', name: { in: [/User/, /Account/] } }
437
437
  ```
438
438
 
439
439
  Value of name matches either /User/ or /Account/
@@ -441,7 +441,7 @@ Value of name matches either /User/ or /Account/
441
441
  ### rules matches array nodes attribute
442
442
 
443
443
  ```
444
- { nodeType: 'def', arguments: ['id', 'name'] }
444
+ { node_type: 'def', arguments: ['id', 'name'] }
445
445
  ```
446
446
 
447
447
  It matches def node whose arguments are id and name.
@@ -18,7 +18,7 @@ class NodeQuery::Helper
18
18
  child_node = node[first_key.to_i]
19
19
  elsif node.respond_to?(first_key)
20
20
  child_node = node.send(first_key)
21
- elsif first_key == "nodeType"
21
+ elsif first_key == "node_type"
22
22
  child_node = NodeQuery.adapter.get_node_type(node)
23
23
  end
24
24
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class NodeQuery
4
- VERSION = "1.5.0"
4
+ VERSION = "1.6.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: node_query
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Huang
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-15 00:00:00.000000000 Z
11
+ date: 2022-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport