Skip to content

Instantly share code, notes, and snippets.

@rahulsom
Created February 28, 2015 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulsom/8d142aa09b62ef58d9db to your computer and use it in GitHub Desktop.
Save rahulsom/8d142aa09b62ef58d9db to your computer and use it in GitHub Desktop.
Podspec for Reactive Sockets
Pod::Spec.new do |s|
s.name = "MMPReactiveStompClient"
s.version = "0.1.4"
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/rahulsom/MMPReactiveStompClient.git" }
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment