forked from aciidgh/SwiftMQTT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftMQTT.podspec
More file actions
26 lines (18 loc) · 776 Bytes
/
Copy pathSwiftMQTT.podspec
File metadata and controls
26 lines (18 loc) · 776 Bytes
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
Pod::Spec.new do |s|
s.name = "SwiftMQTT"
s.version = "3.0.0"
s.summary = "MQTT Client in pure Swift"
s.description = <<-DESC
MQTT Client in Swift 4.1 based on MQTT Version 3.1.1
DESC
s.homepage = "https://github.com/aciidb0mb3r/SwiftMQTT"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Ankit Agarwal" => "ankit.spd@gmail.com" }
s.source = { :git => "https://github.com/aciidb0mb3r/SwiftMQTT.git", :tag => s.version.to_s }
s.swift_version = "4.1"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.source_files = "SwiftMQTT/SwiftMQTT/**/*.swift"
s.frameworks = "Foundation"
end