Sha256: 42b83cbe810fbd72a1b9f6a13bdf9471f155562903ab0697e36b3938c1ff5510
Contents?: true
Size: 498 Bytes
Versions: 6509
Compression:
Stored size: 498 Bytes
Contents
# frozen_string_literal: true class Pry class Command class FixIndent < Pry::ClassCommand match 'fix-indent' group 'Input and Output' description "Correct the indentation for contents of the input buffer" banner <<-USAGE Usage: fix-indent USAGE def process indented_str = Pry::Indent.indent(eval_string) pry_instance.eval_string = indented_str end end Pry::Commands.add_command(Pry::Command::FixIndent) end end
Version data entries
6,509 entries across 6,505 versions & 30 rubygems