How to install Sass gem in Windows

0

I wanted to install Sass's gem so I could compile it in Windows. I installed the normal Ruby Installer and soon after I went into the Sass documentation on how to run it on Windows using console mode, however when I run the gem install sass line to install the gem it returns me:

  

local variable or method 'sass'

How can I resolve this?

    
asked by anonymous 10.02.2014 / 14:37

1 answer

1

What version of rails are you using?

Try Gemfile:

add the line:

gem 'sass-rails'

then run the command:

bundle install
    
10.02.2014 / 14:43