class Object

Changes:

  1. Now using a more recent version from ActiveSupport. This more recent version from ActiveSupport is likely more efficient and slightly more succinct.

Public Instance Methods

blank?() click to toggle source
# File lib/ImpURI/Object/blankQ.rb, line 14
def blank?
  respond_to?(:empty?) ? empty? : !self
end