forked from ekazaev/route-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouteComposer.podspec
More file actions
20 lines (17 loc) · 999 Bytes
/
RouteComposer.podspec
File metadata and controls
20 lines (17 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'RouteComposer'
s.version = '2.8.0'
s.summary = 'Protocol oriented library that helps to handle view controllers composition, navigation and deep linking tasks.'
s.swift_version = '5.2'
s.description = <<-DESC
RouteComposer is the protocol oriented, Cocoa UI abstractions based library that helps to handle view controllers composition, navigation
and deep linking tasks in the iOS application. Can be used as the universal replacement for the Coordinator pattern.
DESC
s.homepage = 'https://github.com/ekazaev/route-composer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Evgeny Kazaev' => 'eugene.kazaev@gmail.com' }
s.source = { :git => 'https://github.com/ekazaev/route-composer.git', :tag => s.version }
s.ios.deployment_target = '11.0'
s.source_files = 'RouteComposer/Classes/**/*.*'
s.frameworks = 'UIKit'
end