class Playbook::Props::Numeric

def validate(value)

def validate(value)
  value.nil? ||
    value.is_a?(Integer) ||
    value.is_a?(Float)
end