Compile .CSS from .SCSS (SASS) in Ruby Project
I see that in a Rails project, RubyMine seems to handle auto-compiling any Sass style sheets (.scss) within the 'stylesheets' folder.
I've got a situation where I'm trying to create a pure JS library, that uses Sass, and so I just want to create a standard Ruby project and use RubyMine for it's awesome JavaScript IDE-ishness.
Is there some way to tell RubyMine to compile the SASS files in a default Ruby project, or do I need the whole weight of a Rails project?
Thanks
请先登录再写评论。
Hello Phil,
RubyMine doesn't provide any support for this kind of complilation yet. Rails itself performs this operation.
However feel free to vote, comment and track progress of the corresponding issue: http://youtrack.jetbrains.net/issue/WI-1234
Regards,
Oleg
Ah - OK. Thanks Oles. Didn't realize that was magic coming from Rails. Guess I'll stick with the SASS --watch command.
Cheers.