forked from button/DeepLinkKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DeepLinkKit.podspec
18 lines (16 loc) · 918 Bytes
/
DeepLinkKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "DeepLinkKit"
s.version = "1.0.0"
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 deeplinks. All with a simple, block-based interface.
DESC
s.homepage = "http://www.usebutton.com/sdk/deep-links"
s.license = 'MIT'
s.author = 'Button, Inc.'
s.source = { :git => "https://github.com/usebutton/DeepLinkKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/buttondev'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'DeepLinkKit/**/*.{h,m}'
end