Class: Object

Inherits:
BasicObject
Defined in:
lib/dayone-kindle.rb

Overview

Instance Method Summary collapse

Instance Method Details

#try(*a, &b) ⇒ Object



6
7
8
# File 'lib/dayone-kindle.rb', line 6

def try(*a, &b)
  try!(*a, &b) if a.empty? || respond_to?(a.first)
end

#try!(*a, &b) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/dayone-kindle.rb', line 10

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