sigh 1.10.2 → 1.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/assets/resign.sh +4 -1
- data/lib/sigh/commands_generator.rb +2 -2
- data/lib/sigh/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a4cc211deeb9cd0c8bd759ad10446073cba2a72
|
4
|
+
data.tar.gz: 3c4444d8b4f2c8c0bec1fbdc8afa00ed03a27371
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d60bda3587fdf44feab782e2ed61154ed694d9d87e4667355f6b9e8c5a7804878f64c934514e53c6537b731c404498776a9406872a5f5806165f23389551a010
|
7
|
+
data.tar.gz: e80dcd062eeacb460fc13ac464e1439e51950c694d1c0b602d12639820ae0c7f4db719be252979f6214105421a6b4e1099ea800bdcc01e61cf054af56dbbe474
|
data/lib/assets/resign.sh
CHANGED
@@ -689,7 +689,10 @@ function resign {
|
|
689
689
|
PlistBuddy -c "Delete $KEY" "$PATCHED_ENTITLEMENTS" 2>/dev/null
|
690
690
|
|
691
691
|
# Add new entry to patched entitlements
|
692
|
-
plutil
|
692
|
+
# plutil needs dots in the key path to be escaped (e.g. com\.apple\.security\.application-groups)
|
693
|
+
# otherwise it interprets they key path as nested keys
|
694
|
+
PLUTIL_KEY=`echo "$KEY" | sed 's/\./\\\\./g'`
|
695
|
+
plutil -insert "$PLUTIL_KEY" -xml "$ENTITLEMENTS_VALUE" "$PATCHED_ENTITLEMENTS"
|
693
696
|
|
694
697
|
# Patch the ID value if specified
|
695
698
|
if [[ "$ID_TYPE" == "APP_ID" ]]; then
|
@@ -68,9 +68,9 @@ module Sigh
|
|
68
68
|
c.option '-d', '--display_name STRING', String, 'Display name to use'
|
69
69
|
c.option '-e', '--entitlements PATH', String, 'The path to the entitlements file to use.'
|
70
70
|
c.option '--short_version STRING', String, 'Short version string to force binary and all nested binaries to use (CFBundleShortVersionString).'
|
71
|
-
c.option '--bundle_version STRING', String, 'Bundle version to force binary and all nested binaries to use (
|
71
|
+
c.option '--bundle_version STRING', String, 'Bundle version to force binary and all nested binaries to use (CFBundleVersion).'
|
72
72
|
c.option '--use_app_entitlements', 'Extract app bundle codesigning entitlements and combine with entitlements from new provisionin profile.'
|
73
|
-
c.option '-g', '--new_bundle_id STRING', String, 'New application bundle ID'
|
73
|
+
c.option '-g', '--new_bundle_id STRING', String, 'New application bundle ID (CFBundleIdentifier)'
|
74
74
|
c.option '--keychain_path STRING', String, 'Path to the keychain that /usr/bin/codesign should use'
|
75
75
|
|
76
76
|
c.action do |args, options|
|
data/lib/sigh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sigh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.52.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 1.0.0
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.52.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 1.0.0
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 0.
|
53
|
+
version: 0.32.3
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 1.0.0
|
@@ -60,7 +60,7 @@ dependencies:
|
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.
|
63
|
+
version: 0.32.3
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: 1.0.0
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
247
247
|
version: '0'
|
248
248
|
requirements: []
|
249
249
|
rubyforge_project:
|
250
|
-
rubygems_version: 2.
|
250
|
+
rubygems_version: 2.5.1
|
251
251
|
signing_key:
|
252
252
|
specification_version: 4
|
253
253
|
summary: Because you would rather spend your time building stuff than fighting provisioning
|