Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split SwiftUI support into separate module #929

Merged
merged 5 commits into from
Feb 4, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions WorkflowSwiftUI.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = 'WorkflowSwiftUI'
s.version = '0.24.0'
s.summary = 'Infrastructure for WorkflowUI-powered SwiftUI'
dhavalshreyas marked this conversation as resolved.
Show resolved Hide resolved
s.homepage = 'https://www.github.com/square/workflow'
s.license = 'Apache License, Version 2.0'
s.author = 'Square'
s.source = { :git => 'https://github.com/square/workflow.git', :tag => "v#{s.version}" }

# 1.7 is needed for `swift_versions` support
s.cocoapods_version = '>= 1.7.0.beta.1'

s.swift_versions = ['5.1']
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'

s.source_files = 'swift/WorkflowSwiftUI/Sources/*.swift'

s.dependency 'Workflow', "#{s.version}"

end

1 change: 1 addition & 0 deletions swift/Samples/SampleSwiftUIApp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Podfile.lock
7 changes: 7 additions & 0 deletions swift/Samples/SampleSwiftUIApp/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
project 'SampleSwiftUIApp.xcodeproj'
platform :ios, '13'

target 'SampleSwiftUIApp' do
pod 'Workflow', path: '../../../Workflow.podspec', :testspecs => ['Tests']
pod 'WorkflowSwiftUI', path: '../../../WorkflowSwiftUI.podspec'
end