howsigned 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/howsigned +1 -1
  3. data/lib/compare.rb +2 -2
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d8ae2c80879d94c671a70e27a6fd18c65dbf8c4
4
- data.tar.gz: 45e18b5986ce223b692ee47f52b186cd31c7b0af
3
+ metadata.gz: 94583389df0b0759430446202650c8c4b7453a65
4
+ data.tar.gz: 2e5ca873274a910c2a365f1cb3deda596a11e49e
5
5
  SHA512:
6
- metadata.gz: e9e8f5f227e87edef95915a7b932b1a9122aa57340c4929826a7e06afa9f439f297b87bfb34d09e5eebba499c562bdd9251cca4517ce5c88b4f659c92fcb5b74
7
- data.tar.gz: 3b8d345f93c189709e89993adb23f8d7a8f7af2e71df1f23bec316a7201db0ab31f29d450ca27ec6e532fe20deaffdeef9bdeb1ff9fafdb8d4cdbfe9d15e3c6b
6
+ metadata.gz: 50dee3d0f89a6b349f37f02dae303ff72a65675ce005ef73f3148590d800e40a5facda3579320ca6c2b4b3bf4e9769833b907bbffe3a638c3e4665a439a3433a
7
+ data.tar.gz: 36a5b835f2caa5d2511b456da921b741e45d2c7657f593000174eaab49358fe309944a68c1109db34c84cd265dfaf3365662e3c0c45995ffaa6652faa4b586a2
data/bin/howsigned CHANGED
@@ -8,6 +8,6 @@ require 'profiles'
8
8
  require 'verify'
9
9
  require 'compare'
10
10
 
11
- program :version, '0.0.8'
11
+ program :version, '0.0.9'
12
12
  program :description, 'Utility to determine codesigning on contained binaries in an .ipa'
13
13
 
data/lib/compare.rb CHANGED
@@ -26,8 +26,8 @@ command :compare do |c|
26
26
  first_entitlements = get_entitlements(first_tempdir.path)
27
27
  second_entitlements = get_entitlements(second_tempdir.path)
28
28
 
29
- first_profiles = get_profiles(first_tempdir.path)
30
- second_profiles = get_profiles(second_tempdir.path)
29
+ first_profiles = get_profiles(first_tempdir.path, false)
30
+ second_profiles = get_profiles(second_tempdir.path, false)
31
31
 
32
32
  temp_plist_dir = ::File.new(Dir.mktmpdir).path
33
33
  write_plist_to_path(first_entitlements, "#{temp_plist_dir}/entitlements1.plist")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: howsigned
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael MacDougall