-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKBFSocketRocket.podspec
More file actions
36 lines (27 loc) · 1.31 KB
/
KBFSocketRocket.podspec
File metadata and controls
36 lines (27 loc) · 1.31 KB
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
32
33
34
35
36
#
# Be sure to run `pod spec lint KBFSocketRocket.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "KBFSocketRocket"
spec.version = "0.2.2"
spec.summary = "A short description of KBFSocketRocket."
spec.description =<<-DESC
KBFSocketRocket
DESC
spec.homepage = "https://github.com/kang-breakfly/KBFSocketRocket"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "kang-breakfly" => "breakfly@126.com" }
spec.source = { :git => "https://github.com/kang-breakfly/KBFSocketRocket.git", :tag => "#{spec.version}" }
spec.source_files = "SocketRocket/**/*.{h,m}","SocketRocket/*.{h,m}"
spec.public_header_files = 'SocketRocket/*.h'
spec.exclude_files = "SocketRocket/Internal","SocketRocket/Internal/*"
spec.requires_arc = true
spec.ios.frameworks = 'CFNetwork', 'Security'
spec.osx.frameworks = 'CoreServices', 'Security'
spec.tvos.frameworks = 'CFNetwork', 'Security'
spec.libraries = 'icucore'
end