aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/vendor/thor/error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/vendor/thor/error.rb')
-rw-r--r--lib/bundler/vendor/thor/error.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/vendor/thor/error.rb b/lib/bundler/vendor/thor/error.rb
index 3174c57e..c53be49b 100644
--- a/lib/bundler/vendor/thor/error.rb
+++ b/lib/bundler/vendor/thor/error.rb
@@ -11,11 +11,11 @@ class Thor
# Raised when a command was not found.
class UndefinedCommandError < Error
end
- UndefinedTaskError = UndefinedCommandError
+ UndefinedTaskError = UndefinedCommandError # rubocop:disable ConstantName
class AmbiguousCommandError < Error
end
- AmbiguousTaskError = AmbiguousCommandError
+ AmbiguousTaskError = AmbiguousCommandError # rubocop:disable ConstantName
# Raised when a command was found, but not invoked properly.
class InvocationError < Error