Class: Object

Inherits:
BasicObject
Defined in:
lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb

Instance Method Summary collapse

Instance Method Details

#blank?Boolean

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

This simplifies

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

to

if !address.blank?

Returns:

  • (Boolean)


14
15
16
17
18
19
20
21
22
# File 'lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb', line 14

def blank?
  if respond_to?(:empty?) && respond_to?(:strip)
    empty? or strip.empty?
  elsif respond_to?(:empty?)
    empty?
  else
    !self
  end
end