cocoapods-pod-sign 1.1.1 → 1.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb855d05d18c37ddf0701a04a6bd325d970a4d5451474ee1d66e648a3a8957c4
4
- data.tar.gz: b6f0d3b202593f372a7f062eb48c5708c59ba4ea83e8661c45de63fb1ab1615a
3
+ metadata.gz: 87f97e51c175c7afdb25dd252fb52888f96cdb95824289bbaf140c80ae22a8dc
4
+ data.tar.gz: c0d2b2f4c5e9ece5fd7a773caf16b296052908de731410fcf5fb63f0d2f81916
5
5
  SHA512:
6
- metadata.gz: 9b6f70d271ec8aa0bde21afccc79059c7b5c1137a1af49c6f608bc216458d2b0e811ef16232c5ca8702ef34340dd78ab1cfc95a2b83456864d17d300bc9d8284
7
- data.tar.gz: c8db85af77f7e2192b1c8bda7e0978fe9a7a6266624f673903c1d4ea5492521f260b2a43b536badf8b2eef8b21f619b608ea7d8059b7d17d1bcc8d14a77bb5b6
6
+ metadata.gz: 86ac85406eb0030b850839495e7fd2ca176a375baa65551b3835af64fc179d90faf0b3a2ff56ec5d89ef1afb2dbee2fe7768dcc2ebc5307b2648fb887dd437e2
7
+ data.tar.gz: 01c4200dc623bd4bda85672251388be6f6fa5fa9f8bd97a77f63ce3f93897a75b2f6cf729f37df67fb4c2976a4577bfd2879c75f922713e005cd753eff55a9dc
data/.gitignore CHANGED
@@ -9,6 +9,8 @@
9
9
  /test/tmp/
10
10
  /test/version_tmp/
11
11
  /tmp/
12
+ .idea/
13
+
12
14
 
13
15
  # Used by dotenv library to load environment variables.
14
16
  # .env
@@ -54,3 +56,64 @@ build-iPhoneSimulator/
54
56
 
55
57
  # Used by RuboCop. Remote config files pulled in from inherit_from directive.
56
58
  # .rubocop-https?--*
59
+
60
+ # Xcode
61
+ #
62
+ # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
63
+
64
+ ## Build generated
65
+ build/
66
+ DerivedData/
67
+
68
+ ## Various settings
69
+ *.pbxuser
70
+ !default.pbxuser
71
+ *.mode1v3
72
+ !default.mode1v3
73
+ *.mode2v3
74
+ !default.mode2v3
75
+ *.perspectivev3
76
+ !default.perspectivev3
77
+ xcuserdata/
78
+
79
+ ## Other
80
+ *.moved-aside
81
+ *.xcuserstate
82
+
83
+ ## Obj-C/Swift specific
84
+ *.hmap
85
+ *.ipa
86
+ *.dSYM.zip
87
+ *.dSYM
88
+
89
+ # CocoaPods
90
+ #
91
+ # We recommend against adding the Pods directory to your .gitignore. However
92
+ # you should judge for yourself, the pros and cons are mentioned at:
93
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
94
+ #
95
+ Pods/
96
+
97
+ # Carthage
98
+ #
99
+ # Add this line if you want to avoid checking in source code from Carthage dependencies.
100
+ # Carthage/Checkouts
101
+
102
+ Carthage/Build
103
+
104
+ # fastlane
105
+ #
106
+ # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
107
+ # screenshots whenever they are needed.
108
+ # For more information about the recommended setup visit:
109
+ # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
110
+
111
+ fastlane/report.xml
112
+ fastlane/screenshots
113
+
114
+ #Code Injection
115
+ #
116
+ # After new code Injection tools there's a generated folder /iOSInjectionProject
117
+ # https://github.com/johnno1962/injectionforxcode
118
+
119
+ iOSInjectionProject/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- cocoapods-pod-sign (1.1.0)
4
+ cocoapods-pod-sign (1.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -8,11 +8,11 @@ target 'podSign' do
8
8
 
9
9
  plugin 'cocoapods-pod-sign'
10
10
 
11
- config_pod_bundle_id_and_team_id({
12
- 'Debug' => {:bundle_id => 'com.aaa.bbb', :team_id => 'ABCDEFG'},
13
- 'Release' => {:bundle_id => 'com.ccc.ddd', :team_id => 'HIJKLMN'},
14
- 'Profile' => {:bundle_id => 'com.xxx.eee', :team_id => 'ASDFGHJ'}
15
- })
11
+ # config_pod_bundle_id_and_team_id({
12
+ # 'Debug' => {:bundle_id => 'com.aaa.bbb', :team_id => 'ABCDEFG'},
13
+ # 'Release' => {:bundle_id => 'com.ccc.ddd', :team_id => 'HIJKLMN'},
14
+ # 'Profile' => {:bundle_id => 'com.xxx.eee', :team_id => 'ASDFGHJ'}
15
+ # })
16
16
 
17
17
  # Pods for podSign
18
18
  pod 'bundleSign', :path => './bundleSign'
@@ -14,9 +14,13 @@
14
14
  2229B7ED28AD16870038653C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2229B7EC28AD16870038653C /* Assets.xcassets */; };
