Top Level Namespace

Defined Under Namespace

Modules: RFC822 Classes: Doodle, OrderedHash

Instance Method Summary collapse

Instance Method Details

#try(&block) ⇒ Object



6
7
8
9
10
11
12
# File 'lib/doodle/utils.rb', line 6

def try(&block)
  begin
    block.call
  rescue Exception => e
    e
  end
end