Skip to content

Commit

Permalink
Fixing warnings on ConnectionManager
Browse files Browse the repository at this point in the history
  • Loading branch information
vilanovi committed Mar 21, 2014
1 parent a136873 commit 6f09352
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions ConnectionManager/1.0.1/ConnectionManager.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Pod::Spec.new do |s|

s.name = "ConnectionManager"
s.version = "1.0.1"
s.summary = "Easy management for connections in iOS"

s.description = <<-DESC
Here I present a very simple framework to handle connections in a very efficient and easy way. Just give a NSURLRequest and you will have in return the result of a NSURLConnection.
The connections are performed asynchronously and the framework allows you to:
* Cancel requests
* Set priorities
* Manage multiple connection queues
* Configure connection queues individualy
* Pause and restart connections
* Get feedback of downloading/uploading status
* Define credentials and trusted servers
* Get the return of the connection using blocks
DESC

s.homepage = "https://github.com/vilanovi/ConnectionManager"
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Joan Martin" => "vilanovi@gmail.com" }
s.social_media_url = "http://twitter.com/joan_mh"
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/vilanovi/ConnectionManager.git", :tag => "1.0.1" }
s.source_files = 'Source/*.{h,m}'
s.framework = 'Foundation'
s.requires_arc = true

end

0 comments on commit 6f09352

Please sign in to comment.