15
15
  2229B7F028AD16870038653C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2229B7EE28AD16870038653C /* LaunchScreen.storyboard */; };
16
16
  2229B7F328AD16870038653C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2229B7F228AD16870038653C /* main.m */; };
17
+ 2E3CEF12322AA2E7389B54C9 /* libPods-podSign.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E68FEE90580D7ADB2484B312 /* libPods-podSign.a */; };
17
18
  /* End PBXBuildFile section */
18
19
 
19
20
  /* Begin PBXFileReference section */
21
+ 033D405A2FB545AE554ACFE9 /* Pods-podSign.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-podSign.profile.xcconfig"; path = "Target Support Files/Pods-podSign/Pods-podSign.profile.xcconfig"; sourceTree = "<group>"; };
22
+ 0CFF07BBF1AE520F3A4E351F /* Pods-podSign.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-podSign.debug.xcconfig"; path = "Target Support Files/Pods-podSign/Pods-podSign.debug.xcconfig"; sourceTree = "<group>"; };
23
+ 1A6DFECA83645495A261B2C9 /* Pods-podSign.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-podSign.release.xcconfig"; path = "Target Support Files/Pods-podSign/Pods-podSign.release.xcconfig"; sourceTree = "<group>"; };
20
24
  2229B7DD28AD16850038653C /* podSign.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = podSign.app; sourceTree = BUILT_PRODUCTS_DIR; };
21
25
  2229B7E028AD16850038653C /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
22
26
  2229B7E128AD16850038653C /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
@@ -29,6 +33,7 @@
29
33
  2229B7EF28AD16870038653C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
30
34
  2229B7F128AD16870038653C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
31
35
  2229B7F228AD16870038653C /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
36
+ E68FEE90580D7ADB2484B312 /* libPods-podSign.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-podSign.a"; sourceTree = BUILT_PRODUCTS_DIR; };
32
37
  /* End PBXFileReference section */
33
38
 
34
39
  /* Begin PBXFrameworksBuildPhase section */
@@ -36,6 +41,7 @@
36
41
  isa = PBXFrameworksBuildPhase;
37
42
  buildActionMask = 2147483647;
38
43
  files = (
44
+ 2E3CEF12322AA2E7389B54C9 /* libPods-podSign.a in Frameworks */,
39
45
  );
40
46
  runOnlyForDeploymentPostprocessing = 0;
41
47
  };
@@ -47,6 +53,8 @@
47
53
  children = (
48
54
  2229B7DF28AD16850038653C /* podSign */,
49
55
  2229B7DE28AD16850038653C /* Products */,
56
+ 37A5A9EAF7A15FF1C10AEC48 /* Pods */,
57
+ CA92FB517EC1635A83158A31 /* Frameworks */,
50
58
  );
