Just as the title suggests, is it possible to install the less compiler using a gemfile and bundler
问问题
185 次
1 回答
1
less 编译器可以通过less
gem 安装在 ruby 中。
要通过捆绑器安装它,您只需将以下内容添加到您的 gemfile 中:
gem 'less'
然后你可以通过运行安装它:
bundle install
请注意,less 编译器是一个 node.js 程序,因此您需要一个 javascript 运行时才能运行它。如果您尝试运行lessc
并且没有安装 javascript 运行时,它将抛出一个错误来解释这一点。在这种情况下,您还想安装therubyracer
gem 之类的东西。这意味着您还想添加:
gem 'therubyracer'
到你的gemfile。
于 2013-08-10T16:36:41.843 回答