Method: Object#try
- Defined in:
- lib/fqdn_facts/core_ext.rb
#try(method, *args, &block) ⇒ Object
attempts to call a public method
43 44 45 46 47 48 49 |
# File 'lib/fqdn_facts/core_ext.rb', line 43 def try(method, *args, &block) begin self.public_send(method, *args, &block) rescue NoMethodError nil end end |