Skip to content

Commit 299c681

Browse files
committed
Samples.bundle
1 parent 6b5471b commit 299c681

File tree

96 files changed

+633
-48
lines changed

Some content is hidden

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

96 files changed

+633
-48
lines changed

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ fastlane/test_output
9090
iOSInjectionProject/
9191

9292
# Samples Folder
93-
Samples/*.pdf
94-
Samples/*.png
95-
Samples/*.jpg
96-
Samples/*.jpeg
97-
Samples/*.swift
93+
Samples.bundle/*.pdf
94+
Samples.bundle/*.png
95+
Samples.bundle/*.jpg
96+
Samples.bundle/*.jpeg
97+
Samples.bundle/*.swift

.swiftpm/SwiftDraw.xctestplan

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"configurations" : [
3+
{
4+
"id" : "1AF01B10-5ADB-4F60-8B2E-FB30A2CC2F79",
5+
"name" : "Test Scheme Action",
6+
"options" : {
7+
8+
}
9+
}
10+
],
11+
"defaultOptions" : {
12+
"codeCoverage" : false
13+
},
14+
"testTargets" : [
15+
{
16+
"target" : {
17+
"containerPath" : "container:",
18+
"identifier" : "SwiftDrawTests",
19+
"name" : "SwiftDrawTests"
20+
}
21+
}
22+
],
23+
"version" : 1
24+
}

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.swiftpm/xcode/xcshareddata/xcschemes/SwiftDraw-Package.xcscheme

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1340"
4-
version = "1.3">
3+
LastUpgradeVersion = "1430"
4+
version = "1.7">
55
<BuildAction
66
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
@@ -14,9 +14,9 @@
1414
buildForAnalyzing = "YES">
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
17-
BlueprintIdentifier = "SwiftDraw_SwiftDrawTests"
18-
BuildableName = "SwiftDraw_SwiftDrawTests"
19-
BlueprintName = "SwiftDraw_SwiftDrawTests"
17+
BlueprintIdentifier = "SwiftDraw"
18+
BuildableName = "SwiftDraw"
19+
BlueprintName = "SwiftDraw"
2020
ReferencedContainer = "container:">
2121
</BuildableReference>
2222
</BuildActionEntry>
@@ -28,9 +28,9 @@
2828
buildForAnalyzing = "YES">
2929
<BuildableReference
3030
BuildableIdentifier = "primary"
31-
BlueprintIdentifier = "SwiftDraw"
32-
BuildableName = "SwiftDraw"
33-
BlueprintName = "SwiftDraw"
31+
BlueprintIdentifier = "swiftdraw"
32+
BuildableName = "swiftdraw"
33+
BlueprintName = "swiftdraw"
3434
ReferencedContainer = "container:">
3535
</BuildableReference>
3636
</BuildActionEntry>
@@ -42,9 +42,9 @@
4242
buildForAnalyzing = "YES">
4343
<BuildableReference
4444
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "swiftdraw"
46-
BuildableName = "swiftdraw"
47-
BlueprintName = "swiftdraw"
45+
BlueprintIdentifier = "CommandLine"
46+
BuildableName = "CommandLine"
47+
BlueprintName = "CommandLine"
4848
ReferencedContainer = "container:">
4949
</BuildableReference>
5050
</BuildActionEntry>
@@ -68,7 +68,8 @@
6868
buildConfiguration = "Debug"
6969
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
7070
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
71-
shouldUseLaunchSchemeArgsEnv = "YES">
71+
shouldUseLaunchSchemeArgsEnv = "YES"
72+
shouldAutocreateTestPlan = "YES">
7273
<Testables>
7374
<TestableReference
7475
skipped = "NO">

.swiftpm/xcode/xcshareddata/xcschemes/swiftdraw.xcscheme renamed to .swiftpm/xcode/xcshareddata/xcschemes/SwiftDraw.xcscheme

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1340"
4-
version = "1.3">
3+
LastUpgradeVersion = "1430"
4+
version = "1.7">
55
<BuildAction
66
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
@@ -27,18 +27,12 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30-
<Testables>
31-
<TestableReference
32-
skipped = "NO">
33-
<BuildableReference
34-
BuildableIdentifier = "primary"
35-
BlueprintIdentifier = "SwiftDrawTests"
36-
BuildableName = "SwiftDrawTests"
37-
BlueprintName = "SwiftDrawTests"
38-
ReferencedContainer = "container:">
39-
</BuildableReference>
40-
</TestableReference>
41-
</Testables>
30+
<TestPlans>
31+
<TestPlanReference
32+
reference = "container:.swiftpm/SwiftDraw.xctestplan"
33+
default = "YES">
34+
</TestPlanReference>
35+
</TestPlans>
4236
</TestAction>
4337
<LaunchAction
4438
buildConfiguration = "Debug"

Examples/Basic.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
D961846D220FDD1200C59D9B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D961846C220FDD1200C59D9B /* Assets.xcassets */; };
1313
D9618470220FDD1200C59D9B /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D961846E220FDD1200C59D9B /* LaunchScreen.storyboard */; };
1414
D9742E1E27D4877300E02FFD /* SwiftDraw in Frameworks */ = {isa = PBXBuildFile; productRef = D9742E1D27D4877300E02FFD /* SwiftDraw */; };
15-
D9BA1AAD2894A33C007A6033 /* Samples.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D9BA1AAC2894A32A007A6033 /* Samples.bundle */; };
15+
D9EE86AF2A4EC94E00C7CAE1 /* Samples.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D94D5BE22A4EC906001DCD83 /* Samples.bundle */; };
1616
/* End PBXBuildFile section */
1717

