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.
Merge pull request CocoaPods#1073 from acerbetti/master
new podspec for AFCSVRequestOperation 1.0.0
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
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,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AFCSVRequestOperation' | ||
s.version = '1.0.0' | ||
s.homepage = 'https://github.com/AFNetworking/AFKissXMLRequestOperation' | ||
s.author = { 'Stefano Acerbetti' => '[email protected]' } | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.summary = 'An extension for AFNetworking that provides an interface to parse CSV using CHCSVParser.' | ||
s.source = { :git => 'https://github.com/acerbetti/AFCSVRequestOperation.git', :tag => 'v1.0.0' } | ||
s.source_files = 'AFCSVRequestOperation.{h,m}' | ||
s.dependency 'AFNetworking' | ||
s.dependency 'CHCSVParser' | ||
s.ios.deployment_target = '5.0' | ||
s.osx.deployment_target = '10.7' | ||
s.requires_arc = true | ||
end |