grumlin 0.12.1 → 0.12.2

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: db469922637c573a4c3d4a63308cd8481ad7d7b9f552d28c3c84ebec939e7e89
4
- data.tar.gz: 0a01bea74acc5e30535c6b0e589c67ac770c97cfa5f0e22a3c4915455a5f49a3
3
+ metadata.gz: 6680811a534db293d53fb8a190e11334e556866007cea69755e5c4be939849e2
4
+ data.tar.gz: 8e2aaf55bb9355e0440a02f5da6d079a2d5c6dda58a202b63d4d915eff0cebaf
5
5
  SHA512:
6
- metadata.gz: 900ba073a02947c8a4477feee2eb8bab9d9cf8e307d0c717e26b41d18fa7ca2ef4364660679608d23a9c278ddcc54e43f973c20d041149c87d8f00c0929fec82
7
- data.tar.gz: ada4730b53e54e19b72e584a939cbb04bf6273856c2fbeba1209e9856dba3a24cba36c4b7a19d5c7d09fd3c2c929067303d40dff48134da017e5eb675a3b4d54
6
+ metadata.gz: 989ec9a52a001458862ba4ecec9f2c5cee791e4a9b285115088db535696bd65ec2be1f60814a16383e8072d1ce2dad8678bc744340d0ee59a76a8e54db5ad99b
7
+ data.tar.gz: 4bf8b71a4bec8a741f0f700408dcf00e49b7b393b34f2fca432a6682a742990195cb7fb9490d6d4dc6cfd07cc63e278a06f365a7113f540ad6fdf48f463629aa
@@ -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
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grumlin (0.12.1)
4
+ grumlin (0.12.2)
5
5
  async-pool (~> 0.3)
6
6
  async-websocket (~> 0.19)
7
7
  oj (~> 3.12)
@@ -7,7 +7,8 @@ module Grumlin
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
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
10
+ range repeat select sideEffect skip tail to unfold union until valueMap values where
11
+ with].freeze
11
12
 
12
13
  def initialize(name, *args, previous_step: nil)
13
14
  @name = name
@@ -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 inE inV label out outV project repeat timeLimit unfold valueMap
7
+ SUPPORTED_STEPS = %i[V addV count drop fold has id inE inV label out outV project repeat timeLimit unfold valueMap
8
8
  values].freeze
9
9
 
10
10
  class << self
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Grumlin
4
- VERSION = "0.12.1"
4
+ VERSION = "0.12.2"
5
5
  end
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.1
4
+ version: 0.12.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-29 00:00:00.000000000 Z
11
+ date: 2021-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-pool