forked from zhxnlai/AsyncTask
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsyncTask.podspec
More file actions
Latest commit
21 lines (19 loc) · 876 Bytes
/
Copy pathAsyncTask.podspec
File metadata and controls
21 lines (19 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.newdo |s|
s.name='AsyncTask'
s.version='0.1.3'
s.summary='An asynchronous programming library for Swift.'
s.description=<<-DESC
An asynchronous programming library for Swift that is composable and protocol oriented.
DESC
s.homepage='https://github.com/zhxnlai/AsyncTask'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Zhixuan Lai'=>'zhxnlai@gmail.com'}
s.source={:git=>'https://github.com/zhxnlai/AsyncTask.git',:tag=>s.version.to_s}
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
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.source_files='Source/Base/*.swift'
s.requires_arc=true
end