Class: Object

Inherits:
BasicObject
Defined in:
lib/syncwise_api/ext/core_ext.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 all blank.

This simplifies:

if address.nil? || address.empty?

…to:

if address.blank?

Returns:

  • (Boolean)


30
31
32
# File 'lib/syncwise_api/ext/core_ext.rb', line 30

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

#presenceObject

Returns object if it’s present? otherwise returns nil. object.presence is equivalent to object.present? ? object : nil.

This is handy for any representation of objects where blank is the same as not present at all. For example, this simplifies a common check for HTTP POST/query parameters:

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'


53
54
55
# File 'lib/syncwise_api/ext/core_ext.rb', line 53

def presence
  self if present?
end

#present?Boolean

An object is present if it’s not blank?.

Returns:

  • (Boolean)


35
36
37
# File 'lib/syncwise_api/ext/core_ext.rb', line 35

def present?
  !blank?
end

#unqualified_classObject

Returns just the class name as a String, without namespace/modules For example, this method called on class This::That::AndTheOtherThing will return AndTheOtherThing



60
61
62
# File 'lib/syncwise_api/ext/core_ext.rb', line 60

def unqualified_class
  self.class.to_s.split('::').last
end