forked from famousj/AlamofireEventSource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlamofireEventSource.podspec
More file actions
23 lines (21 loc) · 1008 Bytes
/
AlamofireEventSource.podspec
File metadata and controls
23 lines (21 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "AlamofireEventSource"
s.version = "1.2.1"
s.summary = "Alamofire plugin for Server-Sent Events (SSE)."
s.homepage = "https://github.com/dclelland/AlamofireEventSource"
s.license = { :type => 'MIT' }
s.author = { "Daniel Clelland" => "[email protected]" }
s.source = { :git => "https://github.com/dclelland/AlamofireEventSource.git", :tag => "1.2.1" }
s.source_files = 'Sources/AlamofireEventSource/**/*.swift'
s.requires_arc = true
s.swift_versions = ['5.1', '5.2']
s.dependency 'Alamofire', '~> 5.0'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
end