Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/sailpoint/helpers.rb

Overview

Used to override and give Hash the blank? validation similar to Rails

Instance Method Summary collapse

Instance Method Details

#present?true, false

Used to determine if the object is not nil

Returns:

  • (true, false)


72
73
74
# File 'lib/sailpoint/helpers.rb', line 72

def present?
  !blank?
end