From 18c2b0827ec7022687376c129eb9c95abaf841ac Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Wed, 7 Dec 2016 17:53:45 -0800 Subject: [PATCH] Appease rubocop. --- features/support/helpers.rb | 2 -- lib/jekyll/utils/exec.rb | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/features/support/helpers.rb b/features/support/helpers.rb index 50afa3a8..87cf717c 100644 --- a/features/support/helpers.rb +++ b/features/support/helpers.rb @@ -102,8 +102,6 @@ def run_jekyll(args) end # - -# rubocop:disable Metrics/AbcSize def run_in_shell(*args) p, output = Jekyll::Utils::Exec.run(*args) diff --git a/lib/jekyll/utils/exec.rb b/lib/jekyll/utils/exec.rb index e37685b2..33403dbc 100644 --- a/lib/jekyll/utils/exec.rb +++ b/lib/jekyll/utils/exec.rb @@ -1,4 +1,4 @@ -require 'open3' +require "open3" module Jekyll module Utils