Fix Ruby release build by pinning rake-compiler-dock version (#9372)

Our Ruby release build broke at some point in the past day or so, and I
strongly suspect it is due to a new version (1.2.0) of
rake-compiler-dock. This commit pins the version to 1.1.0 as a temporary
fix.
pull/9376/head
Adam Cozzette 3 years ago committed by GitHub
parent b17c8ca979
commit f681c8d9e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ruby/google-protobuf.gemspec

@ -17,7 +17,7 @@ Gem::Specification.new do |s|
else
s.files += Dir.glob('ext/**/*')
s.extensions= ["ext/google/protobuf_c/extconf.rb"]
s.add_development_dependency "rake-compiler-dock", ">= 1.1.0", "< 2.0"
s.add_development_dependency "rake-compiler-dock", "= 1.1.0"
end
s.test_files = ["tests/basic.rb",
"tests/stress.rb",

Loading…
Cancel
Save