color_json 0.0.1.1 → 0.0.1.2
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.
- checksums.yaml +4 -4
- data/README.md +73 -8
- data/Rakefile +6 -0
- data/example/example.scss +7 -0
- data/example/no_group.scss +7 -0
- data/lib/color_json.rb +1 -1
- data/lib/color_json/cli/application.rb +12 -0
- data/lib/color_json/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cde06551ff3493a9f08900a7dd30ea03e9de983d
|
4
|
+
data.tar.gz: 2d1dd04d23f777105294900ca8537fc08fc54108
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd790a942ca369e715e938d7c2c1fedb0b34936ac4efcf7a5508cf2a65dfab0278b167f27594b89660b8f26d89a83a6c905735a88ba60e93ef4be95552c40c85
|
7
|
+
data.tar.gz: 82fc08698643062a10b4a6959cb59126423095fed264eee2856b296a7316b48cd2f9bdbbfcaf57ff8ad03f0fb5745e60bdeb730254b658b53489b07fc14d9115
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# ColorJson
|
2
2
|
|
3
|
-
Easy way to show your sass/scss/less color list.
|
3
|
+
Easy way to show your `sass/scss/less color` list.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -20,12 +20,77 @@ Or install it yourself as:
|
|
20
20
|
|
21
21
|
## Usage
|
22
22
|
|
23
|
-
|
23
|
+
color_json build <filename>
|
24
24
|
|
25
|
-
|
25
|
+
then you would got your `color.json` file!
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
27
|
+
### Example
|
28
|
+
|
29
|
+
#### Basic usage
|
30
|
+
`no_group.scss`:
|
31
|
+
|
32
|
+
```scss
|
33
|
+
$aqua: #7FDBFF;
|
34
|
+
$blue: #0074D9;
|
35
|
+
$navy: #001F3F;
|
36
|
+
$teal: #39CCCC;
|
37
|
+
```
|
38
|
+
|
39
|
+
it would generate:
|
40
|
+
|
41
|
+
`color.json`:
|
42
|
+
|
43
|
+
```json
|
44
|
+
"color": {
|
45
|
+
"$aqua": " #7FDBFF;",
|
46
|
+
"$blue": " #0074D9;",
|
47
|
+
"$navy": " #001F3F;",
|
48
|
+
"$teal": " #39CCCC;"
|
49
|
+
}
|
50
|
+
```
|
51
|
+
#### Group usage
|
52
|
+
|
53
|
+
You can use `//**` to label your color usage.
|
54
|
+
|
55
|
+
`group.scss`:
|
56
|
+
|
57
|
+
```scss
|
58
|
+
//** main color
|
59
|
+
$aqua: #7FDBFF;
|
60
|
+
$blue: #0074D9;
|
61
|
+
|
62
|
+
//** other
|
63
|
+
$yellow: #FFDC00;
|
64
|
+
$orange: #FF851B;
|
65
|
+
```
|
66
|
+
|
67
|
+
it would generate:
|
68
|
+
|
69
|
+
`color.json`:
|
70
|
+
```json
|
71
|
+
"color": {
|
72
|
+
"main color": {
|
73
|
+
"$aqua": " #7FDBFF;",
|
74
|
+
"$blue": " #0074D9;"
|
75
|
+
},
|
76
|
+
"other": {
|
77
|
+
"$yellow": " #FFDC00;",
|
78
|
+
"$orange": " #FF851B;"
|
79
|
+
}
|
80
|
+
}
|
81
|
+
```
|
82
|
+
|
83
|
+
## What the color.json can do?
|
84
|
+
|
85
|
+
`color.json` can combine with [canner](github.com/canner/canner) and help you show your color list very quickly.
|
86
|
+
|
87
|
+
|
88
|
+
## Issue
|
89
|
+
|
90
|
+
This gem has many needs for imporvement.
|
91
|
+
|
92
|
+
Feel free to fork it and pull request.
|
93
|
+
|
94
|
+
## License
|
95
|
+
|
96
|
+
[@ctxhou](github.com/ctxhou) MIT
|
data/Rakefile
CHANGED
data/lib/color_json.rb
CHANGED
data/lib/color_json/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: color_json
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ctxhou
|
@@ -67,7 +67,10 @@ files:
|
|
67
67
|
- Rakefile
|
68
68
|
- bin/color_json
|
69
69
|
- color_json.gemspec
|
70
|
+
- example/example.scss
|
71
|
+
- example/no_group.scss
|
70
72
|
- lib/color_json.rb
|
73
|
+
- lib/color_json/cli/application.rb
|
71
74
|
- lib/color_json/version.rb
|
72
75
|
homepage: ''
|
73
76
|
licenses:
|