From d2b05c261d9fd4be58de218f3215de9231f5d5dd Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Sun, 5 Apr 2020 16:29:00 -0400 Subject: [PATCH 1/4] Try with older rubies --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 24fa387..e82f86c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,10 @@ language: ruby rvm: + - 2.0 + - 2.1 + - 2.2 + - 2.3 + - 2.4 - 2.5 - 2.6 - 2.7 From e1bdb7a07f4ecdf586eeb6deddf381123861c2df Mon Sep 17 00:00:00 2001 From: bronzdoc Date: Mon, 6 Apr 2020 15:11:30 -0600 Subject: [PATCH 2/4] Update sexp_processor and dependencies --- Gemfile.lock | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 873de83..ee20e7b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -16,7 +16,7 @@ GEM descendants_tracker (~> 0.0.4) ice_nine (~> 0.11.0) thread_safe (~> 0.3, >= 0.3.1) - byebug (11.0.1) + byebug (11.1.1) codeclimate-engine-rb (0.4.1) virtus (~> 1.0) codecov (0.1.16) @@ -48,12 +48,12 @@ GEM minitest (5.8.5) minitest-around (0.5.0) minitest (~> 5.0) - parallel (1.19.0) + parallel (1.19.1) parser (2.6.5.0) ast (~> 2.4.0) path_expander (1.1.0) psych (3.1.0) - public_suffix (4.0.3) + public_suffix (4.0.4) rainbow (3.0.0) rake (13.0.1) reek (5.4.1) @@ -62,7 +62,7 @@ GEM parser (>= 2.5.0.0, < 2.7, != 2.5.1.1) psych (~> 3.1.0) rainbow (>= 2.0, < 4.0) - rubocop (0.76.0) + rubocop (0.78.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.6) @@ -72,7 +72,7 @@ GEM ruby-progressbar (1.10.1) ruby_parser (3.14.2) sexp_processor (~> 4.9) - rubycritic (4.3.3) + rubycritic (4.4.1) flay (~> 2.8) flog (~> 4.4) launchy (= 2.4.3) @@ -83,20 +83,20 @@ GEM simplecov (>= 0.17.0) tty-which (~> 0.4.0) virtus (~> 1.0) - sexp_processor (4.14.0) - simplecov (0.18.1) + sexp_processor (4.14.1) + simplecov (0.18.5) docile (~> 1.1) - simplecov-html (~> 0.11.0) + simplecov-html (~> 0.11) simplecov-console (0.5.0) ansi simplecov terminal-table - simplecov-html (0.11.0) + simplecov-html (0.12.2) terminal-table (1.8.0) unicode-display_width (~> 1.1, >= 1.1.1) thread_safe (0.3.6) tty-which (0.4.2) - unicode-display_width (1.6.0) + unicode-display_width (1.6.1) url (0.3.2) virtus (1.0.5) axiom-types (~> 0.1) @@ -121,4 +121,4 @@ DEPENDENCIES skunk! BUNDLED WITH - 2.0.2 + 2.1.4 From 52b1b60f0ef42c86ea419caf5679905c25f21cae Mon Sep 17 00:00:00 2001 From: bronzdoc Date: Mon, 6 Apr 2020 15:13:46 -0600 Subject: [PATCH 3/4] Specify supported ruby versions --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e82f86c..1a38190 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,5 @@ language: ruby rvm: - - 2.0 - - 2.1 - - 2.2 - - 2.3 - 2.4 - 2.5 - 2.6 From 2d095de5cade1554395e25277e7bdf15a69351b4 Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Tue, 7 Apr 2020 17:16:52 -0400 Subject: [PATCH 4/4] Address rubocop update --- .rubocop_todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 9797716..25873a6 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -16,7 +16,7 @@ Layout/ClosingHeredocIndentation: # Cop supports --auto-correct. # Configuration parameters: EnforcedStyle. # SupportedStyles: squiggly, active_support, powerpack, unindent -Layout/IndentHeredoc: +Layout/HeredocIndentation: Exclude: - 'lib/skunk/cli/commands/status_reporter.rb'