Less alternatives and similar gems
Based on the "Assets" category.
Alternatively, view Less alternatives based on common mentions on social networks and blogs.
-
Compass
Compass is no longer actively maintained. Compass is a Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Less or a related project?
Popular Comparisons
README
less.rb
The dynamic stylesheet language.
About
These are Ruby bindings for the next generation LESS, which is implemented in JavaScript
For more information, visit http://lesscss.org.
Usage
less.rb exposes the less.Parser
constructor to ruby code via Less::Parser
. You can instate it
context free:
parser = Less::Parser.new
or with configuration options:
parser = Less::Parser.new :paths => ['./lib', 'other/lib'], :filename => 'mystyles.less'
Once you have a parser instantiated, you can parse code to get your AST !
tree = parser.parse(".class {width: 1+1}") # => Less::Tree
tree.to_css #=> .class {\n width: 2;\n}\n
tree.to_css(:compress => true) #=> .class{width:2;}
Development
This repository contains less.js as a submodule, so to run the tests,
you'll need to grab that code as well. To do that, run git submodule update --init
from the root directory of the project.
To run the tests:
bundle
rake
License
less.rb is licensed under the same terms as less.js
See lib/js/LICENSE
file.
copyright 2011,2012 Charles Lowell
*Note that all licence references and agreements mentioned in the Less README section above
are relevant to that project's source code only.