diff options
author | Jisi Liu <jisi.liu@gmail.com> | 2018-01-17 15:00:46 -0800 |
---|---|---|
committer | Jisi Liu <jisi.liu@gmail.com> | 2018-01-17 15:00:46 -0800 |
commit | d9f0f0bfac30f213f99e91fba1cc8d04e01f8125 (patch) | |
tree | 2295e6ba662e87da9ea6a0a0782e26e2918c68b3 /ruby/Rakefile | |
parent | 106ffc04be1abf3ff3399f54ccf149815b287dd9 (diff) |
Support ruby2.5
Diffstat (limited to 'ruby/Rakefile')
-rw-r--r-- | ruby/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/Rakefile b/ruby/Rakefile index e30a75a3..cabebbdb 100644 --- a/ruby/Rakefile +++ b/ruby/Rakefile @@ -64,13 +64,13 @@ else task 'gem:windows' do require 'rake_compiler_dock' - RakeCompilerDock.sh "bundle && IN_DOCKER=true rake cross native gem RUBY_CC_VERSION=2.4.0:2.3.0:2.2.2:2.1.5:2.0.0" + RakeCompilerDock.sh "bundle && IN_DOCKER=true rake cross native gem RUBY_CC_VERSION=2.5.0:2.4.0:2.3.0:2.2.2:2.1.5:2.0.0" end if RUBY_PLATFORM =~ /darwin/ task 'gem:native' do system "rake genproto" - system "rake cross native gem RUBY_CC_VERSION=2.4.0:2.3.0:2.2.2:2.1.5:2.0.0" + system "rake cross native gem RUBY_CC_VERSION=2.5.0:2.4.0:2.3.0:2.2.2:2.1.5:2.0.0" end else task 'gem:native' => [:genproto, 'gem:windows'] |