module PPC
Constants
- VERSION
Protected Instance Methods
print_debug(var,varname=nil)
click to toggle source
# File lib/ppc.rb, line 9 def print_debug(var,varname=nil) puts '=' * 10 + varname.to_s + '=' * 10 if var.is_a? String puts var else ap var end puts '=' * 10 + varname.to_s + '=' * 10 end