Class: Object

Inherits:
BasicObject
Defined in:
lib/cloudkit.rb

Instance Method Summary collapse

Instance Method Details

#try(method) ⇒ Object

Execute a method if it exists.



39
40
41
# File 'lib/cloudkit.rb', line 39

def try(method) # via defunkt
  send method if respond_to? method
end