-
Notifications
You must be signed in to change notification settings - Fork 81
/
ReSwiftRouter.podspec
22 lines (22 loc) · 1.12 KB
/
ReSwiftRouter.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "ReSwiftRouter"
s.version = "0.7.1"
s.summary = "Declarative Routing for ReSwift"
s.description = <<-DESC
A declarative router for ReSwift. Allows developers to declare routes in a similar manner as
URLs are used on the web. Using ReSwiftRouter you can navigate your app by defining the target location
in the form of a URL-like sequence of identifiers.
DESC
s.homepage = "https://github.com/ReSwift/ReSwift-Router"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Benjamin Encz" => "[email protected]" }
s.source = { :git => "https://github.com/ReSwift/ReSwift-Router.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'ReSwiftRouter/**/*.swift'
s.swift_versions = [ "5.0", "4.2" ]
s.dependency 'ReSwift', '~> 6.1.0'
end