grumlin 0.15.1 → 0.15.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: a8080c53730173eb1569dffffa521fddace42c531ae3487e86e19ee3f65e2950
4
- data.tar.gz: 5307c15aadc7ee30306b8c5f38977aa7348ced9c9a28f2f44c0095348f0140d3
3
+ metadata.gz: a7027bddd19689f2886286b1bcd099c7c8dbf764502f77b5469434cd243387e5
4
+ data.tar.gz: b5a3e1e1db75e2a7378f77246c9b3bbbc066d5b32c575d15c88d38917d4658be
5
5
  SHA512:
6
- metadata.gz: 81ea5b30d65205ae9b418c2caef9f4210a5850d3dd6c022e282d35e880916b35f4c916084c1af3ebb8842256647dbf44a099f61a37d4a21e2ac43ca3cc228c1f
7
- data.tar.gz: e35049b5ac62ac624e46554a59f5350887e231ae18df29b0042ae56804939e3a9968a9bea8e597822826cf858cb0664e197a8b618be976151916e35ca633dbf6
6
+ metadata.gz: b116b30db9eeaf3255793843caa191b6942de7c16a5765b00aa0b803c5e7ae7a1e35d4da4372fd9e2ebe485555f9b895b0fb527cbb37ff89636824197e3a9821
7
+ data.tar.gz: 11647d93fe2b33814a5356607bca81f2d30edf3992cbae4c52a2191cc34db8632e65bd672ac61030ed27a3c7a7387316d0522188b53e83cef63af2171d5a8494
@@ -22,7 +22,7 @@ jobs:
22
22
  runs-on: ubuntu-latest
23
23
  strategy:
24
24
  matrix:
25
- ruby: ["2.7", "3.0"]
25
+ ruby: ["2.7", "3.0", "3.1"]
26
26
  steps:
27
27
  - uses: actions/checkout@v2
28
28
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.15.2] - 2022-01-17
2
+
3
+ - New steps: `map` and `identity`
4
+
1
5
  ## [0.15.1] - 2022-01-17
2
6
 
3
7
  - Fix passing arrays as step arguments
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grumlin (0.15.1)
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.5.3)
63
+ mini_portile2 (2.7.1)
64
64
  minitest (5.14.4)
65
65
  nio4r (2.5.8)
66
- nokogiri (1.11.7)
67
- mini_portile2 (~> 2.5.0)
66
+ nokogiri (1.13.1)
67
+ mini_portile2 (~> 2.7.0)
68
68
  racc (~> 1.4)
69
- nokogiri (1.11.7-x86_64-linux)
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.5.2)
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 not or order
10
- out outE path project properties property range repeat sack select sideEffect skip sum tail to
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 out outE
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|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Grumlin
4
- VERSION = "0.15.1"
4
+ VERSION = "0.15.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grumlin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.1
4
+ version: 0.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gleb Sinyavskiy