grumlin 0.19.1 → 0.19.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 +3 -3
- data/lib/definitions.yml +3 -0
- data/lib/grumlin/expressions/column.rb +15 -0
- data/lib/grumlin/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04cf718261fb0d4966c8d22288f6d1890f29548b9aff85a8d9d5f7123a1348f6
|
|
4
|
+
data.tar.gz: 60ab911abce0b4b8cf8d432bbde24f60f217a3476f4870c6fb43444e3ce388db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 556a1d2269173f83ff4095bb55cf1c0029f683ce6b022bd0c3b90f39cff67671e795dce4d70b30161243db9840ab06165190382ffd8c863c979bd330568f0e56
|
|
7
|
+
data.tar.gz: 3734071162ce4f3407196167d87f3f7574af57b9880591e9b5bb029795957cc337be7e10a5b84105cab69ba4d3749830083ac1aa6925fa317e719da707741cb3
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
grumlin (0.19.
|
|
4
|
+
grumlin (0.19.2)
|
|
5
5
|
async-pool (~> 0.3)
|
|
6
6
|
async-websocket (~> 0.19)
|
|
7
7
|
oj (~> 3.12)
|
|
@@ -18,7 +18,7 @@ GEM
|
|
|
18
18
|
tzinfo (~> 2.0)
|
|
19
19
|
zeitwerk (~> 2.3)
|
|
20
20
|
ast (2.4.2)
|
|
21
|
-
async (1.30.
|
|
21
|
+
async (1.30.2)
|
|
22
22
|
console (~> 1.10)
|
|
23
23
|
nio4r (~> 2.3)
|
|
24
24
|
timers (~> 4.1)
|
|
@@ -32,7 +32,7 @@ GEM
|
|
|
32
32
|
traces (~> 0.4.0)
|
|
33
33
|
async-io (1.33.0)
|
|
34
34
|
async
|
|
35
|
-
async-pool (0.3.
|
|
35
|
+
async-pool (0.3.10)
|
|
36
36
|
async (>= 1.25)
|
|
37
37
|
async-rspec (1.16.0)
|
|
38
38
|
rspec (~> 3.0)
|
data/lib/definitions.yml
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Grumlin
|
|
4
|
+
module Expressions
|
|
5
|
+
module Column
|
|
6
|
+
SUPPORTED_STEPS = Grumlin.definitions.dig(:expressions, :column).map(&:to_sym).freeze
|
|
7
|
+
|
|
8
|
+
class << self
|
|
9
|
+
extend Expression
|
|
10
|
+
|
|
11
|
+
define_steps(SUPPORTED_STEPS, "Column")
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
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.19.
|
|
4
|
+
version: 0.19.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: 2022-05-
|
|
11
|
+
date: 2022-05-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: async-pool
|
|
@@ -115,6 +115,7 @@ files:
|
|
|
115
115
|
- lib/grumlin/action.rb
|
|
116
116
|
- lib/grumlin/client.rb
|
|
117
117
|
- lib/grumlin/edge.rb
|
|
118
|
+
- lib/grumlin/expressions/column.rb
|
|
118
119
|
- lib/grumlin/expressions/expression.rb
|
|
119
120
|
- lib/grumlin/expressions/operator.rb
|
|
120
121
|
- lib/grumlin/expressions/order.rb
|