module Kernel

Public Instance Methods

require_relative(path) click to toggle source
# File lib/soap/soap.rb, line 159
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 149
def warn(msg)
  STDERR.puts(msg + "\n") unless $VERBOSE.nil?
end