-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathImperio.podspec
27 lines (20 loc) · 1.09 KB
/
Imperio.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
Pod::Spec.new do |s|
s.name = "Imperio"
s.version = "3.0.2"
s.summary = "Keep the screen flow logic out of your view controllers & make them testable."
s.description = <<-DESC
The goal of this library is to keep view controllers lean & make them easily testable by getting screen flow and other responsibilities out of them.
Instead coordinators are used to handle screen flow and trigger changes in the view part, which the view controller handles.
Pattern wise this approach combines ideas from MVC, MVP, MVVM and VIPER.
DESC
s.homepage = "https://github.com/Flinesoft/Imperio"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Cihat Gündüz" => "[email protected]" }
s.social_media_url = "https://twitter.com/Jeehut"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/Flinesoft/Imperio.git", :tag => "#{s.version}" }
s.source_files = "Frameworks/Imperio/**/*.swift"
s.framework = "UIKit"
s.swift_version = "4.2"
end