-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
RouteComposer.podspec
20 lines (17 loc) · 1001 Bytes
/
RouteComposer.podspec
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.11.1'
s.summary = 'Protocol oriented library that helps to handle view controllers composition, navigation and deep linking tasks.'
s.swift_version = '5.10'
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' => '[email protected]' }
s.source = { :git => 'https://github.com/ekazaev/route-composer.git', :tag => s.version }
s.ios.deployment_target = '15.0'
s.source_files = 'RouteComposer/Classes/**/*.*'
s.frameworks = 'UIKit'
end