📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 23:46:01
📂
/
/
opt
/
alt
/
ruby33
/
share
/
rubygems
/
rubygems
✏️
Editing: unknown_command_spell_checker.rb
# frozen_string_literal: true class Gem::UnknownCommandSpellChecker attr_reader :error def initialize(error) @error = error end def corrections @corrections ||= spell_checker.correct(error.unknown_command).map(&:inspect) end private def spell_checker dictionary = Gem::CommandManager.instance.command_names DidYouMean::SpellChecker.new(dictionary: dictionary) end end
💾 Save Changes
❌ Cancel