1818
/* Begin PBXCopyFilesBuildPhase section */
@@ -29,6 +29,7 @@
2929

3030
/* Begin PBXFileReference section */
3131
014F853028F0BC3100B4BE96 /* Basic.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = Basic.entitlements; path = Basic/Basic.entitlements; sourceTree = "<group>"; };
32+
D94D5BE22A4EC906001DCD83 /* Samples.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Samples.bundle; path = ../Samples.bundle; sourceTree = "<group>"; };
3233
D9618462220FDD1100C59D9B /* Basic.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Basic.app; sourceTree = BUILT_PRODUCTS_DIR; };
3334
D9618465220FDD1100C59D9B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
3435
D9618467220FDD1100C59D9B /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
@@ -37,7 +38,6 @@
3738
D9618471220FDD1200C59D9B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3839
D9742E1C27D4875100E02FFD /* SwiftDraw */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwiftDraw; path = ..; sourceTree = "<group>"; };
3940
D9ACD7A0220FDE04009717CF /* SwiftDraw.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SwiftDraw.framework; sourceTree = BUILT_PRODUCTS_DIR; };
40-
D9BA1AAC2894A32A007A6033 /* Samples.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Samples.bundle; sourceTree = "<group>"; };
4141
/* End PBXFileReference section */
4242

4343
/* Begin PBXFrameworksBuildPhase section */
@@ -57,7 +57,7 @@
5757
children = (
5858
014F853028F0BC3100B4BE96 /* Basic.entitlements */,
5959
D9742E1C27D4875100E02FFD /* SwiftDraw */,
60-
D9BA1AAC2894A32A007A6033 /* Samples.bundle */,
60+
D94D5BE22A4EC906001DCD83 /* Samples.bundle */,
6161
D9618464220FDD1100C59D9B /* Sources */,
6262
D9618463220FDD1100C59D9B /* Products */,
6363
D9ACD79F220FDE04009717CF /* Frameworks */,
@@ -155,7 +155,7 @@
155155
buildActionMask = 2147483647;
156156
files = (
157157
D9618470220FDD1200C59D9B /* LaunchScreen.storyboard in Resources */,
158-
D9BA1AAD2894A33C007A6033 /* Samples.bundle in Resources */,
158+
D9EE86AF2A4EC94E00C7CAE1 /* Samples.bundle in Resources */,
159159
D961846D220FDD1200C59D9B /* Assets.xcassets in Resources */,
160160
);
161161
runOnlyForDeploymentPostprocessing = 0;

Examples/Samples.bundle

Lines changed: 0 additions & 1 deletion
This file was deleted.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ let package = Package(
3131
dependencies: ["SwiftDraw"],
3232
path: "SwiftDrawTests",
3333
resources: [
34-
.process("Samples")
34+
.copy("Test.bundle")
3535
]
3636
)
3737
]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)