stylicon 0.1.0 → 0.1.1
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/bin/stylicon +10 -0
- data/lib/stylicon/version.rb +1 -1
- data/stylicon-0.1.0.gem +0 -0
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9af3fe5da6c68d6f86d93e6a173f0094016bd65125c3e4da49a54d485e187ac9
|
|
4
|
+
data.tar.gz: 226843d7967a4cf0c7004eda7203bd31181dba496d500d731ab9e3afce2b352f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1fb2626ab3d2caf0bb144a44a07fe91d7d48aa2d3714e996837369574f327c41870fb3b273b100a9283dd5f6c9ec0e75451132816acd34a74de9ae4cf14ea87
|
|
7
|
+
data.tar.gz: a41ee5008598570cf22013734954cdd45d52507b7f2db78cc4b8adff96185bd76436c129cef7fe33a0a708d9b4ab26c22d09a066e8c107adb26fbe5a653a66f5
|
data/bin/stylicon
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
require_relative "../lib/stylicon"
|
|
5
|
+
require_relative "../lib/stylicon/generator"
|
|
6
|
+
|
|
7
|
+
config = ARGV[0] || "icons.yml"
|
|
8
|
+
output = ARGV[1] || "stylicon.css"
|
|
9
|
+
|
|
10
|
+
Stylicon::Generator.new(config, output).generate
|
data/lib/stylicon/version.rb
CHANGED
data/stylicon-0.1.0.gem
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stylicon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- JG
|
|
8
|
-
bindir:
|
|
8
|
+
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
@@ -14,7 +14,8 @@ description: Stylicon is a tool that takes SVG files and a YAML config to genera
|
|
|
14
14
|
cacheable icons without bloating HTML or requiring runtime transformations.
|
|
15
15
|
email:
|
|
16
16
|
- jguiricich@gmail.com
|
|
17
|
-
executables:
|
|
17
|
+
executables:
|
|
18
|
+
- stylicon
|
|
18
19
|
extensions: []
|
|
19
20
|
extra_rdoc_files: []
|
|
20
21
|
files:
|
|
@@ -25,11 +26,13 @@ files:
|
|
|
25
26
|
- LICENSE.txt
|
|
26
27
|
- README.md
|
|
27
28
|
- Rakefile
|
|
29
|
+
- bin/stylicon
|
|
28
30
|
- icons.yml
|
|
29
31
|
- lib/stylicon.rb
|
|
30
32
|
- lib/stylicon/generator.rb
|
|
31
33
|
- lib/stylicon/version.rb
|
|
32
34
|
- sig/stylicon.rbs
|
|
35
|
+
- stylicon-0.1.0.gem
|
|
33
36
|
- stylicon.css
|
|
34
37
|
homepage: https://github.com/JuanGuiricich/stylicon
|
|
35
38
|
licenses:
|