aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/vendor/thor/error.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-12-23 14:39:09 -0800
committerAndre Arko <andre@arko.net>2013-12-23 14:39:09 -0800
commit9199fcf568da4d8978c2343e4fab38a779b0819c (patch)
tree673fd23b007a1706a78b06f90c69e355c877ec4f /lib/bundler/vendor/thor/error.rb
parentd083ca15c9abbd0652dd65c0ea97239ea4ec9a91 (diff)
downloadbundler-9199fcf568da4d8978c2343e4fab38a779b0819c.tar.gz
update thor to erikhuda/thor@62593e
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