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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f703097b362739b896fb825b91164467d38f0434
4
- data.tar.gz: 59c44f4091884250db5062e3a05652fa78433bdf
3
+ metadata.gz: 8a4cc211deeb9cd0c8bd759ad10446073cba2a72
4
+ data.tar.gz: 3c4444d8b4f2c8c0bec1fbdc8afa00ed03a27371
5
5
  SHA512:
6
- metadata.gz: 17d17d045a0fcfa9f79469a9d8a18595207b43d3c4b9d6ca2f7b306c46fa7276d404dd04fefad8f420ca98dbdd3f12b6115fd648f959303725f14a619e49913a
7
- data.tar.gz: c2e48c3c5a1e587ffb629de0dde7a2a4cd76662b2b42392eaecf0306b65416ad3567703e2bdc6ee198daad229389d6232bee796b77ee5875b2bf6698a33959e5
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 -insert "$KEY" -xml "$ENTITLEMENTS_VALUE" "$PATCHED_ENTITLEMENTS"
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 (CFBundleIdentifier).'
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
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "1.10.2"
2
+ VERSION = "1.10.3"
3
3
  end
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.2
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-09 00:00:00.000000000 Z
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.36.1
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.36.1
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.29.1
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.29.1
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.2.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