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
Post a Comment