icomoon_as_well 1.2.2 → 1.3.0
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/icomoon_as_well +1 -1
- data/lib/icomoon_as_well.rb +2 -0
- data/lib/icomoon_as_well/file_helper.rb +2 -2
- data/lib/icomoon_as_well/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ecbdff4dc88f5b93bb705c27beb3169300ff4ab1
|
|
4
|
+
data.tar.gz: 7c3d316abca829f6fc8f6a19771745a61424a802
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18d7a2b1dbe5c695a9a25ac4547e585c8502b74738b0f87db01bc287c507bb4f293361c7c4d14cc63c53b81596a7ed9195f2d1056c9aab6b5e172a9110a7e398
|
|
7
|
+
data.tar.gz: 306d2b39f0456c48878edd667d5db85e1f59ca593fb6ef2f889b79e45876b371ca5c47ebd3cc782dedb3dd596ff3f34419326dda4367aa7a652c7eeb73048ba3
|
data/bin/icomoon_as_well
CHANGED
|
@@ -7,6 +7,6 @@ if File.exist?(ARGV[0].to_s) && ARGV[0].to_s =~ /^.+\.zip$/ && Dir.exist?(ARGV[1
|
|
|
7
7
|
if ARGV[2] == "--rails"
|
|
8
8
|
target << "app" << "assets"
|
|
9
9
|
end
|
|
10
|
-
|
|
10
|
+
IcomoonAsWell::Icomoon.new(ARGV[0], File.join(target), ARGV[2].to_s == "--rails")
|
|
11
11
|
end
|
|
12
12
|
|
data/lib/icomoon_as_well.rb
CHANGED
|
@@ -31,10 +31,10 @@ module IcomoonAsWell
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
def icomoon_dir(target_dir)
|
|
34
|
-
unless Dir.
|
|
34
|
+
unless Dir.exist?("#{target_dir}/stylesheets")
|
|
35
35
|
FileUtils.mkpath(File.join(target_dir, "stylesheets"))
|
|
36
36
|
end
|
|
37
|
-
unless Dir.
|
|
37
|
+
unless Dir.exist?("#{target_dir}/stylesheets/icomoon")
|
|
38
38
|
FileUtils.mkpath(File.join(target_dir, "stylesheets", "icomoon"))
|
|
39
39
|
end
|
|
40
40
|
"#{target_dir}/stylesheets/icomoon"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: icomoon_as_well
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -90,8 +90,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
90
|
version: '0'
|
|
91
91
|
requirements: []
|
|
92
92
|
rubyforge_project:
|
|
93
|
-
rubygems_version: 2.
|
|
93
|
+
rubygems_version: 2.5.1
|
|
94
94
|
signing_key:
|
|
95
95
|
specification_version: 4
|
|
96
96
|
summary: Icomoon unpacker
|
|
97
97
|
test_files: []
|
|
98
|
+
has_rdoc:
|