forked from canopas/UIPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIPilot.podspec
24 lines (19 loc) · 845 Bytes
/
UIPilot.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
Pod::Spec.new do |s|
s.name = "UIPilot"
s.version = "2.0.2"
s.summary = "The missing type-safe, SwiftUI navigation library."
s.description = <<-DESC
UIPilot is a wrapper around NavigationView of SwiftUI.
DESC
s.homepage = "https://github.com/canopas/UIPilot"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Jimmy" => "[email protected]" }
s.source = { :git => "https://github.com/canopas/UIPilot.git", :tag => s.version.to_s }
s.source_files = "Sources/UIPilot/*.swift"
s.social_media_url = 'https://twitter.com/canopassoftware'
s.module_name = 'UIPilot'
s.requires_arc = true
s.swift_version = '5.5'
s.preserve_paths = 'README.md'
s.ios.deployment_target = '14.0'
end