forked from banjun/ReactiveSSE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactiveSSE.podspec
More file actions
19 lines (19 loc) · 901 Bytes
/
Copy pathReactiveSSE.podspec
File metadata and controls
19 lines (19 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'ReactiveSSE'
s.version = '0.3.1'
s.summary = 'Server Sent Events (SSE) parser operators for ReactiveSwift'
s.description = <<-DESC
Server Sent Events (SSE) parser operators for ReactiveSwift.
You can observe event streams sent via Server Sent Events (SSE).
DESC
s.homepage = 'https://github.com/banjun/ReactiveSSE'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'banjun' => 'banjun@gmail.com' }
s.source = { :git => 'https://github.com/banjun/ReactiveSSE.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/banjun'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.source_files = 'ReactiveSSE/Classes/**/*'
s.dependency 'ReactiveSwift', '~> 6.0'
s.dependency 'FootlessParser', '~> 0.5'
end