Module: Yello::FromYaml

Defined in:
lib/yello/from_yaml.rb

Class Method Summary collapse

Class Method Details

.convert(string) ⇒ Object



14
15
16
17
18
# File 'lib/yello/from_yaml.rb', line 14

def convert(string)
  YAML.load(string).map{|k,v|
    Yello::List.new(k, cards(v))
  } 
end