forked from swiftsocket/SwiftSocket
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwiftSocket.podspec
29 lines (21 loc) · 905 Bytes
/
SwiftSocket.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
Pod::Spec.new do |s|
s.name = "SwiftSocket"
s.version = "1.0.1"
s.summary = "A cool framework to work with TCP and UDP sockets"
s.description = <<-DESC
SwiftSocket profieds an easy way to create TCP or UDP clients and servers 💁
DESC
s.homepage = "https://github.com/danshevluk/SwiftSocket"
s.license = { :type => "BSD" }
s.author = { "Dan Shevlyuk" => "[email protected]" }
s.social_media_url = "http://twitter.com/danshevluk"
s.source = { :git => "https://github.com/danshevluk/SwiftSocket", :tag => "#{s.version}" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.7'
s.source = {
:git => 'https://github.com/azimin/AZTransition.git',
:tag => s.version
}
s.source_files = 'Source/*.swift'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3' }
end