-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonathan Diehl
committed
Dec 25, 2015
1 parent
a032896
commit 323669f
Showing
1 changed file
with
3 additions
and
12 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 |
---|---|---|
@@ -1,26 +1,17 @@ | ||
# | ||
# Be sure to run `pod lib lint AsyncNetwork.podspec' to ensure this is a | ||
# valid spec before submitting. | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "AsyncNetwork" | ||
s.version = "1.1.0" | ||
s.version = "1.1.1" | ||
s.summary = "Simple Socket Networking" | ||
s.description = "iOS / Cocoa Framework for socket networking based on CocoaAsyncSocket" | ||
s.homepage = "https://github.com/jdiehl/async-network" | ||
s.license = 'MIT' | ||
s.author = "Jonathan Diehl" | ||
s.source = { :git => "https://github.com/jdiehl/async-network.git", :tag => s.version.to_s } | ||
|
||
s.requires_arc = true | ||
|
||
s.source_files = 'AsyncNetwork' | ||
|
||
s.requires_arc = true | ||
s.source_files = 'AsyncNetwork' | ||
s.osx.frameworks = 'CFNetwork', 'Security' | ||
s.osx.deployment_target = '10.7' | ||
|
||
s.ios.frameworks = 'CFNetwork', 'Security' | ||
s.ios.deployment_target = '5.0' | ||
|
||
s.dependency 'CocoaAsyncSocket' | ||
end |