Flowdock
method

try!

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: Tryable
try!(*a, &b) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/object/try.rb, line 11
    def try!(*a, &b)
      if a.empty? && block_given?
        if b.arity == 0
          instance_eval(&b)
        else
          yield self
        end
      else
        public_send(*a, &b)
      end
    end
Register or log in to add new notes.