I am new to Padrino with little idea of haml/sass following sample blog tutorial from padrinorb.com. I have included sass gem in my sample project.
When I run my sample project changes done to application.sass present in app/stylesheets does not reflect in my haml until I include/link the generated application.css present in public/stylesheets. i.e. My styling works only if I include the below line in my haml
%link(rel="stylesheet" type="text/css" href="stylesheets/application.css")
My doubt is on how this auto linking happening for the sample blog padrinorb.com project but not for my sample project which requires manual linking?