From a866538158d440c0aa7375d328f71fd2332a12c4 Mon Sep 17 00:00:00 2001 From: reinitialized Date: Thu, 16 Apr 2015 19:16:50 -0400 Subject: [PATCH] Add pod spec --- socket.IO-objc.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 socket.IO-objc.podspec diff --git a/socket.IO-objc.podspec b/socket.IO-objc.podspec new file mode 100644 index 0000000..55f5eb5 --- /dev/null +++ b/socket.IO-objc.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = "socket.IO-objc" + s.version = "0.5.2" + s.summary = "socket.io 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" => "philipp@beta-interactive.de" } + s.source = { :git => "https://github.com/pkyeck/socket.IO-objc.git", :tag => s.version.to_s } + s.source_files = '*.{h,m}' + s.requires_arc = true + s.dependency 'SocketRocket', '~> 0.3.1-beta2' +end