-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouting-SebastianPickl.podspec
More file actions
21 lines (21 loc) · 1.2 KB
/
Routing-SebastianPickl.podspec
File metadata and controls
21 lines (21 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'Routing-SebastianPickl'
s.module_name = 'Routing'
s.version = '0.2.1'
s.summary = 'Strongly typed routing concept without static navigation flows.'
s.description = <<-DESC
Router is based on the idea of open navigation flows where any location inside an app can be reached from anywhere by passing instances of `Route` types to corresponding, preregistered `RouteHandler`s. While `Route`s provide necessary information about the desination, `RouteHandler`s will provide instances of a generic `View` type which can be specified as `AnyView`, `UIViewController`, `NSViewController` or any other type.
DESC
s.homepage = 'https://github.com/sebastianpixel/Routing'
s.authors = 'Sebastian Pickl'
s.social_media_url = 'https://twitter.com/SebastianPickl'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.swift_versions = '5.3'
s.frameworks = ['UIKit']
s.ios.deployment_target = '9.0'
s.source = { :git => 'https://github.com/sebastianpixel/Routing.git', :tag => "#{s.version}" }
s.source_files = 'Sources/Routing/**/*.swift'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/RoutingTests'
end
end