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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 111a0f57b95cce09d7d77703e350c992ea757358660985828268957193094be9
4
- data.tar.gz: 4897ae7917939194a36e91d3db8274ba48aaa279e5692db713f79a1fa0ee7d94
3
+ metadata.gz: 9af3fe5da6c68d6f86d93e6a173f0094016bd65125c3e4da49a54d485e187ac9
4
+ data.tar.gz: 226843d7967a4cf0c7004eda7203bd31181dba496d500d731ab9e3afce2b352f
5
5
  SHA512:
6
- metadata.gz: d766fd8e94ab516f2ff730b4a53b58f8ceed417f2826e3b0f566ec9727c6db056790a294b5a95bdbb9414a359a4ff2f45b6f37f02cff49a40f98a318264976e0
7
- data.tar.gz: 768328238b0699608a636c74305932def9cec7c88715e01da1b64813ca96fd6b7fdef6e951293987e0deb3709bf3610be157877006a58a54468871c1710d57b3
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stylicon
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - JG
8
- bindir: exe
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: