cocoapods-pod-sign 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/example/podSign/Gemfile +8 -0
  4. data/example/podSign/Gemfile.lock +102 -0
  5. data/example/podSign/Podfile +20 -0
  6. data/example/podSign/bundleSign/.gitignore +36 -0
  7. data/example/podSign/bundleSign/.travis.yml +14 -0
  8. data/example/podSign/bundleSign/Example/Podfile +6 -0
  9. data/example/podSign/bundleSign/Example/Pods/Local Podspecs/bundleSign.podspec.json +22 -0
  10. data/example/podSign/bundleSign/Example/Tests/Tests-Info.plist +22 -0
  11. data/example/podSign/bundleSign/Example/Tests/Tests-Prefix.pch +7 -0
  12. data/example/podSign/bundleSign/Example/Tests/Tests.m +35 -0
  13. data/example/podSign/bundleSign/Example/Tests/en.lproj/InfoPlist.strings +2 -0
  14. data/example/podSign/bundleSign/Example/bundleSign.xcodeproj/project.pbxproj +395 -0
  15. data/example/podSign/bundleSign/Example/bundleSign.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  16. data/example/podSign/bundleSign/Example/bundleSign.xcodeproj/xcshareddata/xcschemes/bundleSign-Example.xcscheme +101 -0
  17. data/example/podSign/bundleSign/LICENSE +19 -0
  18. data/example/podSign/bundleSign/README.md +29 -0
  19. data/example/podSign/bundleSign/_Pods.xcodeproj +1 -0
  20. data/example/podSign/bundleSign/bundleSign/Assets/.gitkeep +0 -0
  21. data/example/podSign/bundleSign/bundleSign/Assets/screenshot-20220817-205345.png +0 -0
  22. data/example/podSign/bundleSign/bundleSign/Classes/.gitkeep +0 -0
  23. data/example/podSign/bundleSign/bundleSign/Classes/ReplaceMe.m +0 -0
  24. data/example/podSign/bundleSign/bundleSign.podspec +42 -0
  25. data/example/podSign/podSign/AppDelegate.h +14 -0
  26. data/example/podSign/podSign/AppDelegate.m +40 -0
  27. data/example/podSign/podSign/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  28. data/example/podSign/podSign/Assets.xcassets/AppIcon.appiconset/Contents.json +93 -0
  29. data/example/podSign/podSign/Assets.xcassets/Contents.json +6 -0
  30. data/example/podSign/podSign/Base.lproj/LaunchScreen.storyboard +25 -0
  31. data/example/podSign/podSign/Base.lproj/Main.storyboard +24 -0
  32. data/example/podSign/podSign/Info.plist +25 -0
  33. data/example/podSign/podSign/SceneDelegate.h +15 -0
  34. data/example/podSign/podSign/SceneDelegate.m +57 -0
  35. data/example/podSign/podSign/ViewController.h +14 -0
  36. data/example/podSign/podSign/ViewController.m +22 -0
  37. data/example/podSign/podSign/main.m +18 -0
  38. data/example/podSign/podSign.xcodeproj/project.pbxproj +454 -0
  39. data/example/podSign/podSign.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  40. data/example/podSign/podSign.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  41. data/example/podSign/podSign.xcodeproj/project.xcworkspace/xcuserdata/liuxiaoliang01.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  42. data/example/podSign/podSign.xcodeproj/xcuserdata/liuxiaoliang01.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  43. data/example/podSign/podSign.xcworkspace/contents.xcworkspacedata +10 -0
  44. data/example/podSign/podSign.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  45. data/example/podSign/podSign.xcworkspace/xcuserdata/liuxiaoliang01.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  46. data/lib/cocoapods-pod-sign/gem_version.rb +1 -1
  47. data/lib/cocoapods-pod-sign/pod_installer.rb +1 -1
  48. metadata +45 -2
