forked from johnpatrickmorgan/FlowStacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlowStacks.podspec
31 lines (22 loc) · 1.07 KB
/
FlowStacks.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = 'FlowStacks'
s.version = '0.3.6'
s.summary = 'Hoist navigation state into a coordinator in SwiftUI.'
s.description = <<-DESC
FlowStacks allows you to hoist SwiftUI navigation or presentation state into a
higher-level coordinator view. The coordinator pattern allows you to write isolated views
that have zero knowledge of their context within an app.
DESC
s.homepage = 'https://github.com/johnpatrickmorgan/FlowStacks'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'johnpatrickmorgan' => '[email protected]' }
s.source = { :git => 'https://github.com/johnpatrickmorgan/FlowStacks.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/jpmmusic'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '11.0'
s.watchos.deployment_target = '7.0'
s.tvos.deployment_target = '14.0'
s.swift_version = '5.4'
s.source_files = 'Sources/**/*'
s.frameworks = 'Foundation', 'SwiftUI'
end