mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
rubocop: fix offences of the Style/SignalException cop
This commit is contained in:
parent
de5feb6372
commit
13b10dad38
2 changed files with 1 additions and 9 deletions
|
@ -314,14 +314,6 @@ Style/PerlBackrefs:
|
|||
- 'lib/pry/method.rb'
|
||||
- 'lib/pry/rubygem.rb'
|
||||
|
||||
# Offense count: 1
|
||||
# Cop supports --auto-correct.
|
||||
# Configuration parameters: EnforcedStyle.
|
||||
# SupportedStyles: only_raise, only_fail, semantic
|
||||
Style/SignalException:
|
||||
Exclude:
|
||||
- 'lib/pry/command_set.rb'
|
||||
|
||||
# Offense count: 116
|
||||
# Cop supports --auto-correct.
|
||||
# Configuration parameters: AllowIfMethodIsEmpty.
|
||||
|
|
|
@ -181,7 +181,7 @@ class Pry
|
|||
# @example Pass explicit description (overriding default).
|
||||
# Pry.config.commands.alias_command "lM", "ls -M", :desc => "cutiepie"
|
||||
def alias_command(match, action, options = {})
|
||||
(cmd = find_command(action)) || fail("Command: `#{action}` not found")
|
||||
(cmd = find_command(action)) || raise("Command: `#{action}` not found")
|
||||
original_options = cmd.options.dup
|
||||
|
||||
options = original_options.merge!(
|
||||
|
|
Loading…
Add table
Reference in a new issue