-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPeerConnectivity.podspec
More file actions
19 lines (19 loc) · 885 Bytes
/
Copy pathPeerConnectivity.podspec
File metadata and controls
19 lines (19 loc) · 885 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 = "PeerConnectivity"
s.version = "0.5.4"
s.summary = "Functional wrapper for Apple's MultipeerConnectivity framework."
s.description = <<-DESC
A functional wrapper around the MultipeerConnectivity framework that handles the edge cases of
mesh-networks.
DESC
s.homepage = "https://github.com/rchatham/PeerConnectivity"
s.license = "MIT"
s.author = { "Reid Chatham" => "reid.chatham@gmail.com" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/rchatham/PeerConnectivity.git", :tag => "#{s.version}" }
s.source_files = "Sources/*"
s.framework = "MultipeerConnectivity"
s.swift_version = "5.0"
# s.documentation_url = "http://reidchatham.com/docs/PeerConnectivity/Classes/PeerConnectionManager.html"
end