Here are my slides as well as my outline for the talk.
http://www.slideshare.net/metaskills/secrets-of-the-asset-pipeline
If you have any questions or would like to get details on what I showed from HomeMarks, just reply and let me know. For those that remember my problem with precompiling, I figured it out. If you remember I had some global color values and names in my shared/base.scss file like so:
$hm-colors-lnames: ('white', 'aqua', ...);
$hm-colors-mnames: ('timberwolf', 'sky_blue', ...);
$hm-colors-dnames: ('black', 'cerulian', ...);
$hm-colors-names: join(join($hm-colors-lnames, $hm-colors-mnames), $hm-colors-dnames);
The problem was that the names above were not quoted like I have them now. So these names which were used as class name augments were being transposed to their CSS color value like #fff when compiling. Something that technically should have showed up in development mode. Oh well, easy fix.
Thanks again to all that showed up. I love great turnouts!
- Ken