class Pry::Command::FixIndent

Public Instance Methods

process() click to toggle source
# File lib/pry/commands/fix_indent.rb, line 15
def process
  indented_str = Pry::Indent.indent(eval_string)
  pry_instance.eval_string = indented_str
end