ruby - Install less compiler with gemfile/bundler -


just title suggests, possible install less compiler using gemfile , bundler

the less compiler installable in ruby through less gem.

to install through bundler need add following gemfile:

gem 'less' 

then can install running:

bundle install 

note less compiler node.js program need javascript runtime run it. if try running lessc , don't have javascript runtime installed throw error explains this. in case want install therubyracer gem. means want add:

gem 'therubyracer' 

to gemfile.


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -