forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[add] AFNetworking-Synchronous 0.2.0
- Loading branch information
1 parent
b733cf7
commit 5df51d1
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
AFNetworking-Synchronous/0.2.0/AFNetworking-Synchronous.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AFNetworking-Synchronous' | ||
s.version = '0.2.0' | ||
s.summary = 'Synchronous requests for AFNetworking' | ||
s.description = <<-DESC | ||
A minimal category which extends AFNetworking 1.x, specifically | ||
AFHTTPClient, to support synchronous requests. | ||
DESC | ||
s.homepage = 'https://github.com/paulmelnikow/AFNetworking-Synchronous' | ||
s.license = 'MIT' | ||
s.author = { "Paul Melnikow" => "github@paulmelnikow.com" } | ||
s.source = { :git => 'https://github.com/paulmelnikow/AFNetworking-Synchronous.git', | ||
:tag => "v#{s.version}" } | ||
|
||
s.ios.deployment_target = '6.0' | ||
s.osx.deployment_target = '10.7' | ||
s.requires_arc = true | ||
|
||
s.source_files = '*.{h,m}' | ||
|
||
s.dependency 'AFNetworking', '~> 1.3.3' | ||
end |