forked from vadymmarkov/When
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWhen.podspec
More file actions
21 lines (19 loc) · 683 Bytes
/
When.podspec
File metadata and controls
21 lines (19 loc) · 683 Bytes
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 = "When"
s.summary = "A lightweight implementation of Promises in Swift"
s.version = "5.0.0"
s.homepage = "https://github.com/vadymmarkov/When"
s.license = 'MIT'
s.author = { "Vadym Markov" => "markov.vadym@hyper.no" }
s.source = {
:git => "https://github.com/vadymmarkov/When.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/vadymmarkov'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.source_files = 'Sources/**/*'
s.frameworks = 'Foundation'
end