ipa-parser 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed686f4924c31562fc5bea3c07f13f9581afa8c2
4
- data.tar.gz: 9cea8903b5fce639d155c1692d627bcd1469c4b4
3
+ metadata.gz: 6818377cd3f7ee2c7ee390a52506d52ff2023b64
4
+ data.tar.gz: 0a7ea96341d2940fd47781e67d3188197b2252e8
5
5
  SHA512:
6
- metadata.gz: 66b96d1cb0f12d0b53ebdbe623b555df51286eb888d8c39dc312cd2abbbdd5fece70b3a146230cb604e93bb925fdc8d068cbbdbf2fd47cc3a1de870f87a42a92
7
- data.tar.gz: 16bb40b28c07f46416abded3490bd8a34e6be131c0fb08505fb163a9a918125eb1ce23d60e55145194a61bbee6e6fd48949525e8e5432faf7f22e5f20e5153df
6
+ metadata.gz: 8348fb20f3f0af67cb4d8fb4399022aa5365332eb0c102830e16b6d9e0f874a32f5a94143bf3e091ec628c12e0a5334f4a4bc8d2896f50a23535d40a7d4cdbf1
7
+ data.tar.gz: 5560c997702702d33cfadb4f0cb676b022ca3c289469e223cb41d3c05113ffdb2b2f02f297d9508a6f5e3404a5a6f2e06e3193d6c94f84761d210fdfca106ab4
data/README.md CHANGED
@@ -28,7 +28,7 @@ ipa_file.identifier
28
28
 
29
29
  ## Contributing
30
30
 
31
- 1. Fork it ( https://github.com/[my-github-username]/ipa-parser/fork )
31
+ 1. Fork it ( https://github.com/astro2linus/ipa-parser/fork )
32
32
  2. Create your feature branch (`git checkout -b my-new-feature`)
33
33
  3. Commit your changes (`git commit -am 'Add some feature'`)
34
34
  4. Push to the branch (`git push origin my-new-feature`)
data/lib/ipa-parser.rb CHANGED
@@ -66,8 +66,8 @@ module IpaParser
66
66
 
67
67
  def icon
68
68
  if crushed_icon
69
- crushed_file = Tempfile.new('crushed_icon.png')
70
- uncrushed_file = Tempfile.new('uncrushed_icon.png')
69
+ crushed_file = Tempfile.new('crushed_icon.png', :encoding => 'ascii-8bit')
70
+ uncrushed_file = Tempfile.new('uncrushed_icon.png', :encoding => 'ascii-8bit')
71
71
  begin
72
72
  crushed_file.write(crushed_icon)
73
73
  png_bin = File.expand_path("../../bin/pngcrush", __FILE__)
@@ -1,3 +1,3 @@
1
1
  module IpaParser
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ipa-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - astro2linus