Skip to content

Commit

Permalink
Update RuboCop 0.45.0 -> 0.48.1 for Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
sds committed Apr 5, 2017
1 parent 4471c2d commit 62652c1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .rubocop.yml
Expand Up @@ -9,6 +9,9 @@ Lint/Void:
Metrics/AbcSize:
Enabled: false

Metrics/BlockLength:
Enabled: false

Metrics/CyclomaticComplexity:
Enabled: false

Expand Down Expand Up @@ -90,6 +93,9 @@ Style/SignalException:
Style/SingleLineBlockParams:
Enabled: false

Style/SymbolArray:
Enabled: false

Style/TrailingCommaInArguments:
Enabled: false

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -7,6 +7,6 @@ gemspec
gem 'overcommit', '0.39.0'

# Pin tool versions (which are executed by Overcommit) for Travis builds
gem 'rubocop', '0.45.0'
gem 'rubocop', '0.48.1'

gem 'coveralls', require: false
9 changes: 3 additions & 6 deletions lib/mock_redis/database.rb
Expand Up @@ -229,14 +229,11 @@ def type(key)
end
end

def script(subcommand, *args)
end
def script(subcommand, *args); end

def evalsha(*args)
end
def evalsha(*args); end

def eval(*args)
end
def eval(*args); end

private

Expand Down

0 comments on commit 62652c1

Please sign in to comment.