Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Add pod spec #218

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions socket.IO-objc.podspec
Original file line number Diff line number Diff line change
@@ -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