Class: Playbook::Props::Boolean

Inherits:
Base
  • Object
show all
Defined in:
lib/playbook/props/boolean.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
# File 'lib/playbook/props/boolean.rb', line 6

def validate(value)
  value === true || value === false
end