tags:

views:

11

answers:

1

The old generated .css file has

 /* line 27, ../../../app/stylesheets/partials/products/_summary_pane.sass */

which tells where the css (or sass) is originally from. (example: the above say it is from _summary_pane.sass)

and now all of a sudden, these lines are all gone. What might be the cause for it?

+1  A: 

You need to set the following option:

Sass::Plugin.options[:debug_info] = true

Docs here.

This also may be of interest to you:

http://nex-3.com/posts/92-firesass-bridges-the-gap-between-sass-and-firebug

Charles Roper