-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathNavStack.podspec
19 lines (18 loc) · 1.24 KB
/
NavStack.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "NavStack"
spec.version = "1.1.1" # auto-generated
spec.swift_version = "5.4" # auto-generated
spec.summary = "A custom SwiftUI navigation framework."
spec.description = <<-DESC
NavigationStack is a custom SwiftUI solution for navigating between views. It's a more flexible alternative to SwiftUI's own navigation.
DESC
spec.homepage = "https://github.com/indieSoftware/NavigationStack"
spec.screenshots = "https://github.com/indieSoftware/NavigationStack/blob/master/img/swiftuiTransitions.gif?raw=true", "https://github.com/indieSoftware/NavigationStack/blob/master/img/animationTransitions.gif?raw=true", "https://github.com/indieSoftware/NavigationStack/blob/master/img/customTransitions.gif?raw=true"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Sven Korset" => "[email protected]" }
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.source = { :git => "https://github.com/indieSoftware/NavigationStack.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/NavigationStack", "Sources/NavigationStack/**/*.{swift}"
spec.module_name = 'NavigationStack'
end