less 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +60 -0
- data/VERSION +1 -1
- data/less.gemspec +3 -2
- data/lib/less/engine/nodes/function.rb +1 -1
- data/spec/css/colors.css +4 -1
- data/spec/less/colors.less +1 -0
- metadata +3 -2
data/CHANGELOG
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
1.1.5
|
2
|
+
- rgb() fix
|
3
|
+
1.1.4
|
4
|
+
- support for uppercase ids and classes
|
5
|
+
- `ex` support
|
6
|
+
- fixed ruby 1.8 from outputting ascii numbers in the CLI
|
7
|
+
1.1.3
|
8
|
+
- fix to Growl messages
|
9
|
+
- better benchmark task output
|
10
|
+
1.1.2
|
11
|
+
- full parens support
|
12
|
+
- don't raise an exception if growlnotify wasn't found
|
13
|
+
1.1.1
|
14
|
+
- added title to Growl notifications
|
15
|
+
1.1.0
|
16
|
+
- added color to command line output
|
17
|
+
- added Growl support
|
18
|
+
1.0.16
|
19
|
+
- basic support for parens
|
20
|
+
- support for operations in shorthand properties
|
21
|
+
1.0.15
|
22
|
+
- moved to treetop 1.3.0
|
23
|
+
- fixed benchmark task
|
24
|
+
1.0.14
|
25
|
+
- support for `*property:` hack
|
26
|
+
1.0.13
|
27
|
+
- importing .css files now works
|
28
|
+
1.0.12
|
29
|
+
- basic selector grouping for better output
|
30
|
+
- evaluate variables lazily
|
31
|
+
- support for values starting with `-`
|
32
|
+
1.0.11
|
33
|
+
- ruby 1.8 compatibility fix
|
34
|
+
1.0.10
|
35
|
+
- additional support for css 3
|
36
|
+
1.0.9
|
37
|
+
- overhauled color support & operations
|
38
|
+
- better handling of css 3 selectors
|
39
|
+
1.0.8
|
40
|
+
- support for rgba
|
41
|
+
- fixed color expansion
|
42
|
+
- fixed new-line error in declarations
|
43
|
+
- fixed attriute selector without element name error
|
44
|
+
1.0.6
|
45
|
+
- fixed grammar for .class#id
|
46
|
+
- fixed color padding issue
|
47
|
+
1.0.5
|
48
|
+
- added attribute selectors (accessors)
|
49
|
+
- semi-column at end of ruleset now works
|
50
|
+
1.0.4
|
51
|
+
- removed dependency on polyglot gem
|
52
|
+
- fixed a moz hack not compiling
|
53
|
+
1.0.3
|
54
|
+
- fixed problem with floats repeating unit twice
|
55
|
+
1.0.2
|
56
|
+
- added support for url() without quotes
|
57
|
+
1.0.1
|
58
|
+
- pulled some patches from jgarber's treetop
|
59
|
+
1.0.0
|
60
|
+
- initial release
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.6
|
data/less.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{less}
|
5
|
-
s.version = "1.1.
|
5
|
+
s.version = "1.1.6"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["cloudhead"]
|
9
|
-
s.date = %q{2009-07-
|
9
|
+
s.date = %q{2009-07-29}
|
10
10
|
s.default_executable = %q{lessc}
|
11
11
|
s.description = %q{LESS is leaner CSS}
|
12
12
|
s.email = %q{self@cloudhead.net}
|
@@ -17,6 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
]
|
18
18
|
s.files = [
|
19
19
|
".gitignore",
|
20
|
+
"CHANGELOG",
|
20
21
|
"LICENSE",
|
21
22
|
"README.md",
|
22
23
|
"Rakefile",
|
data/spec/css/colors.css
CHANGED
data/spec/less/colors.less
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: less
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- cloudhead
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-07-
|
12
|
+
date: 2009-07-29 00:00:00 -04:00
|
13
13
|
default_executable: lessc
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -24,6 +24,7 @@ extra_rdoc_files:
|
|
24
24
|
- README.md
|
25
25
|
files:
|
26
26
|
- .gitignore
|
27
|
+
- CHANGELOG
|
27
28
|
- LICENSE
|
28
29
|
- README.md
|
29
30
|
- Rakefile
|