Class: Aws::Record::Marshalers::BooleanMarshaler

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-record/record/marshalers/boolean_marshaler.rb

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ BooleanMarshaler

Returns a new instance of BooleanMarshaler.



7
8
9
# File 'lib/aws-record/record/marshalers/boolean_marshaler.rb', line 7

def initialize(opts = {})
  # pass
end

Instance Method Details

#serialize(raw_value) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/aws-record/record/marshalers/boolean_marshaler.rb', line 22

def serialize(raw_value)
  boolean = type_cast(raw_value)
  case boolean
  when nil
    nil
  when false
    false
  when true
    true
  else
    msg = "expected a boolean value or nil, got #{boolean.class}"
    raise ArgumentError, msg
  end
end

#type_cast(raw_value) ⇒ Object



11
12
13
14
15
16
17
18
19
20
# File 'lib/aws-record/record/marshalers/boolean_marshaler.rb', line 11

def type_cast(raw_value)
  case raw_value
  when nil, ''
    nil
  when false, 'false', '0', 0
    false
  else
    true
  end
end