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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b01ddca4a13e70f6ab86875cd635655ebec77e877f374b0df9c8021f61ae7753
4
- data.tar.gz: c25ccd742c5c40ba797f92fe39176cf2605d485506e56a1a1e8852bbbc11ab0b
3
+ metadata.gz: db469922637c573a4c3d4a63308cd8481ad7d7b9f552d28c3c84ebec939e7e89
4
+ data.tar.gz: 0a01bea74acc5e30535c6b0e589c67ac770c97cfa5f0e22a3c4915455a5f49a3
5
5
  SHA512:
6
- metadata.gz: '042067879c5ae297f5d3a06f2f0a7302cccb5dc0e362fcdb15820f74e8aec6b1d9f5cd085bcfdbfe3d2f671fe8cae24b8da38c03a89e4a645c42a31d60218005'
7
- data.tar.gz: b740805e7ab51fc7d45aeb0a1cc11062778561439a51395de1cdf1bd771a8745768c17e4e0b2db4daf2382ba6008f898e469c3f474d4738775c72a99c47cdd75
6
+ metadata.gz: 900ba073a02947c8a4477feee2eb8bab9d9cf8e307d0c717e26b41d18fa7ca2ef4364660679608d23a9c278ddcc54e43f973c20d041149c87d8f00c0929fec82
7
+ data.tar.gz: ada4730b53e54e19b72e584a939cbb04bf6273856c2fbeba1209e9856dba3a24cba36c4b7a19d5c7d09fd3c2c929067303d40dff48134da017e5eb675a3b4d54
@@ -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.rubygems_api_key }}
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.0)
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.6)
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 range
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
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Grumlin
4
- VERSION = "0.12.0"
4
+ VERSION = "0.12.1"
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.0
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-17 00:00:00.000000000 Z
11
+ date: 2021-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: async-pool