class Object

Public Instance Methods

blank?() click to toggle source
# File lib/sailpoint/core_ext/blank.rb, line 5
def blank?
  respond_to?(:empty?) ? !!empty? : !self
end
escape_str() click to toggle source

In case anything other than a string is called with escape_str @return [String]

# File lib/sailpoint/core_ext/escape_str.rb, line 8
def escape_str
  ''
end
present?() click to toggle source
# File lib/sailpoint/core_ext/blank.rb, line 9
def present?
  !blank?
end