forked from marcuswestin/WebViewJavascriptBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebViewJavascriptBridge.podspec
19 lines (17 loc) · 1009 Bytes
/
WebViewJavascriptBridge.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'WebViewJavascriptBridge'
s.version = '6.0.3'
s.summary = 'An iOS & OSX bridge for sending messages between Obj-C/Swift and JavaScript in WKWebViews, UIWebViews & WebViews.'
s.homepage = 'https://github.com/marcuswestin/WebViewJavascriptBridge'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'marcuswestin' => 'marcus.westin@gmail.com' }
s.source = { :git => 'https://github.com/marcuswestin/WebViewJavascriptBridge.git', :tag => 'v'+s.version.to_s }
s.platforms = { :ios => "5.0", :osx => "" }
s.requires_arc = true
s.ios.source_files = 'WebViewJavascriptBridge/*.{h,m}'
s.ios.private_header_files = 'WebViewJavascriptBridge/WebViewJavascriptBridge_JS.h'
s.osx.source_files = 'WebViewJavascriptBridge/*.{h,m}'
s.osx.private_header_files = 'WebViewJavascriptBridge/WebViewJavascriptBridge_JS.h'
s.frameworks = 'WebKit'
s.ios.frameworks = 'UIKit', 'WebKit'
end