Skip to content

KeeperPat/music-yaml-parsing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Yaml Parsing

Given the a Yaml file of the format found in music.yaml parse the file so that we can access it in Ruby.

Your parsing code should return an object that allows you to access attributes using the [] operator:

data["genres"].last["artists"].first["albums"].first["tracks"].last["name"] => "But Not For Me"

The returned object should also allow you to access attributes using method calls:

data.genres.last.artists.first.albums.first.tracks.last.name => "But Not For Me"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages