Going through Hartl's Rails tutorial, and he mentions that while:
stylesheet_link_tag "application", { media: "all",
                                 "data-turbolinks-track" => true } 
is valid
stylesheet_link_tag "application", { media: "all",
                                 data-turbolinks-track: true }
is not valid because "invalid because of hyphens." Can anyone explain this further for me? Why do hyphens make this invalid?
 
     
     
    