-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInsecurity.podspec
33 lines (26 loc) · 1.49 KB
/
Insecurity.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
32
33
Pod::Spec.new do |spec|
spec.name = "Insecurity"
spec.version = "3.0.3"
spec.summary = "Ultimate iOS Swift Navigation Framework"
spec.description = <<-DESC
This implementation of Coordinator pattern provides:
- Automatic present/dismiss calls for modal controller presentation
- Automatic pushViewController/popViewController calls for UINavigationController presentation
- Automatic dismissal/popping of multiple view controllers if all of them finish simultaneously
- Automatic detection of modal iOS 13 form sheet dismissal in modal presentation
- Automatic detection of interactivePopGestureRecognizer dismissal in UINavigationController
- Propagation of results to the parent
- Ability to organize custom coordinators that allow for magical modification of UINavigationController stack or modal presentation stack
- Context-independent navigation
- Automatic management of a UIWindow
You can use it alongside any of your existing navigation solutions.
DESC
spec.homepage = "https://github.com/isaac-weisberg/Insecurity"
spec.license = { :type => "MIT", :file => "LICENSE.txt" }
spec.author = { "Isaac Weisberg" => "[email protected]" }
spec.social_media_url = "http://caroline-weisberg.net/"
spec.platform = :ios, "12.0"
spec.source = { :git => "https://github.com/isaac-weisberg/Insecurity.git", :tag => "#{spec.version}" }
spec.swift_version = "5.0"
spec.source_files = "Insecurity/**/*.swift"
end