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: "../"