Uh oh!
There was an error while loading. Please reload this page.
forked from goncharik/DeepLinkKit
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeepLinkKit.podspec
More file actions
Latest commit
33 lines (30 loc) · 1.45 KB
/
Copy pathDeepLinkKit.podspec
File metadata and controls
33 lines (30 loc) · 1.45 KB
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
28
29
30
31
32
33
Pod::Spec.newdo |s|
s.name="DeepLinkKit"
s.version="1.5.1"
s.summary="A splendid route-matching, block-based way to handle your deep links."
s.description=<<-DESC
DeepLink Kit is a splendid route-handling block-based way to handle deep links. Use DeepLink Kit to parse incoming URLs, extract parameters from the host, url etc.. and even build outgoing deep links. All with a simple, block-based interface.
DESC
s.homepage="https://www.usebutton.com/developers/deep-link-kit/"
s.license='MIT'
s.author='Button, Inc.'
s.source={:git=>"https://github.com/button/DeepLinkKit.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/buttondev'
s.ios.deployment_target="7.0"
s.tvos.deployment_target="9.0"
s.requires_arc=true
s.source_files='DeepLinkKit/**/*.{h,m}'
s.private_header_files=[
"DeepLinkKit/**/DeepLinkKit_Private.h",
"DeepLinkKit/**/DPLDeepLink_Private.h",
"DeepLinkKit/**/DPLSerializable.h",
"DeepLinkKit/**/DPLMatchResult.h",
"DeepLinkKit/**/DPLRouteMatcher.h",
"DeepLinkKit/**/DPLRegularExpression.h",
"DeepLinkKit/**/NSString+DPLTrim.h",
"DeepLinkKit/**/NSString+DPLQuery.h",
"DeepLinkKit/**/NSString+DPLJSON.h",
"DeepLinkKit/**/NSObject+DPLJSONObject.h",
"DeepLinkKit/**/UINavigationController+DPLRouting.h",
]
end