Reputation: 941
I am trying to install firesass - https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
it's asking me to add:
Sass::Plugin.options[:debug_info] = true
on config/environment.rb, but i can't find that file. Where can i exactly add that line?
I have windows 7 and I installed Ruby and sass like this: - http://damodarbashyal.hubpages.com/hub/Ruby-SASS-language-is-making-my-life-easier-to-manage-CSS-update
Thanks.
Upvotes: 1
Views: 2362
Reputation: 3500
The setup instructions are related to Rails. If you used Rails, then you would have a file config/environment.rb inside your Rails project.
When invoking sass from the command line, you just need to add the flag --debug-info
.
Upvotes: 4