red-gandiva 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/README.md +1 -3
- data/lib/gandiva/version.rb +1 -1
- data/test/run-test.rb +4 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f6cacf27358ab19c4e37b7671ed0b3967ec945b14288c93e8af73421136cc92
|
4
|
+
data.tar.gz: 1de69d0abafb1adfef0b7201ad7f945a3950b115cb6c440cd087e19220ea7811
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2df15c13c4adb83ab8d46ea739af32f5ac1c4e55ef0cb00eacf5bca8b32e71e003184b776dd5202b48066d98d9bf490045e2aae64ab2c273b5b099c39246123b
|
7
|
+
data.tar.gz: 1a29414cb008f88706a387ab9792fa166147df2b2728ff3c68f3077445c980851cb96ebb8120e7ebcc521604736ff466aa2960322136bade7f301f530e2213bd
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -33,9 +33,7 @@ gobject-introspection gem is a Ruby bindings of GObject Introspection. Red Gandi
|
|
33
33
|
|
34
34
|
## Install
|
35
35
|
|
36
|
-
Install Gandiva GLib before install Red Gandiva.
|
37
|
-
|
38
|
-
Note that the Gandiva GLib packages are "unofficial". "Official" packages will be released in the future.
|
36
|
+
Install Gandiva GLib before install Red Gandiva. See [Apache Arrow install document](https://arrow.apache.org/install/) for details.
|
39
37
|
|
40
38
|
Install Red Gandiva after you install Gandiva GLib:
|
41
39
|
|
data/lib/gandiva/version.rb
CHANGED
data/test/run-test.rb
CHANGED
@@ -21,6 +21,10 @@ $VERBOSE = true
|
|
21
21
|
|
22
22
|
require "pathname"
|
23
23
|
|
24
|
+
(ENV["ARROW_DLL_PATH"] || "").split(File::PATH_SEPARATOR).each do |path|
|
25
|
+
RubyInstaller::Runtime.add_dll_directory(path)
|
26
|
+
end
|
27
|
+
|
24
28
|
base_dir = Pathname.new(__dir__).parent.expand_path
|
25
29
|
arrow_base_dir = base_dir.parent + "red-arrow"
|
26
30
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: red-gandiva
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Apache Arrow Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: red-arrow
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.14.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,7 +114,7 @@ signing_key:
|
|
114
114
|
specification_version: 4
|
115
115
|
summary: Red Gandiva is the Ruby bindings of Gandiva
|
116
116
|
test_files:
|
117
|
+
- test/test-boolean-literal-node.rb
|
117
118
|
- test/helper.rb
|
118
|
-
- test/test-projector.rb
|
119
119
|
- test/run-test.rb
|
120
|
-
- test/test-
|
120
|
+
- test/test-projector.rb
|