Sha256: 9776c9a7b2d17e643f9f33cab8b26fe98407b33b2bc4df31e348c16c7946f0c6

Contents?: true

Size: 1.57 KB

Versions: 28

Compression:

Stored size: 1.57 KB

Contents

# Copied from Rails ActiveSupport 2.3.18:
# activesupport-2.3.18/lib/active_support/core_ext/object/blank.rb
#
# == License
# Active Support is released under the MIT license.

class Object
  # 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?
  def blank?
    respond_to?(:empty?) ? empty? : !self
  end

  # An object is present if it's not blank.
  def present?
    !blank?
  end

  # 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'
  def presence
    self if present?
  end
end

class NilClass #:nodoc:
  def blank?
    true
  end
end

class FalseClass #:nodoc:
  def blank?
    true
  end
end

class TrueClass #:nodoc:
  def blank?
    false
  end
end

class Array #:nodoc:
  alias_method :blank?, :empty?
end

class Hash #:nodoc:
  alias_method :blank?, :empty?
end

class String #:nodoc:
  def blank?
    self !~ /\S/
  end
end

class Numeric #:nodoc:
  def blank?
    false
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
vagrant-skytap-0.3.6 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.3.5 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.3.4 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.3.3 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.3.2 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.3.1 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.3.0 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.10 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.9 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.8 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.7 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.6 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.5 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.3 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.2 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.1 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.2.0 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.1.11 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.1.10 lib/vagrant-skytap/core_ext/object/blank.rb
vagrant-skytap-0.1.9 lib/vagrant-skytap/core_ext/object/blank.rb