Method: Support::Tryable#try
- Defined in:
- lib/paradocs/support.rb
#try(method_name = nil, *args, &b) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/paradocs/support.rb', line 5 def try(method_name = nil, *args, &b) if method_name.nil? && block_given? if b.arity == 0 instance_eval(&b) else yield self end elsif respond_to?(method_name) public_send(method_name, *args, &b) end end |