Class: Playbook::Props::HashArray

Inherits:
Base
  • Object
show all
Defined in:
lib/playbook/props/hash_array.rb

Instance Attribute Summary

Attributes inherited from Base

#default, #deprecated, #kit, #name, #required

Instance Method Summary collapse

Methods inherited from Base

#initialize, #validate!, #value

Constructor Details

This class inherits a constructor from Playbook::Props::Base

Instance Method Details

#validate(value) ⇒ Object



6
7
8
9
10
# File 'lib/playbook/props/hash_array.rb', line 6

def validate(value)
  return false unless value.is_a?(::Array)

  value.all?(::Hash)
end