Sha256: ad19fb7f850d700d88afa6ce32ebcd2d30220f2e94ac90d8399ecee0546c46e8
Contents?: true
Size: 451 Bytes
Versions: 79
Compression:
Stored size: 451 Bytes
Contents
class Pry class Command::SimplePrompt < Pry::ClassCommand match 'simple-prompt' group 'Misc' description 'Toggle the simple prompt.' banner <<-'BANNER' Toggle the simple prompt. BANNER def process case _pry_.prompt when Pry::SIMPLE_PROMPT _pry_.pop_prompt else _pry_.push_prompt Pry::SIMPLE_PROMPT end end end Pry::Commands.add_command(Pry::Command::SimplePrompt) end
Version data entries
79 entries across 79 versions & 5 rubygems