51
59
  sourceTree = "<group>";
52
60
  };
@@ -76,6 +84,24 @@
76
84
  path = podSign;
77
85
  sourceTree = "<group>";
78
86
  };
87
+ 37A5A9EAF7A15FF1C10AEC48 /* Pods */ = {
88
+ isa = PBXGroup;
89
+ children = (
90
+ 0CFF07BBF1AE520F3A4E351F /* Pods-podSign.debug.xcconfig */,
91
+ 1A6DFECA83645495A261B2C9 /* Pods-podSign.release.xcconfig */,
92
+ 033D405A2FB545AE554ACFE9 /* Pods-podSign.profile.xcconfig */,
93
+ );
94
+ path = Pods;
95
+ sourceTree = "<group>";
96
+ };
97
+ CA92FB517EC1635A83158A31 /* Frameworks */ = {
98
+ isa = PBXGroup;
99
+ children = (
100
+ E68FEE90580D7ADB2484B312 /* libPods-podSign.a */,
101
+ );
102
+ name = Frameworks;
103
+ sourceTree = "<group>";
104
+ };
79
105
  /* End PBXGroup section */
80
106
 
81
107
  /* Begin PBXNativeTarget section */
@@ -83,9 +109,11 @@
83
109
  isa = PBXNativeTarget;
84
110
  buildConfigurationList = 2229B7F628AD16870038653C /* Build configuration list for PBXNativeTarget "podSign" */;
85
111
  buildPhases = (
112
+ DB94DF9930CB0BB9200BEF40 /* [CP] Check Pods Manifest.lock */,
86
113
  2229B7D928AD16850038653C /* Sources */,
87
114
  2229B7DA28AD16850038653C /* Frameworks */,
88
115
  2229B7DB28AD16850038653C /* Resources */,
116
+ C7A659FC510D477DD25605D1 /* [CP] Copy Pods Resources */,
89
117
  );
90
118
  buildRules = (
91
119
  );
@@ -141,6 +169,48 @@
141
169
  };
142
170
  /* End PBXResourcesBuildPhase section */
143
171
 
172
+ /* Begin PBXShellScriptBuildPhase section */
173
+ C7A659FC510D477DD25605D1 /* [CP] Copy Pods Resources */ = {
174
+ isa = PBXShellScriptBuildPhase;
175
+ buildActionMask = 2147483647;
176
+ files = (
177
+ );
178
+ inputFileListPaths = (
179
+ "${PODS_ROOT}/Target Support Files/Pods-podSign/Pods-podSign-resources-${CONFIGURATION}-input-files.xcfilelist",
180
+ );
181
+ name = "[CP] Copy Pods Resources";
182
+ outputFileListPaths = (
183
+ "${PODS_ROOT}/Target Support Files/Pods-podSign/Pods-podSign-resources-${CONFIGURATION}-output-files.xcfilelist",
184
+ );
185
+ runOnlyForDeploymentPostprocessing = 0;
186
+ shellPath = /bin/sh;
187
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-podSign/Pods-podSign-resources.sh\"\n";
188
+ showEnvVarsInLog = 0;
189
+ };
190
+ DB94DF9930CB0BB9200BEF40 /* [CP] Check Pods Manifest.lock */ = {
191
+ isa = PBXShellScriptBuildPhase;
192
+ buildActionMask = 2147483647;
193
+ files = (
194
+ );
195
+ inputFileListPaths = (
196
+ );
197
+ inputPaths = (
198
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
199
+ "${PODS_ROOT}/Manifest.lock",
200
+ );
201
+ name = "[CP] Check Pods Manifest.lock";
202
+ outputFileListPaths = (
203
+ );
204
+ outputPaths = (
205
+ "$(DERIVED_FILE_DIR)/Pods-podSign-checkManifestLockResult.txt",
206
+ );
207
+ runOnlyForDeploymentPostprocessing = 0;
208
+ shellPath = /bin/sh;
209
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
210
+ showEnvVarsInLog = 0;
211
+ };
212
+ /* End PBXShellScriptBuildPhase section */
213
+
144
214
  /* Begin PBXSourcesBuildPhase section */
