class HugoFrappier
ABOUT = {
'live' => "Montreal",
'job' => "Web Development",
'company' => "Cekoya Informatique",
'favorites' => {
'fruit' => "blueberry",
'language' => "ruby",
'car' => "volvo",
'computer' => "macintosh"
},
'platforms' => %w(macosx linux windows)
}
def about
puts ABOUT.to_yaml
end
end
Geek lol