class Object

Public Instance Methods

blank?() click to toggle source
# File lib/tm2gsv/extensions.rb, line 2
def blank?
  false
end
try(*args) click to toggle source
# File lib/tm2gsv/extensions.rb, line 6
def try(*args)
  send(*args) if respond_to?(args.first)
end