Class: Shale::Type::Boolean

Inherits:
Value
  • Object
show all
Defined in:
lib/shale/type/boolean.rb

Overview

Cast value to Boolean

Constant Summary collapse

FALSE_VALUES =
[
  false,
  0,
  '0',
  'f',
  'F',
  'false',
  'FALSE',
  'off',
  'OFF',
].freeze

Class Method Summary collapse

Methods inherited from Value

as_csv, as_hash, as_json, as_toml, as_xml, as_xml_value, as_yaml, of_csv, of_hash, of_json, of_toml, of_xml, of_yaml

Class Method Details

.cast(value) ⇒ Boolean?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • value (any)

    Value to cast

Returns:



28
29
30
# File 'lib/shale/type/boolean.rb', line 28

def self.cast(value)
  !FALSE_VALUES.include?(value) unless value.nil?
end