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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c57b194177e8111ac1ea708cd05896cbe9d85cb7
4
- data.tar.gz: 3a1b0939d47e3ec3f1329973f0f471a5606c449a
3
+ metadata.gz: f101128b8170b54c25b5eaec74dac98c617acb3f
4
+ data.tar.gz: 563b178481b92d1b761dd7266bd43cfab6ccf9e7
5
5
  SHA512:
6
- metadata.gz: 54a47b8a59d2d3562270179e53eb36ba2ed9a105b42d82f07c895beec771b6c5bb0d3760b9460e0f6a0e869e06cfba31963a0e5c20851eadf8d83b983a46d5ab
7
- data.tar.gz: 42715a17b57cb530618436a38bcf3c4666f3bdbdc9b94c6f395cd62f0ca1f1b24dc2ea999181d18c199fb331833928aeb7bf733b6d16a5042c79ae60997521df
6
+ metadata.gz: c605b81391508efe43c00992b3c798e91ce14e54846737e2acf3631a93e5277c6fc8c8fbad2be23a83f3d82b814a229b476ea1f94d396b906a81507718fcec7d
7
+ data.tar.gz: bf8dafb733f8f81aa2c3aac65827724c9e9fc4f0f9ed4ba074785a49f162be65ecc13910bbcf808652235b9908f39be74062c746683fafdf51d4b2e2bec946dc
@@ -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
@@ -1,3 +1,3 @@
1
1
  module IosAssetExtractor
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ios_asset_extractor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Forelax