grumlin 0.6.1 → 0.6.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/Gemfile.lock +1 -1
- data/lib/grumlin/anonymous_step.rb +2 -2
- data/lib/grumlin/client.rb +8 -0
- data/lib/grumlin/version.rb +1 -1
- data/lib/grumlin.rb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6633f34f12f74200b56d3447e7b1cd5c2c4185cd4013a27157d809b2f97f01b2
|
|
4
|
+
data.tar.gz: a5b0c1b0f4a8ef813a48144b79b17a71c6385802ff77b46ef0fa703643790ac1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6824448759e26af95f8753a1461fac6b0b66677e1cab723b8e79c76333c4e791b5364da81f87844b624796238a3e02b13065a7afb64d7a5ef7ca83a6e9c3e8be
|
|
7
|
+
data.tar.gz: d7ce1a01b2b50f90a317d270ad005561220fcb0f69da5036b97d20c88b2458e5dd7ea285c384cef5d5e9521ff077f2d43650985c1e928942e463cfc29bbdd247
|
data/Gemfile.lock
CHANGED
|
@@ -6,8 +6,8 @@ module Grumlin
|
|
|
6
6
|
|
|
7
7
|
# TODO: add other steps
|
|
8
8
|
SUPPORTED_STEPS = %w[E V addE addV as by coalesce count dedup drop elementMap emit fold from group groupCount has
|
|
9
|
-
hasLabel hasNot in inV label limit not order out outE path project property repeat select
|
|
10
|
-
unfold valueMap values where].freeze
|
|
9
|
+
hasId hasLabel hasNot in inV label limit not order out outE path project property repeat select
|
|
10
|
+
to unfold valueMap values where].freeze
|
|
11
11
|
|
|
12
12
|
def initialize(name, *args, previous_steps: [])
|
|
13
13
|
@name = name
|
data/lib/grumlin/client.rb
CHANGED
data/lib/grumlin/version.rb
CHANGED
data/lib/grumlin.rb
CHANGED
|
@@ -43,10 +43,9 @@ module Grumlin
|
|
|
43
43
|
class Config
|
|
44
44
|
attr_accessor :url, :pool_size, :client_concurrency, :client_factory
|
|
45
45
|
|
|
46
|
-
# For some reason, client_concurrency must be greater than pool_size
|
|
47
46
|
def initialize
|
|
48
47
|
@pool_size = 10
|
|
49
|
-
@client_concurrency =
|
|
48
|
+
@client_concurrency = 2
|
|
50
49
|
@client_factory = ->(url, parent) { Grumlin::Client.new(url, parent: parent) }
|
|
51
50
|
end
|
|
52
51
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grumlin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gleb Sinyavskiy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-09-
|
|
11
|
+
date: 2021-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: async-pool
|