bundler/lib/bundler/vendor/thor/lib/thor/error.rb in rubygems-update-3.2.34 vs bundler/lib/bundler/vendor/thor/lib/thor/error.rb in rubygems-update-3.3.0

- old
+ new

@@ -100,16 +100,11 @@ class MalformattedArgumentError < InvocationError end if Correctable - if DidYouMean.respond_to?(:correct_error) - DidYouMean.correct_error(Bundler::Thor::UndefinedCommandError, UndefinedCommandError::SpellChecker) - DidYouMean.correct_error(Bundler::Thor::UnknownArgumentError, UnknownArgumentError::SpellChecker) - else - DidYouMean::SPELL_CHECKERS.merge!( - 'Bundler::Thor::UndefinedCommandError' => UndefinedCommandError::SpellChecker, - 'Bundler::Thor::UnknownArgumentError' => UnknownArgumentError::SpellChecker - ) - end + DidYouMean::SPELL_CHECKERS.merge!( + 'Bundler::Thor::UndefinedCommandError' => UndefinedCommandError::SpellChecker, + 'Bundler::Thor::UnknownArgumentError' => UnknownArgumentError::SpellChecker + ) end end