How can I call the sass function from a ruby ββfile?
The following line works on the command line:
sass C:\Users\..etc..\main.scss
I need to put this in a Ruby file. Therefore, I wrote, as shown below, in the Ruby file:
require 'sass' $arg1 = 'C:/Users/dmoores/Desktop/testst/main.scss' sass $arg1
But he complains about the following:
undefined method `sass' for main:Object (NoMethodError)
source share