- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAFAbstractRESTClient.podspec
More file actions
Latest commit
14 lines (14 loc) · 728 Bytes
/
Copy pathAFAbstractRESTClient.podspec
File metadata and controls
14 lines (14 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.newdo |s|
s.name="AFAbstractRESTClient"
s.version="1.0"
s.summary="AFAbstractRESTClient is simple abstract solution to deal with REST webservices using AFNetworking."
s.homepage="https://github.com/burczyk/AFAbstractRESTClient"
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={"Kamil Burczyk"=>"kamil.burczyk@gmail.com"}
s.source={:git=>"https://github.com/burczyk/AFAbstractRESTClient.git",:tag=>"1.0"}
s.platform=:ios,'6.0'
s.source_files='AFAbstractRESTClient'
s.prefix_header_file='AFAbstractRESTClient/AFAbstractRESTClient-Prefix.pch'
s.requires_arc=true
s.dependency'AFNetworking','~> 1.2.1'
end