forked from pvzig/SKWebAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSKWebAPI.podspec
More file actions
18 lines (18 loc) · 855 Bytes
/
SKWebAPI.podspec
File metadata and controls
18 lines (18 loc) · 855 Bytes
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 = "SKWebAPI"
s.version = "4.1.2"
s.summary = "A Swift library to help make requests to the Slack Web API"
s.homepage = "https://github.com/SlackKit/SKWebAPI"
s.license = 'MIT'
s.author = { "Peter Zignego" => "peter@launchsoft.co" }
s.source = { :git => "https://github.com/SlackKit/SKWebAPI.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/pvzig'
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Sources/*.swift'
s.frameworks = 'Foundation'
s.dependency 'SKCore'
end