Class: Object

Inherits:
BasicObject
Defined in:
lib/chimps/utils/extensions.rb

Instance Method Summary collapse

Instance Method Details

#blank?Boolean

An object is blank if it’s false, empty, or a whitespace string. For example, “”, “ ”, nil, [], and {} are blank.

This simplifies

if !address.nil? && !address.empty?

to

if !address.blank?

Returns:

  • (Boolean)


63
64
65
# File 'lib/chimps/utils/extensions.rb', line 63

def blank?
  respond_to?(:empty?) ? empty? : !self
end

#present?Boolean

An object is present if it’s not blank.

Returns:

  • (Boolean)


68
69
70
# File 'lib/chimps/utils/extensions.rb', line 68

def present?
  !blank?
end