Skip to content

Commit ccd87b4

Browse files
committed
Adds missing Carthage setup
1 parent d4d8bc6 commit ccd87b4

File tree

70 files changed

+719
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+719
-33
lines changed

Example/.gitignore renamed to .gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
# Created by https://www.toptal.com/developers/gitignore/api/xcode,cocoapods,carthage,swift
3-
# Edit at https://www.toptal.com/developers/gitignore?templates=xcode,cocoapods,carthage,swift
2+
# Created by https://www.toptal.com/developers/gitignore/api/xcode,swift,cocoapods,carthage
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=xcode,swift,cocoapods,carthage
44

55
### Carthage ###
66
# Carthage
@@ -118,4 +118,4 @@ iOSInjectionProject/
118118
!*.xcworkspace/contents.xcworkspacedata
119119
**/xcshareddata/WorkspaceSettings.xcsettings
120120

121-
# End of https://www.toptal.com/developers/gitignore/api/xcode,cocoapods,carthage,swift
121+
# End of https://www.toptal.com/developers/gitignore/api/xcode,swift,cocoapods,carthage
File renamed without changes.

NestedCKCodable/NestedCKCodable.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// NestedCKCodable.h
3+
// NestedCKCodable
4+
//
5+
// Created by Guilherme Girotto on 25/08/20.
6+
// Copyright © 2020 CocoaPods. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
//! Project version number for NestedCKCodable.
12+
FOUNDATION_EXPORT double NestedCKCodableVersionNumber;
13+
14+
//! Project version string for NestedCKCodable.
15+
FOUNDATION_EXPORT const unsigned char NestedCKCodableVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like #import <NestedCKCodable/PublicHeader.h>
18+
19+

NestedCloudKitCodable.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
s.author = { 'ggirotto' => 'guiga741@gmail.com' }
1313
s.source = { :git => 'https://github.com/olmps/NestedCloudKitCodable.git', :tag => s.version.to_s }
1414
s.framework = "CloudKit"
15-
s.source_files = "NestedCloudKitCodable/Classes/**/*.swift"
15+
s.source_files = "Source/Classes/**/*.swift"
1616
s.ios.deployment_target = '10.0'
1717
s.watchos.deployment_target = '4.0'
1818
s.swift_version = '5.0'

Example/NestedCloudKitCodable.xcodeproj/project.pbxproj renamed to NestedCloudKitCodable.xcodeproj/project.pbxproj

