-
Notifications
You must be signed in to change notification settings - Fork 9
/
FeathersSwiftSocketIO.podspec
31 lines (27 loc) · 1.18 KB
/
FeathersSwiftSocketIO.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "FeathersSwiftSocketIO"
# Version goes here and will be used to access the git tag later on, once we have a first release.
s.version = "4.0.1"
s.summary = "SocketIO provider for FeathersSwift"
s.description = <<-DESC
SocketIO provider for FeathersSwift for making real-time connections to a
FeathersJS backend.
DESC
s.homepage = "https://github.com/feathersjs/feathers-swift-socketio"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "startupthekid"
s.swift_version = "4.0"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/feathersjs/feathers-swift-socketio.git", :tag => "#{s.version}" }
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "FeathersSwiftSocketIO/Core/*.{swift}"
ss.framework = "Foundation"
ss.dependency 'Result'
ss.dependency 'Feathers'
ss.dependency 'Socket.IO-Client-Swift'
end
s.pod_target_xcconfig = {"OTHER_SWIFT_FLAGS[config=Release]" => "-suppress-warnings" }
end