Module: Qwirk::MarshalStrategy::YAML

Extended by:
YAML
Included in:
YAML
Defined in:
lib/qwirk/marshal_strategy/yaml.rb

Instance Method Summary collapse

Instance Method Details

#marshal(object) ⇒ Object



14
15
16
# File 'lib/qwirk/marshal_strategy/yaml.rb', line 14

def marshal(object)
  object.to_yaml
end

#marshal_typeObject



6
7
8
# File 'lib/qwirk/marshal_strategy/yaml.rb', line 6

def marshal_type
  :text
end

#to_symObject



10
11
12
# File 'lib/qwirk/marshal_strategy/yaml.rb', line 10

def to_sym
  :yaml
end

#unmarshal(msg) ⇒ Object



18
19
20
# File 'lib/qwirk/marshal_strategy/yaml.rb', line 18

def unmarshal(msg)
  ::YAML.load(msg)
end