Created
January 28, 2014 14:48
-
-
Save edgarjs/8668952 to your computer and use it in GitHub Desktop.
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
Pod::Spec.new do |s| | |
s.name = "socket.IO" | |
s.version = "0.4.1" | |
s.summary = "socket.io v0.7.2+ for iOS devices." | |
s.description = <<-DESC | |
Interface to communicate between Objective C and Socket.IO with the help of websockets. It's based on fpotter's socketio-cocoa and uses other libraries/classes like SocketRocket, json-framework (optional) and jsonkit (optional). | |
DESC | |
s.homepage = "https://github.com/pkyeck/socket.IO-objc" | |
s.license = 'MIT' | |
s.author = { "Philipp Kyeck" => "[email protected]" } | |
s.source = { :git => "https://github.com/pkyeck/socket.IO-objc.git", :tag => '0.4.1' } | |
s.source_files = '*.{h,m}' | |
s.ios.deployment_target = '5.0' | |
s.osx.deployment_target = '10.7' | |
s.requires_arc = true | |
s.dependency 'SocketRocket', '~> 0.2' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment