-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathANRestOps.podspec
More file actions
17 lines (17 loc) · 966 Bytes
/
Copy pathANRestOps.podspec
File metadata and controls
17 lines (17 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "ANRestOps"
s.version = "1.0.4-pzp"
s.summary = "ANRestOps is a simple lightweight library to make REST calls"
s.description = <<-DESC
ANRestOps is a simple library based on the NSURLConnection and NSOperationQueue APIs. It abstracts away most of the complexity to set up these objects and allows you to make simple REST calls in a single line of code.
DESC
s.homepage = "https://github.com/ayushn21/ANRestOps"
s.license = 'MIT'
s.author = { "Ayush Newatia" => "ayush.newatia@icloud.com", "Phone Z Phyo" => "phonezawphyo@gmail.com" }
s.source = { :git => "https://github.com/phonezawphyo/ANRestOps.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ayushn21'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'ANRestOps/*.{h,m}'
s.frameworks = 'Foundation'
end