From 06fdcc2b2c3b87be2e68adb02c03ea910124e1bc Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Fri, 26 Apr 2019 20:14:50 +0900 Subject: [PATCH] CI against RuboCop 0.67 (#41) Follow up of rails/rails#35989. RuboCop 0.67 has been released and used by rails/rails. --- .travis.yml | 1 + Appraisals | 4 ++++ gemfiles/rubocop_0.67.gemfile | 10 ++++++++++ 3 files changed, 15 insertions(+) create mode 100644 gemfiles/rubocop_0.67.gemfile diff --git a/.travis.yml b/.travis.yml index bdf0544..da324c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,3 +17,4 @@ gemfile: - gemfiles/rubocop_0.64.gemfile - gemfiles/rubocop_0.65.gemfile - gemfiles/rubocop_0.66.gemfile + - gemfiles/rubocop_0.67.gemfile diff --git a/Appraisals b/Appraisals index a24817d..a8a071f 100644 --- a/Appraisals +++ b/Appraisals @@ -28,3 +28,7 @@ appraise "rubocop-0.66" do gem "rubocop", "~> 0.66" gem "rails" end +appraise "rubocop-0.67" do + gem "rubocop", "~> 0.67" + gem "rails" +end diff --git a/gemfiles/rubocop_0.67.gemfile b/gemfiles/rubocop_0.67.gemfile new file mode 100644 index 0000000..ecf74fe --- /dev/null +++ b/gemfiles/rubocop_0.67.gemfile @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "rubocop", "~> 0.67" +gem "rails" + +gemspec path: "../"