ios_asset_extractor 0.1.2 → 0.1.3
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/lib/ios_asset_extractor.rb +2 -2
- data/lib/ios_asset_extractor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f101128b8170b54c25b5eaec74dac98c617acb3f
|
4
|
+
data.tar.gz: 563b178481b92d1b761dd7266bd43cfab6ccf9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c605b81391508efe43c00992b3c798e91ce14e54846737e2acf3631a93e5277c6fc8c8fbad2be23a83f3d82b814a229b476ea1f94d396b906a81507718fcec7d
|
7
|
+
data.tar.gz: bf8dafb733f8f81aa2c3aac65827724c9e9fc4f0f9ed4ba074785a49f162be65ecc13910bbcf808652235b9908f39be74062c746683fafdf51d4b2e2bec946dc
|
data/lib/ios_asset_extractor.rb
CHANGED
@@ -11,7 +11,7 @@ module IosAssetExtractor
|
|
11
11
|
|
12
12
|
def file_with_size_hash
|
13
13
|
Dir.mktmpdir do |dir_path|
|
14
|
-
system "#{@command_path} -i #{@file_path} -o #{dir_path} > /dev/null"
|
14
|
+
system "#{@command_path} -i #{@file_path} -o #{dir_path} > /dev/null 2>&1 "
|
15
15
|
Dir.entries(dir_path).select do |entry|
|
16
16
|
not File.directory?("#{dir_path}/#{entry}")
|
17
17
|
end.map do |entry|
|
@@ -24,7 +24,7 @@ module IosAssetExtractor
|
|
24
24
|
end
|
25
25
|
|
26
26
|
def extract_to(dir_path)
|
27
|
-
system "#{@command_path} -i #{@file_path} -o #{dir_path} > /dev/null"
|
27
|
+
system "#{@command_path} -i #{@file_path} -o #{dir_path} > /dev/null 2>&1"
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|