-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
143 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,10 @@ Pod::Spec.new do |s| | |
s.name = 'BlueprintUILists' | ||
s.version = LISTABLE_VERSION | ||
s.summary = 'Declarative list views for iOS apps that deploy back to iOS 14.0.' | ||
s.homepage = 'https://github.com/kyleve/Listable' | ||
s.homepage = 'https://github.com/square/Listable' | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { 'Kyle' => '[email protected]' } | ||
s.source = { git: 'https://github.com/kyleve/Listable.git', tag: "#{s.version}" } | ||
s.source = { git: 'https://github.com/square/Listable.git', tag: "#{s.version}" } | ||
|
||
s.ios.deployment_target = LISTABLE_IOS_DEPLOYMENT_TARGET | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
Demo/Demo.xcodeproj/xcshareddata/xcschemes/Test Targets.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "1420" | ||
version = "1.3"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "YES"> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES"> | ||
<Testables> | ||
<TestableReference | ||
skipped = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "0AE8554D2390933100F2E245" | ||
BuildableName = "Test Targets.xctest" | ||
BlueprintName = "Test Targets" | ||
ReferencedContainer = "container:Demo.xcodeproj"> | ||
</BuildableReference> | ||
</TestableReference> | ||
</Testables> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
require_relative 'version' | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'SwiftUILists' | ||
s.version = LISTABLE_VERSION | ||
s.summary = 'Declarative list views for SwiftUI' | ||
s.homepage = 'https://github.com/square/Listable' | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { 'UI Systems iOS' => '[email protected]' } | ||
s.source = { git: 'https://github.com/square/Listable.git', tag: "#{s.version}" } | ||
|
||
s.ios.deployment_target = LISTABLE_IOS_DEPLOYMENT_TARGET | ||
|
||
s.swift_versions = [LISTABLE_SWIFT_VERSION] | ||
|
||
s.dependency 'ListableUI' | ||
|
||
s.frameworks = 'SwiftUI' | ||
|
||
s.source_files = 'SwiftUILists/Sources/**/*.{swift}' | ||
|
||
s.pod_target_xcconfig = { | ||
'APPLICATION_EXTENSION_API_ONLY' => 'YES', | ||
} | ||
|
||
unless ENV['LISTABLE_PUBLISHING'] | ||
|
||
# These tests can only be run locally, because they depend on local pods. | ||
|
||
s.test_spec 'Tests' do |test_spec| | ||
test_spec.source_files = 'SwiftUILists/Tests/**/*.{swift}' | ||
test_spec.ios.resource_bundle = { 'SwiftUIListsResources' => 'SwiftUILists/Tests/Resources/**/*.*' } | ||
|
||
test_spec.frameworks = 'XCTest', 'SwiftUI' | ||
|
||
test_spec.libraries = 'swiftsimd', 'swiftCoreGraphics', 'swiftFoundation', 'swiftUIKit' | ||
|
||
test_spec.requires_app_host = true | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
// Just so things compile before we have actual sources | ||
private struct Dummy { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
// Just so things compile before we have actual sources | ||
private struct Dummy { | ||
} |