less 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/less.gemspec +1 -1
- data/lib/less/engine/grammar/less.tt +6 -1
- data/spec/css/css.css +1 -0
- data/spec/less/css.less +1 -0
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.8
|
data/less.gemspec
CHANGED
|
@@ -135,7 +135,12 @@ module Less
|
|
|
135
135
|
def all
|
|
136
136
|
[expression] + tail.elements.map {|f| f.expression }
|
|
137
137
|
end
|
|
138
|
-
|
|
138
|
+
# Catch-all rule
|
|
139
|
+
} / [-a-zA-Z0-9_%*/.&=:,#+? \[\]()]+ {
|
|
140
|
+
def build env
|
|
141
|
+
[Node::Anonymous.new(text_value)]
|
|
142
|
+
end
|
|
143
|
+
}
|
|
139
144
|
end
|
|
140
145
|
|
|
141
146
|
rule expression
|
data/spec/css/css.css
CHANGED
data/spec/less/css.less
CHANGED