From 8be967d617f94fbb564df2156dc835679b43f2f0 Mon Sep 17 00:00:00 2001 From: htwroclau Date: Sun, 24 Feb 2019 01:35:36 +0900 Subject: [PATCH] chore: Fix RuboCop Layout/AccessModifierIndentation --- .rubocop_todo.yml | 10 +--------- lib/faraday.rb | 2 +- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 9bf23fa4b..c715cf951 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,19 +1,11 @@ # This configuration was generated by # `rubocop --auto-gen-config` -# on 2019-02-20 22:39:41 +0100 using RuboCop version 0.65.0. +# on 2019-02-23 11:03:41 +0100 using RuboCop version 0.65.0. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new # versions of RuboCop, may require this file to be generated again. -# Offense count: 1 -# Cop supports --auto-correct. -# Configuration parameters: EnforcedStyle, IndentationWidth. -# SupportedStyles: outdent, indent -Layout/AccessModifierIndentation: - Exclude: - - 'lib/faraday.rb' - # Offense count: 25 # Cop supports --auto-correct. # Configuration parameters: EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle. diff --git a/lib/faraday.rb b/lib/faraday.rb index 03153f8e7..e0a6b4989 100644 --- a/lib/faraday.rb +++ b/lib/faraday.rb @@ -105,7 +105,7 @@ def respond_to?(symbol, include_private = false) default_connection.respond_to?(symbol, include_private) || super end - private + private # Internal: Proxies method calls on the Faraday constant to # .default_connection. def method_missing(name, *args, &block)