class Pry::CommandProcessor

def pry_command?(val)

Returns:
  • (Boolean) - Whether the string is a valid Pry command.

Parameters:
  • val (String) -- The string passed in from the Pry prompt.
def pry_command?(val)
  !!command_matched(val).first
end