This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/master by this push:
new e8f6b00 AVRO-2664: Pin Ruby rdoc to <=6.2.0 (#753)
e8f6b00 is described below
commit e8f6b003aff981e6b96d069153b8cd79cc1b9ec2
Author: Fokko Driesprong <[email protected]>
AuthorDate: Fri Dec 27 20:33:33 2019 +0100
AVRO-2664: Pin Ruby rdoc to <=6.2.0 (#753)
Ruby rdoc 6.2.1 has been released which requires
Ruby 2.4: https://rubygems.org/gems/rdoc/versions/6.2.1
We would like to contrain this to 6.2.0:
https://rubygems.org/gems/rdoc/versions/6.2.0
---
lang/ruby/Gemfile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lang/ruby/Gemfile b/lang/ruby/Gemfile
index bb5514f..8cd5b45 100644
--- a/lang/ruby/Gemfile
+++ b/lang/ruby/Gemfile
@@ -21,3 +21,6 @@ gem 'snappy'
gem 'zstd-ruby'
gem 'test-unit'
gem 'rubocop'
+
+# rdoc 6.2.1 requires Ruby 2.4+
+gem 'rdoc', '<= 6.2.0'