grumlin 0.12.0 → 0.12.1
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 +2 -2
- data/Gemfile.lock +2 -2
- data/lib/grumlin/anonymous_step.rb +2 -2
- data/lib/grumlin/tools/u.rb +1 -1
- data/lib/grumlin/version.rb +1 -1
- 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: db469922637c573a4c3d4a63308cd8481ad7d7b9f552d28c3c84ebec939e7e89
|
|
4
|
+
data.tar.gz: 0a01bea74acc5e30535c6b0e589c67ac770c97cfa5f0e22a3c4915455a5f49a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 900ba073a02947c8a4477feee2eb8bab9d9cf8e307d0c717e26b41d18fa7ca2ef4364660679608d23a9c278ddcc54e43f973c20d041149c87d8f00c0929fec82
|
|
7
|
+
data.tar.gz: ada4730b53e54e19b72e584a939cbb04bf6273856c2fbeba1209e9856dba3a24cba36c4b7a19d5c7d09fd3c2c929067303d40dff48134da017e5eb675a3b4d54
|
data/.github/workflows/main.yml
CHANGED
|
@@ -48,7 +48,7 @@ jobs:
|
|
|
48
48
|
needs:
|
|
49
49
|
- lint
|
|
50
50
|
- test
|
|
51
|
-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
|
51
|
+
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
|
52
52
|
steps:
|
|
53
53
|
- uses: actions/checkout@v2
|
|
54
54
|
|
|
@@ -65,7 +65,7 @@ jobs:
|
|
|
65
65
|
mkdir ~/.gem
|
|
66
66
|
cat << EOF > ~/.gem/credentials
|
|
67
67
|
---
|
|
68
|
-
:rubygems_api_key: ${{ secrets.
|
|
68
|
+
:rubygems_api_key: ${{ secrets.RUBYGEMS_TOKEN }}
|
|
69
69
|
EOF
|
|
70
70
|
chmod 0600 /home/runner/.gem/credentials
|
|
71
71
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
grumlin (0.12.
|
|
4
|
+
grumlin (0.12.1)
|
|
5
5
|
async-pool (~> 0.3)
|
|
6
6
|
async-websocket (~> 0.19)
|
|
7
7
|
oj (~> 3.12)
|
|
@@ -64,7 +64,7 @@ GEM
|
|
|
64
64
|
nio4r (2.5.8)
|
|
65
65
|
nokogiri (1.11.7-x86_64-linux)
|
|
66
66
|
racc (~> 1.4)
|
|
67
|
-
oj (3.13.
|
|
67
|
+
oj (3.13.7)
|
|
68
68
|
overcommit (0.57.0)
|
|
69
69
|
childprocess (>= 0.6.3, < 5)
|
|
70
70
|
iniparse (~> 1.4)
|
|
@@ -6,8 +6,8 @@ module Grumlin
|
|
|
6
6
|
|
|
7
7
|
# TODO: add other steps
|
|
8
8
|
SUPPORTED_STEPS = %i[E V addE addV as both by coalesce count dedup drop elementMap emit fold from group groupCount
|
|
9
|
-
has hasId hasLabel hasNot id in inV label limit not order out outE path project property
|
|
10
|
-
repeat select skip tail to unfold union until valueMap values where with].freeze
|
|
9
|
+
has hasId hasLabel hasNot id in inE inV label limit not order out outE path project property
|
|
10
|
+
range repeat select skip tail to unfold union until valueMap values where with].freeze
|
|
11
11
|
|
|
12
12
|
def initialize(name, *args, previous_step: nil)
|
|
13
13
|
@name = name
|
data/lib/grumlin/tools/u.rb
CHANGED
|
@@ -4,7 +4,7 @@ module Grumlin
|
|
|
4
4
|
module Tools
|
|
5
5
|
module U
|
|
6
6
|
# TODO: add other start steps
|
|
7
|
-
SUPPORTED_STEPS = %i[V addV count fold has id inV label out outV project repeat timeLimit unfold valueMap
|
|
7
|
+
SUPPORTED_STEPS = %i[V addV count fold has id inE inV label out outV project repeat timeLimit unfold valueMap
|
|
8
8
|
values].freeze
|
|
9
9
|
|
|
10
10
|
class << self
|
data/lib/grumlin/version.rb
CHANGED
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.12.
|
|
4
|
+
version: 0.12.1
|
|
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-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: async-pool
|