-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathWebSocketRails.podspec
More file actions
21 lines (21 loc) · 1.13 KB
/
WebSocketRails.podspec
File metadata and controls
21 lines (21 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "WebSocketRails"
s.version = "1.1.2"
s.summary = "WebSocketRails client for iOS."
s.description = <<-DESC
Port of JavaScript client provided by https://github.com/websocket-rails/websocket-rails
Built on top of SocketRocket.
There is a sample WebSocketRails server located here https://github.com/patternoia/WebSocketRailsEcho
One can use it to test various WebSocketRocket event types.
DESC
s.homepage = "https://github.com/patternoia/WebSocketRails-iOS"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "patternoia"
s.social_media_url = "http://github.com/patternoia"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/patternoia/WebSocketRails-iOS.git", :tag => "1.1.1" }
s.source_files = "WebSocketRails-iOS/*.{h,m}"
s.library = "icucore"
s.requires_arc = true
s.dependency "SocketRocket", "~> 0.3.1-beta2"
end