grumlin 0.15.1 → 0.15.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 +4 -4
- data/.github/workflows/main.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +6 -6
- data/lib/grumlin/anonymous_step.rb +3 -3
- data/lib/grumlin/expressions/u.rb +2 -2
- data/lib/grumlin/version.rb +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: a7027bddd19689f2886286b1bcd099c7c8dbf764502f77b5469434cd243387e5
|
|
4
|
+
data.tar.gz: b5a3e1e1db75e2a7378f77246c9b3bbbc066d5b32c575d15c88d38917d4658be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b116b30db9eeaf3255793843caa191b6942de7c16a5765b00aa0b803c5e7ae7a1e35d4da4372fd9e2ebe485555f9b895b0fb527cbb37ff89636824197e3a9821
|
|
7
|
+
data.tar.gz: 11647d93fe2b33814a5356607bca81f2d30edf3992cbae4c52a2191cc34db8632e65bd672ac61030ed27a3c7a7387316d0522188b53e83cef63af2171d5a8494
|
data/.github/workflows/main.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
grumlin (0.15.
|
|
4
|
+
grumlin (0.15.2)
|
|
5
5
|
async-pool (~> 0.3)
|
|
6
6
|
async-websocket (~> 0.19)
|
|
7
7
|
oj (~> 3.12)
|
|
@@ -60,13 +60,13 @@ GEM
|
|
|
60
60
|
rexml
|
|
61
61
|
kramdown-parser-gfm (1.1.0)
|
|
62
62
|
kramdown (~> 2.0)
|
|
63
|
-
mini_portile2 (2.
|
|
63
|
+
mini_portile2 (2.7.1)
|
|
64
64
|
minitest (5.14.4)
|
|
65
65
|
nio4r (2.5.8)
|
|
66
|
-
nokogiri (1.
|
|
67
|
-
mini_portile2 (~> 2.
|
|
66
|
+
nokogiri (1.13.1)
|
|
67
|
+
mini_portile2 (~> 2.7.0)
|
|
68
68
|
racc (~> 1.4)
|
|
69
|
-
nokogiri (1.
|
|
69
|
+
nokogiri (1.13.1-x86_64-linux)
|
|
70
70
|
racc (~> 1.4)
|
|
71
71
|
oj (3.13.11)
|
|
72
72
|
overcommit (0.57.0)
|
|
@@ -85,7 +85,7 @@ GEM
|
|
|
85
85
|
protocol-websocket (0.7.5)
|
|
86
86
|
protocol-http (~> 0.2)
|
|
87
87
|
protocol-http1 (~> 0.2)
|
|
88
|
-
racc (1.
|
|
88
|
+
racc (1.6.0)
|
|
89
89
|
rainbow (3.0.0)
|
|
90
90
|
rake (13.0.3)
|
|
91
91
|
regexp_parser (2.2.0)
|
|
@@ -6,9 +6,9 @@ module Grumlin
|
|
|
6
6
|
|
|
7
7
|
# TODO: add other steps
|
|
8
8
|
SUPPORTED_STEPS = %i[E V addE addV aggregate and as both bothE by choose coalesce count dedup drop elementMap emit
|
|
9
|
-
fold from group groupCount has hasId hasLabel hasNot id in inE inV is label limit
|
|
10
|
-
out outE path project properties property range repeat sack select sideEffect
|
|
11
|
-
unfold union until valueMap values where with].freeze
|
|
9
|
+
fold from group groupCount has hasId hasLabel hasNot id identity in inE inV is label limit
|
|
10
|
+
map not or order out outE path project properties property range repeat sack select sideEffect
|
|
11
|
+
skip sum tail to unfold union until valueMap values where with].freeze
|
|
12
12
|
|
|
13
13
|
def initialize(name, *args, configuration_steps: [], previous_step: nil, **params)
|
|
14
14
|
@name = name
|
|
@@ -4,8 +4,8 @@ module Grumlin
|
|
|
4
4
|
module Expressions
|
|
5
5
|
module U
|
|
6
6
|
# TODO: add other start steps
|
|
7
|
-
SUPPORTED_STEPS = %i[V addV coalesce constant count drop fold has hasLabel hasNot id in inE inV is label
|
|
8
|
-
outV project repeat select timeLimit unfold valueMap values].freeze
|
|
7
|
+
SUPPORTED_STEPS = %i[V addV coalesce constant count drop fold has hasLabel hasNot id identity in inE inV is label
|
|
8
|
+
out outE outV project repeat select timeLimit unfold valueMap values].freeze
|
|
9
9
|
|
|
10
10
|
class << self
|
|
11
11
|
SUPPORTED_STEPS.each do |step|
|
data/lib/grumlin/version.rb
CHANGED