Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/stub_requests/core_ext/object/blank.rb
Overview
Instance Method Summary collapse
-
#blank? ⇒ true, false
An object is blank if it's false, empty, or a whitespace string.
-
#presence ⇒ Object
Returns the receiver if it's present otherwise returns +nil+.
-
#present? ⇒ true, false
An object is present if it's not blank.
Instance Method Details
#blank? ⇒ true, false
An object is blank if it's false, empty, or a whitespace string. For example, +nil+, '', ' ', [], {}, and +false+ are all blank.
This simplifies
!address || address.empty?
to
address.blank?
24 25 26 |
# File 'lib/stub_requests/core_ext/object/blank.rb', line 24 def blank? respond_to?(:empty?) ? !!empty? : !self # rubocop:disable Style/DoubleNegation end |
#presence ⇒ Object
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'
51 52 53 |
# File 'lib/stub_requests/core_ext/object/blank.rb', line 51 def presence self if present? end |
#present? ⇒ true, false
An object is present if it's not blank.
31 32 33 |
# File 'lib/stub_requests/core_ext/object/blank.rb', line 31 def present? !blank? end |