Class: RSpecRcv::Codecs::Yaml

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec-rcv/codecs/yaml.rb

Instance Method Summary collapse

Instance Method Details

#decode_with(str) ⇒ Object



10
11
12
# File 'lib/rspec-rcv/codecs/yaml.rb', line 10

def decode_with(str)
  YAML.load(str)
end

#export_with(hash) ⇒ Object



6
7
8
# File 'lib/rspec-rcv/codecs/yaml.rb', line 6

def export_with(hash)
  YAML.dump(hash)
end