class Object

Public Instance Methods

try(method) click to toggle source
# File lib/samlr.rb, line 38
def try(method)
  send(method) if respond_to?(method)
end