csswaxer 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.md +3 -0
  2. data/VERSION +1 -1
  3. metadata +4 -4
data/README.md CHANGED
@@ -19,6 +19,9 @@ Ruby command that prettifies CSS files grouping lines by property rather than by
19
19
 
20
20
  ## History ##
21
21
 
22
+ v0.0.6 2010/04/32
23
+ Requires CSS Parser > 1.1.0 which includes load_file!
24
+
22
25
  v0.0.5 2010/04/32
23
26
  Fixed a bug; now respects multiple property values for the same selector
24
27
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.5
1
+ 0.0.6
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 5
9
- version: 0.0.5
8
+ - 6
9
+ version: 0.0.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Claudio Baccigalupo
@@ -26,9 +26,9 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 1
29
- - 0
30
29
  - 1
31
- version: 1.0.1
30
+ - 0
31
+ version: 1.1.0
32
32
  type: :runtime
33
33
  version_requirements: *id001
34
34
  description: "CSS Waxer refactors CSS files bringing the focus on properties, rather than on selectors. Typically, CSS files are written by groups of selectors, you first specify all the properties of <body>, then those of <h1>, #header, and so on. This makes it hard to catch a glimpse of the overall style of a site, such as the entire list of colors used, the fonts, or the dimensions. CSS Waxer reorders the lines of a CSS files so that properties are grouped together by family. In this way, you can rapidly check together all the fonts used, the colors, backgrounds, layouts and so on for the whole site."