@@ -0,0 +1,11 @@
1
+ {
2
+ "colors" : [
3
+ {
4
+ "idiom" : "universal"
5
+ }
6
+ ],
7
+ "info" : {
8
+ "author" : "xcode",
9
+ "version" : 1
10
+ }
11
+ }
@@ -0,0 +1,93 @@
1
+ {
2
+ "images" : [
3
+ {
4
+ "idiom" : "iphone",
5
+ "scale" : "2x",
6
+ "size" : "20x20"
7
+ },
8
+ {
9
+ "idiom" : "iphone",
10
+ "scale" : "3x",
11
+ "size" : "20x20"
12
+ },
13
+ {
14
+ "idiom" : "iphone",
15
+ "scale" : "2x",
16
+ "size" : "29x29"
17
+ },
18
+ {
19
+ "idiom" : "iphone",
20
+ "scale" : "3x",
21
+ "size" : "29x29"
22
+ },
23
+ {
24
+ "idiom" : "iphone",
25
+ "scale" : "2x",
26
+ "size" : "40x40"
27
+ },
28
+ {
29
+ "idiom" : "iphone",
30
+ "scale" : "3x",
31
+ "size" : "40x40"
32
+ },
33
+ {
34
+ "idiom" : "iphone",
35
+ "scale" : "2x",
36
+ "size" : "60x60"
37
+ },
38
+ {
39
+ "idiom" : "iphone",
40
+ "scale" : "3x",
41
+ "size" : "60x60"
42
+ },
43
+ {
44
+ "idiom" : "ipad",
45
+ "scale" : "1x",
46
+ "size" : "20x20"
47
+ },
48
+ {
49
+ "idiom" : "ipad",
50
+ "scale" : "2x",
51
+ "size" : "20x20"
52
+ },
53
+ {
54
+ "idiom" : "ipad",
55
+ "scale" : "1x",
56
+ "size" : "29x29"
57
+ },
58
+ {
59
+ "idiom" : "ipad",
60
+ "scale" : "2x",
61
+ "size" : "29x29"
62
+ },
63
+ {
64
+ "idiom" : "ipad",
65
+ "scale" : "1x",
66
+ "size" : "40x40"
67
+ },
68
+ {
69
+ "idiom" : "ipad",
70
+ "scale" : "2x",
71
+ "size" : "40x40"
72
+ },
73
+ {
74
+ "idiom" : "ipad",
75
+ "scale" : "2x",
76
+ "size" : "76x76"
77
+ },
78
+ {
79
+ "idiom" : "ipad",
80
+ "scale" : "2x",
81
+ "size" : "83.5x83.5"
82
+ },
83
+ {
84
+ "idiom" : "ios-marketing",
85
+ "scale" : "1x",
86
+ "size" : "1024x1024"
87
+ }
88
+ ],
89
+ "info" : {
90
+ "author" : "xcode",
91
+ "version" : 1
92
+ }
93
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "info" : {
3
+ "author" : "xcode",
4
+ "version" : 1
5
+ }
6
+ }
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
5
+ <capability name="Safe area layout guides" minToolsVersion="9.0"/>
6
+ <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
7
+ </dependencies>
8
+ <scenes>
9
+ <!--View Controller-->
10
+ <scene sceneID="EHf-IW-A2E">
11
+ <objects>
12
+ <viewController id="01J-lp-oVM" sceneMemberID="viewController">
13
+ <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
14
+ <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
15
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
16
+ <color key="backgroundColor" xcode11CocoaTouchSystemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
17
+ <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
18
+ </view>
19
+ </viewController>
20
+ <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
21
+ </objects>
22
+ <point key="canvasLocation" x="53" y="375"/>
23
+ </scene>
24
+ </scenes>
25
+ </document>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
5
+ <capability name="Safe area layout guides" minToolsVersion="9.0"/>
6
+ <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
7
+ </dependencies>
8
+ <scenes>
9
+ <!--View Controller-->
10
+ <scene sceneID="tne-QT-ifu">
11
+ <objects>
12
+ <viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="" sceneMemberID="viewController">
13
+ <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
14
+ <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
15
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
16
+ <color key="backgroundColor" xcode11CocoaTouchSystemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
17
+ <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
18
+ </view>
19
+ </viewController>
20
+ <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
21
+ </objects>
22
+ </scene>
23
+ </scenes>
24
+ </document>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>UIApplicationSceneManifest</key>
6
+ <dict>
7
+ <key>UIApplicationSupportsMultipleScenes</key>
8
+ <false/>
9
+ <key>UISceneConfigurations</key>
10
+ <dict>
11
+ <key>UIWindowSceneSessionRoleApplication</key>
12
+ <array>
13
+ <dict>
14
+ <key>UISceneConfigurationName</key>
15
+ <string>Default Configuration</string>
16
+ <key>UISceneDelegateClassName</key>
17
+ <string>SceneDelegate</string>
18
+ <key>UISceneStoryboardFile</key>
19
+ <string>Main</string>
20
+ </dict>
21
+ </array>
22
+ </dict>
23
+ </dict>
24
+ </dict>
25
+ </plist>
@@ -0,0 +1,15 @@
1
+ //
2
+ // SceneDelegate.h
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import <UIKit/UIKit.h>
9
+
10
+ @interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
11
+
12
+ @property (strong, nonatomic) UIWindow * window;
13
+
14
+ @end
15
+
@@ -0,0 +1,57 @@
1
+ //
2
+ // SceneDelegate.m
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import "SceneDelegate.h"
9
+
10
+ @interface SceneDelegate ()
11
+
12
+ @end
13
+
14
+ @implementation SceneDelegate
15
+
16
+
17
+ - (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions {
18
+ // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
19
+ // If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
20
+ // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
21
+ }
22
+
23
+
24
+ - (void)sceneDidDisconnect:(UIScene *)scene {
25
+ // Called as the scene is being released by the system.
26
+ // This occurs shortly after the scene enters the background, or when its session is discarded.
27
+ // Release any resources associated with this scene that can be re-created the next time the scene connects.
28
+ // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead).
29
+ }
30
+
31
+
32
+ - (void)sceneDidBecomeActive:(UIScene *)scene {
33
+ // Called when the scene has moved from an inactive state to an active state.
34
+ // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
35
+ }
36
+
37
+
38
+ - (void)sceneWillResignActive:(UIScene *)scene {
39
+ // Called when the scene will move from an active state to an inactive state.
40
+ // This may occur due to temporary interruptions (ex. an incoming phone call).
41
+ }
42
+
43
+
44
+ - (void)sceneWillEnterForeground:(UIScene *)scene {
45
+ // Called as the scene transitions from the background to the foreground.
46
+ // Use this method to undo the changes made on entering the background.
47
+ }
48
+
49
+
50
+ - (void)sceneDidEnterBackground:(UIScene *)scene {
51
+ // Called as the scene transitions from the foreground to the background.
52
+ // Use this method to save data, release shared resources, and store enough scene-specific state information
53
+ // to restore the scene back to its current state.
54
+ }
55
+
56
+
57
+ @end
@@ -0,0 +1,14 @@
1
+ //
2
+ // ViewController.h
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import <UIKit/UIKit.h>
9
+
10
+ @interface ViewController : UIViewController
11
+
12
+
13
+ @end
14
+
@@ -0,0 +1,22 @@
1
+ //
2
+ // ViewController.m
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import "ViewController.h"
9
+
10
+ @interface ViewController ()
11
+
12
+ @end
13
+
14
+ @implementation ViewController
15
+
16
+ - (void)viewDidLoad {
17
+ [super viewDidLoad];
18
+ // Do any additional setup after loading the view.
19
+ }
20
+
21
+
22
+ @end
@@ -0,0 +1,18 @@
1
+ //
2
+ // main.m
3
+ // podSign
4
+ //
5
+ // Created by liuxiaoliang01 on 2022/8/17.
6
+ //
7
+
8
+ #import <UIKit/UIKit.h>
9
+ #import "AppDelegate.h"
10
+
11
+ int main(int argc, char * argv[]) {
12
+ NSString * appDelegateClassName;
13
+ @autoreleasepool {
14
+ // Setup code that might create autoreleased objects goes here.
15
+ appDelegateClassName = NSStringFromClass([AppDelegate class]);
16
+ }
17
+ return UIApplicationMain(argc, argv, nil, appDelegateClassName);
18
+ }