145
215
  2229B7D928AD16850038653C /* Sources */ = {
146
216
  isa = PBXSourcesBuildPhase;
@@ -287,13 +357,14 @@
287
357
  };
288
358
  2229B7F728AD16870038653C /* Debug */ = {
289
359
  isa = XCBuildConfiguration;
360
+ baseConfigurationReference = 0CFF07BBF1AE520F3A4E351F /* Pods-podSign.debug.xcconfig */;
290
361
  buildSettings = {
291
362
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
292
363
  ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
293
364
  CODE_SIGN_IDENTITY = "Apple Development";
294
- CODE_SIGN_STYLE = Manual;
365
+ CODE_SIGN_STYLE = Automatic;
295
366
  CURRENT_PROJECT_VERSION = 1;
296
- DEVELOPMENT_TEAM = "";
367
+ DEVELOPMENT_TEAM = YYLJMVA5FX;
297
368
  GENERATE_INFOPLIST_FILE = YES;
298
369
  INFOPLIST_FILE = podSign/Info.plist;
299
370
  INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
@@ -307,7 +378,7 @@
307
378
  "@executable_path/Frameworks",
308
379
  );
309
380
  MARKETING_VERSION = 1.0;
310
- PRODUCT_BUNDLE_IDENTIFIER = com.aaa.bbb;
381
+ PRODUCT_BUNDLE_IDENTIFIER = com.lvsongguo.www.app;
311
382
  PRODUCT_NAME = "$(TARGET_NAME)";
312
383
  PROVISIONING_PROFILE_SPECIFIER = "";
313
384
  SWIFT_EMIT_LOC_STRINGS = YES;
@@ -317,6 +388,7 @@
317
388
  };
318
389
  2229B7F828AD16870038653C /* Release */ = {
319
390
  isa = XCBuildConfiguration;
391
+ baseConfigurationReference = 1A6DFECA83645495A261B2C9 /* Pods-podSign.release.xcconfig */;
320
392
  buildSettings = {
321
393
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
322
394
  ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
@@ -398,9 +470,11 @@
398
470
  };
399
471
  2288DF7128AD1EC300983D40 /* Profile */ = {
400
472
  isa = XCBuildConfiguration;
473
+ baseConfigurationReference = 033D405A2FB545AE554ACFE9 /* Pods-podSign.profile.xcconfig */;
401
474
  buildSettings = {
402
475
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
403
476
  ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
477
+ CODE_SIGN_IDENTITY = "Apple Development";
404
478
  CODE_SIGN_STYLE = Manual;
405
479
  CURRENT_PROJECT_VERSION = 1;
406
480
  DEVELOPMENT_TEAM = "";
@@ -417,7 +491,7 @@
417
491
  "@executable_path/Frameworks",
418
492
  );
419
493
  MARKETING_VERSION = 1.0;
420
- PRODUCT_BUNDLE_IDENTIFIER = com.xxx.eee;
494
+ PRODUCT_BUNDLE_IDENTIFIER = com.lvsongguo.www.app;
421
495
  PRODUCT_NAME = "$(TARGET_NAME)";
422
496
  PROVISIONING_PROFILE_SPECIFIER = "";
423
497
  SWIFT_EMIT_LOC_STRINGS = YES;
@@ -1,3 +1,3 @@
1
1
  module CocoapodsPodSign
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
@@ -14,6 +14,8 @@ module Pod
14
14
  pods_project.targets
15
15
  end
16
16
  targets.each do |target|
17
+ next unless target.respond_to?('product_type') && target.product_type == 'com.apple.product-type.bundle'
18
+
17
19
  target.build_configurations.each do |config|
18
20
  sign_config = $pod_sign_configurations_hash[config.name]
19
21
  next unless sign_config.instance_of?(Hash)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-pod-sign
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - wosicuanqi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-17 00:00:00.000000000 Z
11
+ date: 2022-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler