module Kernel

Public Instance Methods

p(*args) click to toggle source
# File lib/spectator/debug.rb, line 3
def p(*args)
  real_p(*args) if $spectator_debug
end
Also aliased as: real_p
p_print(*args) click to toggle source
# File lib/spectator/debug.rb, line 6
def p_print(*args)
  print(*args) if $spectator_debug
end
real_p(*args)
Alias for: p