Public instance methods
try
(method)
Execute a method if it exists.
[show source]
# File lib/cloudkit.rb, line 55 55: def try(method) # via defunkt 56: send method if respond_to? method 57: end