Skip to content

Commit

Permalink
Added FSURLOperation v0.0.1
Browse files Browse the repository at this point in the history
Also, this is my first cocoa pod! Yay for me!
  • Loading branch information
Chris Miller committed Mar 2, 2012
1 parent 2e85d8e commit cef5739
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions FSURLOperation/0.0.1/FSURLOperation.podspec
@@ -0,0 +1,19 @@
#
# Be sure to run `pod spec lint FSURLOperation.podspec' to ensure this is a
# valid spec.
#
# Remove all comments before submitting the spec.
#
Pod::Spec.new do |s|
s.name = 'FSURLOperation'
s.version = '0.0.1'
s.license = 'FDOSL'
s.summary = 'Simple NSOperation wrapper for NSURLRequest.'
s.homepage = 'https://github.com/NSError/URLOperation'
s.author = { 'Chris Miller' => 'nserror@me.com' }
s.source = { :git => 'https://github.com/NSError/URLOperation.git', :tag => '1.0.0' }
s.description = 'HTTP requests are hard, but scheduling them doesn\'t have to be! FSURLOperation makes it much easier to dispatch NSURLRequests. By leveraging the existing capabilities of NSOperation, you can set dependencies, block until an operation (or set of operations) completes, and also control which thread the request is performed on. So go make concurrent URL operations like a boss, and keep being awesome!'
s.source_files = FileList['*h', '*.m']
s.framework = 'Foundation'
s.requires_arc = true
end

0 comments on commit cef5739

Please sign in to comment.