Class: Object

Inherits:
BasicObject
Defined in:
lib/gemsupport/core_ext/blank.rb

Overview

Instance Method Summary collapse

Instance Method Details

#blank?true, false

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

This simplifies

address.nil? || address.empty?

to

address.blank?


15
16
17
# File 'lib/gemsupport/core_ext/blank.rb', line 15

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

#presenceObject

Returns the receiver if it’s present otherwise returns nil. object.presence is equivalent to

object.present? ? object : nil

For example, something like

state   = params[:state]   if params[:state].present?
country = params[:country] if params[:country].present?
region  = state || country || 'US'

becomes

region = params[:state].presence || params[:country].presence || 'US'


42
43
44
# File 'lib/gemsupport/core_ext/blank.rb', line 42

def presence
  self if present?
end

#present?true, false

An object is present if it’s not blank.



22
23
24
# File 'lib/gemsupport/core_ext/blank.rb', line 22

def present?
  !blank?
end