-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMMPReactiveStompClient.podspec
More file actions
24 lines (22 loc) · 1.04 KB
/
Copy pathMMPReactiveStompClient.podspec
File metadata and controls
24 lines (22 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "MMPReactiveStompClient"
s.version = "0.2.1"
s.summary = "A reactive WebSocket/STOMP client based on ReactiveCocoa"
s.description = <<-DESC
MMPReactiveStompClient is a reactive WebSocket/STOMP client library based on ReactiveCocoa and SocketRocket.
Features:
* Signal for raw WebSocket.
* Signal for STOMP frames, messages, and subscription.
DESC
s.homepage = "https://github.com/mpurbo/MMPReactiveStompClient"
s.license = 'MIT'
s.author = { "Mamad Purbo" => "m.purbo@gmail.com" }
s.source = { :git => "https://github.com/mpurbo/MMPReactiveStompClient.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/purubo'
s.platform = :ios
s.ios.deployment_target = '7.0'
s.source_files = 'Classes'
s.dependency 'ReactiveCocoa'
s.dependency 'SocketRocket'
s.requires_arc = true
end