Sha256: 9f17d367a57a6204158e6cd855d3098efd0b11acb8f5041fcacdb466ec298664
Contents?: true
Size: 454 Bytes
Versions: 159
Compression:
Stored size: 454 Bytes
Contents
class Pry class Command::SimplePrompt < Pry::ClassCommand match 'simple-prompt' group 'prompts' 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
159 entries across 152 versions & 35 rubygems