Sha256: fc95c244daf5ffff673133305eb480de3ca6ea3be97f3132d6fec922a04dad98
Contents?: true
Size: 421 Bytes
Versions: 253
Compression:
Stored size: 421 Bytes
Contents
class Pry class Command::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) eval_string.replace indented_str end end Pry::Commands.add_command(Pry::Command::FixIndent) end
Version data entries
253 entries across 246 versions & 44 rubygems