You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2019/01/24 02:55:33 UTC

[arrow] branch master updated: ARROW-4299: [Ruby] Depend on the same version as Red Arrow

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 6540040  ARROW-4299: [Ruby] Depend on the same version as Red Arrow
6540040 is described below

commit 6540040150ad887f280f4289b95e746568391261
Author: Yosuke Shiro <yo...@gmail.com>
AuthorDate: Thu Jan 24 11:54:46 2019 +0900

    ARROW-4299: [Ruby] Depend on the same version as Red Arrow
    
    Because Red Arrow CUDA, Red Plasma, Red Gandiva and Red Parquet don't work well without the same Red Arrow version.
    
    Author: Yosuke Shiro <yo...@gmail.com>
    
    Closes #3445 from shiro615/ruby-depend-on-the-same-version and squashes the following commits:
    
    3c761d47 <Yosuke Shiro>  Depend on the same version as Red Arrow
---
 ruby/red-arrow-cuda/red-arrow-cuda.gemspec | 2 +-
 ruby/red-gandiva/red-gandiva.gemspec       | 2 +-
 ruby/red-parquet/red-parquet.gemspec       | 2 +-
 ruby/red-plasma/red-plasma.gemspec         | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ruby/red-arrow-cuda/red-arrow-cuda.gemspec b/ruby/red-arrow-cuda/red-arrow-cuda.gemspec
index 0c593ff..7bb34c6 100644
--- a/ruby/red-arrow-cuda/red-arrow-cuda.gemspec
+++ b/ruby/red-arrow-cuda/red-arrow-cuda.gemspec
@@ -43,7 +43,7 @@ Gem::Specification.new do |spec|
   spec.test_files += Dir.glob("test/**/*")
   spec.extensions = ["dependency-check/Rakefile"]
 
-  spec.add_runtime_dependency("red-arrow")
+  spec.add_runtime_dependency("red-arrow", "= #{spec.version}")
 
   spec.add_development_dependency("bundler")
   spec.add_development_dependency("rake")
diff --git a/ruby/red-gandiva/red-gandiva.gemspec b/ruby/red-gandiva/red-gandiva.gemspec
index 857559e..ec4db89 100644
--- a/ruby/red-gandiva/red-gandiva.gemspec
+++ b/ruby/red-gandiva/red-gandiva.gemspec
@@ -41,7 +41,7 @@ Gem::Specification.new do |spec|
   spec.test_files += Dir.glob("test/**/*")
   spec.extensions = ["dependency-check/Rakefile"]
 
-  spec.add_runtime_dependency("red-arrow")
+  spec.add_runtime_dependency("red-arrow", "= #{spec.version}")
 
   spec.add_development_dependency("bundler")
   spec.add_development_dependency("rake")
diff --git a/ruby/red-parquet/red-parquet.gemspec b/ruby/red-parquet/red-parquet.gemspec
index 7688dcb..dffafed 100644
--- a/ruby/red-parquet/red-parquet.gemspec
+++ b/ruby/red-parquet/red-parquet.gemspec
@@ -41,7 +41,7 @@ Gem::Specification.new do |spec|
   spec.test_files += Dir.glob("test/**/*")
   spec.extensions = ["dependency-check/Rakefile"]
 
-  spec.add_runtime_dependency("red-arrow")
+  spec.add_runtime_dependency("red-arrow", "= #{spec.version}")
 
   spec.add_development_dependency("bundler")
   spec.add_development_dependency("rake")
diff --git a/ruby/red-plasma/red-plasma.gemspec b/ruby/red-plasma/red-plasma.gemspec
index 09b4a55..67e189a 100644
--- a/ruby/red-plasma/red-plasma.gemspec
+++ b/ruby/red-plasma/red-plasma.gemspec
@@ -41,7 +41,7 @@ Gem::Specification.new do |spec|
   spec.test_files += Dir.glob("test/**/*")
   spec.extensions = ["dependency-check/Rakefile"]
 
-  spec.add_runtime_dependency("red-arrow")
+  spec.add_runtime_dependency("red-arrow", "= #{spec.version}")
 
   spec.add_development_dependency("bundler")
   spec.add_development_dependency("rake")