Lines changed: 406 additions & 2 deletions
Large diffs are not rendered by default.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,16 @@
6161
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
6262
</BuildableReference>
6363
</TestableReference>
64+
<TestableReference
65+
skipped = "NO">
66+
<BuildableReference
67+
BuildableIdentifier = "primary"
68+
BlueprintIdentifier = "635A0E8A24F562C4002BC7AD"
69+
BuildableName = "NestedCloudKitCodableTests.xctest"
70+
BlueprintName = "NestedCloudKitCodableTests"
71+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
72+
</BuildableReference>
73+
</TestableReference>
6474
</Testables>
6575
</TestAction>
6676
<LaunchAction
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1160"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "63A249A024F567BB008C8C56"
18+
BuildableName = "NestedCKCodable.framework"
19+
BlueprintName = "NestedCKCodable"
20+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
</TestAction>
33+
<LaunchAction
34+
buildConfiguration = "Debug"
35+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37+
launchStyle = "0"
38+
useCustomWorkingDirectory = "NO"
39+
ignoresPersistentStateOnLaunch = "NO"
40+
debugDocumentVersioning = "YES"
41+
debugServiceExtension = "internal"
42+
allowLocationSimulation = "YES">
43+
</LaunchAction>
44+
<ProfileAction
45+
buildConfiguration = "Release"
46+
shouldUseLaunchSchemeArgsEnv = "YES"
47+
savedToolIdentifier = ""
48+
useCustomWorkingDirectory = "NO"
49+
debugDocumentVersioning = "YES">
50+
<MacroExpansion>
51+
<BuildableReference
52+
BuildableIdentifier = "primary"
53+
BlueprintIdentifier = "63A249A024F567BB008C8C56"
54+
BuildableName = "NestedCKCodable.framework"
55+
BlueprintName = "NestedCKCodable"
56+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
57+
</BuildableReference>
58+
</MacroExpansion>
59+
</ProfileAction>
60+
<AnalyzeAction
61+
buildConfiguration = "Debug">
62+
</AnalyzeAction>
63+
<ArchiveAction
64+
buildConfiguration = "Release"
65+
revealArchiveInOrganizer = "YES">
66+
</ArchiveAction>
67+
</Scheme>
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1160"
4+
version = "2.0">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "6375386224F5347D0093936D"
18+
BuildableName = "NestedCloudKitCodableWatch.app"
19+
BlueprintName = "NestedCloudKitCodableWatch"
20+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
<BuildActionEntry
24+
buildForTesting = "YES"
25+
buildForRunning = "YES"
26+
buildForProfiling = "YES"
27+
buildForArchiving = "YES"
28+
buildForAnalyzing = "YES">
29+
<BuildableReference
30+
BuildableIdentifier = "primary"
31+
BlueprintIdentifier = "607FACCF1AFB9204008FA782"
32+
BuildableName = "NestedCloudKitCodable_Example.app"
33+
BlueprintName = "NestedCloudKitCodable_Example"
34+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
35+
</BuildableReference>
36+
</BuildActionEntry>
37+
</BuildActionEntries>
38+
</BuildAction>
39+
<TestAction
40+
buildConfiguration = "Debug"
41+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
42+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43+
shouldUseLaunchSchemeArgsEnv = "YES">
44+
<Testables>
45+
</Testables>
46+
</TestAction>
47+
<LaunchAction
48+
buildConfiguration = "Debug"
49+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
50+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
51+
launchStyle = "0"
52+
useCustomWorkingDirectory = "NO"
53+
ignoresPersistentStateOnLaunch = "NO"
54+
debugDocumentVersioning = "YES"
55+
debugServiceExtension = "internal"
56+
allowLocationSimulation = "YES"
57+
launchAutomaticallySubstyle = "8"
58+
notificationPayloadFile = "NestedCloudKitCodableWatch Extension/PushNotificationPayload.apns">
59+
<RemoteRunnable
60+
runnableDebuggingMode = "2"
61+
BundleIdentifier = "com.apple.Carousel"
62+
RemotePath = "/NestedCloudKitCodable_Example">
63+
<BuildableReference
64+
BuildableIdentifier = "primary"
65+
BlueprintIdentifier = "6375386224F5347D0093936D"
66+
BuildableName = "NestedCloudKitCodableWatch.app"
67+
BlueprintName = "NestedCloudKitCodableWatch"
68+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
69+
</BuildableReference>
70+
</RemoteRunnable>
71+
</LaunchAction>
72+
<ProfileAction
73+
buildConfiguration = "Release"
74+
shouldUseLaunchSchemeArgsEnv = "YES"
75+
savedToolIdentifier = ""
76+
useCustomWorkingDirectory = "NO"
77+
debugDocumentVersioning = "YES"
78+
launchAutomaticallySubstyle = "8"
79+
notificationPayloadFile = "NestedCloudKitCodableWatch Extension/PushNotificationPayload.apns">
80+
<RemoteRunnable
81+
runnableDebuggingMode = "2"
82+
BundleIdentifier = "com.apple.Carousel"
83+
RemotePath = "/NestedCloudKitCodable_Example">
84+
<BuildableReference
85+
BuildableIdentifier = "primary"
86+
BlueprintIdentifier = "6375386224F5347D0093936D"
87+
BuildableName = "NestedCloudKitCodableWatch.app"
88+
BlueprintName = "NestedCloudKitCodableWatch"
89+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
90+
</BuildableReference>
91+
</RemoteRunnable>
92+
<MacroExpansion>
93+
<BuildableReference
94+
BuildableIdentifier = "primary"
95+
BlueprintIdentifier = "6375386224F5347D0093936D"
96+
BuildableName = "NestedCloudKitCodableWatch.app"
97+
BlueprintName = "NestedCloudKitCodableWatch"
98+
ReferencedContainer = "container:NestedCloudKitCodable.xcodeproj">
99+
</BuildableReference>
100+
</MacroExpansion>
101+
</ProfileAction>
102+
<AnalyzeAction
103+
buildConfiguration = "Debug">
104+
</AnalyzeAction>
105+
<ArchiveAction
106+
buildConfiguration = "Release"
107+
revealArchiveInOrganizer = "YES">
108+
</ArchiveAction>
109+
</Scheme>

0 commit comments

Comments
 (0)