Class: DevSystem::PryCommand

Inherits:
Command show all
Defined in:
lib/dev_system/sub/command/commands/pry_command.rb

Class Method Summary collapse

Methods inherited from Command

#call, get_command_signatures

Methods inherited from Liza::Controller

color, inherited, on_connected

Methods inherited from Liza::Unit

const_missing, division, part, system, #system, test_class

Class Method Details

.call(args) ⇒ Object



3
4
5
6
7
8
# File 'lib/dev_system/sub/command/commands/pry_command.rb', line 3

def self.call args
  require "pry"
  log "args = #{args.inspect}"

  Pry.start
end