module Kernel
Public Instance Methods
require_relative(path)
click to toggle source
# File lib/soap/soap.rb, line 170 def require_relative(path) require File.join(File.dirname(caller[0]), path.to_str) end
warn(msg)
click to toggle source
# File lib/soap/soap.rb, line 160 def warn(msg) STDERR.puts(msg + "\n") unless $VERBOSE.nil? end