Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/rest-object/gree_ruby_extensions.rb
Instance Method Summary collapse
Instance Method Details
#hash_value_missing?(key) ⇒ Boolean
25 26 27 28 |
# File 'lib/rest-object/gree_ruby_extensions.rb', line 25 def hash_value_missing?(key) # test if key is missing, or key value is nil or empty string return !self.has_key?(key) || self[key]=="" || self[key].nil? end |