You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by rs...@apache.org on 2020/04/20 08:58:39 UTC

[avro] branch master updated: AVRO-2807: Pin RuboCop to <=0.81 (#860)

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

rskraba 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 6b0d470  AVRO-2807: Pin RuboCop to <=0.81 (#860)
6b0d470 is described below

commit 6b0d470a79b4c4e10d9890183d6c913608a2a225
Author: Kengo Seki <se...@apache.org>
AuthorDate: Mon Apr 20 17:58:31 2020 +0900

    AVRO-2807: Pin RuboCop to <=0.81 (#860)
---
 lang/ruby/Gemfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lang/ruby/Gemfile b/lang/ruby/Gemfile
index 8cd5b45..dbca613 100644
--- a/lang/ruby/Gemfile
+++ b/lang/ruby/Gemfile
@@ -20,7 +20,8 @@ gem 'multi_json'
 gem 'snappy'
 gem 'zstd-ruby'
 gem 'test-unit'
-gem 'rubocop'
+# rubocop 0.82 requires Ruby 2.4+
+gem 'rubocop', '<= 0.81'
 
 # rdoc 6.2.1 requires Ruby 2.4+
 gem 'rdoc', '<= 6.2.0'