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 76e5425 ARROW-4870: [Ruby] Fix mys2_mingw_dependencies
76e5425 is described below
commit 76e5425da7ec335c7213a0082a1872850517446d
Author: dsisnero <[email protected]>
AuthorDate: Fri Mar 15 09:14:28 2019 +0900
ARROW-4870: [Ruby] Fix mys2_mingw_dependencies
$ pacman -Ss arrow
mingw32/mingw-w64-i686-arrow 0.11.1-1
Apache Arrow is a cross-language development platform for in-memory
data (mingw-w64)
mingw64/mingw-w64-x86_64-arrow 0.11.1-1 [installed]
Apache Arrow is a cross-language development platform for in-memory
data (mingw-w64)
Author: dsisnero <[email protected]>
Closes #3881 from dsisnero/patch-1 and squashes the following commits:
1839d12a <dsisnero> change mys2_mingw_dependencies to correct package
---
ruby/red-arrow/red-arrow.gemspec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ruby/red-arrow/red-arrow.gemspec b/ruby/red-arrow/red-arrow.gemspec
index 121f567..9451c9c 100644
--- a/ruby/red-arrow/red-arrow.gemspec
+++ b/ruby/red-arrow/red-arrow.gemspec
@@ -55,5 +55,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency("test-unit")
spec.add_development_dependency("yard")
- spec.metadata["msys2_mingw_dependencies"] = "apache-arrow"
+ spec.metadata["msys2_mingw_dependencies"] = "arrow"
end