-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJKJSBridge.podspec
More file actions
30 lines (22 loc) · 1.03 KB
/
JKJSBridge.podspec
File metadata and controls
30 lines (22 loc) · 1.03 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
#
# Be sure to run `pod spec lint JKJSBridge.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://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "JKJSBridge"
spec.version = "0.0.2"
spec.summary = "JKJSBridge"
spec.description = "一个iOS上用于WKWebView和JavaScript通信的Bridge。"
spec.homepage = "https://github.com/jokerwking/JKJSBridge"
spec.license = "MIT"
spec.author = { "joker" => "https://github.com/jokerwking" }
spec.platform = :ios
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/jokerwking/JKJSBridge.git", :tag => "#{spec.version}" }
spec.source_files = "JKJSBridge", "JKJSBridge/*.{h,m}"
spec.public_header_files = "JKJSBridge/*.h"
spec.frameworks = 'UIKit', 'Foundation', 'WebKit'
end