- Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathWKWebViewWithURLProtocol.podspec
More file actions
Latest commit
20 lines (16 loc) · 775 Bytes
/
Copy pathWKWebViewWithURLProtocol.podspec
File metadata and controls
20 lines (16 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.newdo |s|
s.name='WKWebViewWithURLProtocol'
s.version='0.1.0'
s.summary='Make webView can hooked by URLProtocol.'
s.description=<<-DESC
Make webView can hooked by URLProtocol.
DESC
s.homepage='https://github.com/WildDylan/WKWebViewWithURLProtocol'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Dylan'=>'dylan@china.com'}
s.source={:git=>'https://github.com/WildDylan/WKWebViewWithURLProtocol.git',:tag=>s.version.to_s}
s.ios.deployment_target='8.0'
s.source_files='WKWebViewWithURLProtocol/**/*'
s.public_header_files='WKWebViewWithURLProtocol/**/*.h'
s.frameworks='Foundation','WebKit'
end