Skip to content

Commit cfc08ed

Browse files
committed
Upgrade RuboCop 0.32.1 -> 0.33.0 for Travis
In the process, fix some new warnings that were introduced by the upgrade.
1 parent 8c9d794 commit cfc08ed

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ source 'https://rubygems.org'
44
gem 'coveralls'
55

66
# Pin RuboCop for Travis builds.
7-
gem 'rubocop', '0.32.1'
7+
gem 'rubocop', '0.33.0'
88

99
gemspec

lib/overcommit/configuration.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def all_plugin_hook_configs
7171
Overcommit::Utils.supported_hook_types.each do |hook_type|
7272
hook_type_class_name = Overcommit::Utils.camel_case(hook_type)
7373

74-
directory = File.join(plugin_directory, hook_type.gsub('-', '_'))
74+
directory = File.join(plugin_directory, hook_type.tr('-', '_'))
7575
plugin_paths = Dir[File.join(directory, '*.rb')].sort
7676

7777
hook_names = plugin_paths.map do |path|

lib/overcommit/hook_context/base.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def hook_type_name
4949
#
5050
# @return [String]
5151
def hook_script_name
52-
hook_type_name.gsub('_', '-')
52+
hook_type_name.tr('_', '-')
5353
end
5454

5555
# Initializes anything related to the environment.

lib/overcommit/utils.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def supported_hook_types
108108
Dir[File.join(HOOK_DIRECTORY, '*')].
109109
select { |file| File.directory?(file) }.
110110
reject { |file| File.basename(file) == 'shared' }.
111-
map { |file| File.basename(file).gsub('_', '-') }
111+
map { |file| File.basename(file).tr('_', '-') }
112112
end
113113

114114
# Returns a list of supported hook classes (PreCommit, CommitMsg, etc.)

lib/overcommit/utils/file_utils.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def win32_mklink_cmd(old_name, new_name)
5858
end
5959

6060
def win32_fix_pathsep(path)
61-
path.gsub('/', '\\')
61+
path.tr('/', '\\')
6262
end
6363

6464
def win32_symlink?(dir_output)

spec/overcommit/default_configuration_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Overcommit::Utils.supported_hook_types.each do |hook_type|
88
hook_class = Overcommit::Utils.camel_case(hook_type)
99

10-
Dir[File.join(Overcommit::HOOK_DIRECTORY, hook_type.gsub('-', '_'), '*')].
10+
Dir[File.join(Overcommit::HOOK_DIRECTORY, hook_type.tr('-', '_'), '*')].
1111
map { |hook_file| Overcommit::Utils.camel_case(File.basename(hook_file, '.rb')) }.
1212
each do |hook|
1313
next if hook == 'Base'

spec/overcommit/hook/pre_commit/author_email_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
require 'spec_helper'
22

33
describe Overcommit::Hook::PreCommit::AuthorEmail do
4-
let(:config) { Overcommit::ConfigurationLoader.default_configuration }
4+
let(:config) { Overcommit::ConfigurationLoader.default_configuration }
55
let(:context) { double('context') }
66
subject { described_class.new(config, context) }
7-
let(:result) { double('result') }
7+
let(:result) { double('result') }
88

99
before do
1010
result.stub(:stdout).and_return(email)

spec/overcommit/hook/pre_commit/author_name_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
require 'spec_helper'
22

33
describe Overcommit::Hook::PreCommit::AuthorName do
4-
let(:config) { Overcommit::ConfigurationLoader.default_configuration }
4+
let(:config) { Overcommit::ConfigurationLoader.default_configuration }
55
let(:context) { double('context') }
66
subject { described_class.new(config, context) }
7-
let(:result) { double('result') }
7+
let(:result) { double('result') }
88

99
before do
1010
result.stub(:stdout).and_return(name)

spec/support/matchers/hook.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def failure_message(actual, error_message)
5656
end
5757

5858
# Can't use 'fail' as it is a reserved word.
59-
RSpec::Matchers.define :fail_hook do |*args|
59+
RSpec::Matchers.define :fail_hook do |*args|
6060
check_matcher = HookMatcher.new(:fail, args)
6161

6262
match do

0 commit comments

Comments
 (0)