class Object

Public Instance Methods

process() click to toggle source
# File lib/rash/shell/pry/commands/no_prompt.rb, line 6
def process
  case _pry_.prompt
  when Pry::Prompt[:none][:value]
    _pry_.pop_prompt
  else
    _pry_.push_prompt Pry::Prompt[:none][:value]
  end
end