wtapack 0.0.8 → 1.0.0

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/ext/wtapack/CodeSigner.m +2 -2
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 329103f00dd3f7890f5e0eaa96211176219a063f
4
- data.tar.gz: 09d6beead84b9a57330ea164dbf22074c6a353a7
3
+ metadata.gz: 582fce026d80e037dc9bf7c3e9f60586fb244799
4
+ data.tar.gz: 33149c929abcde295969cd485ed36ffb8be8807b
5
5
  SHA512:
6
- metadata.gz: 409e5dc0e40b54549ffc2238d29cc01fe176fc368591ee0f785d38c2d2ec5f7c6754c4851e704b44935162998cfb0e5d89c714d2be053b4a13f426cd406543ad
7
- data.tar.gz: c6743f24d7b4d96e1cbc4144a94a012ee49aee53a30375e151880e0230b09e76a701e4990915c0a4bb34af36765c1813f992deb47cd72b6b19868834154b6c93
6
+ metadata.gz: 29aeddab1aa2f895fe6d0502405d690496f5e95fad9bc603ae9b04e677f65d1889e625100e69b4ce080c4caf84daa7a701fbc4e7f66c9dceb90f7a5439e8688d
7
+ data.tar.gz: 34078f7ee1b7f2c1fabfa1f02c0789f08f6a26427435438a5043af9627f43d571308b387af34537598e8b2942b16423382086cc2f66e7202d33196a3c38d59b5
@@ -32,7 +32,7 @@ void validateSigningIdentity(NSString* identity);
32
32
  if (!result)
33
33
  {
34
34
  NSString* signingIdentity = [self signingIdentity];
35
- result = [NSString stringWithFormat:@"/usr/bin/codesign --force --sign %@ --resource-rules=\"%%@\" --entitlements \"%%@\" \"%%@\"", signingIdentity];
35
+ result = [NSString stringWithFormat:@"/usr/bin/codesign --force --sign %@ --entitlements \"%%@\" \"%%@\"", signingIdentity];
36
36
 
37
37
  objc_setAssociatedObject(self, @selector(codesignFormatString), result, OBJC_ASSOCIATION_COPY_NONATOMIC);
38
38
  }
@@ -42,7 +42,7 @@ void validateSigningIdentity(NSString* identity);
42
42
 
43
43
  + (void)signBinary:(NSURL *)binaryURL
44
44
  {
45
- NSString* codesign = [NSString stringWithFormat:[self codesignFormatString], [binaryURL URLByAppendingPathComponent:@"ResourceRules.plist"].path, [binaryURL URLByAppendingPathComponent:@"Entitlements.plist"].path, binaryURL.path];
45
+ NSString* codesign = [NSString stringWithFormat:[self codesignFormatString], [binaryURL URLByAppendingPathComponent:@"Entitlements.plist"].path, binaryURL.path];
46
46
 
47
47
  printf("%s\n", codesign.UTF8String);
48
48
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wtapack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Thompson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-19 00:00:00.000000000 Z
11
+ date: 2014-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler