forked from marcuswestin/WebViewJavascriptBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GDChannel+JavascriptBridge.podspec
21 lines (20 loc) · 1.04 KB
/
GDChannel+JavascriptBridge.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'GDChannel+JavascriptBridge'
s.version = '5.0.5'
s.summary = 'An iOS/OSX bridge for sending messages between Obj-C and JavaScript in UIWebViews/WebViews.'
s.homepage = 'https://github.com/goodow/GDChannel-JavascriptBridge'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'larrytin' => 'dev@goodow.com' }
s.requires_arc = true
s.source = { :git => 'https://github.com/goodow/GDChannel-JavascriptBridge.git', :tag => 'v'+s.version.to_s }
s.platforms = { :ios => "5.0", :osx => "" }
s.ios.source_files = 'WebViewJavascriptBridge/*.{h,m}'
s.osx.source_files = 'WebViewJavascriptBridge/*.{h,m}'
s.ios.private_header_files = 'WebViewJavascriptBridge/WebViewJavascriptBridge_JS.h'
s.osx.private_header_files = 'WebViewJavascriptBridge/WebViewJavascriptBridge_JS.h'
s.ios.framework = 'UIKit'
s.osx.framework = 'WebKit'
s.dependency 'GDChannel', '~> 0.6'
s.dependency 'NJKWebViewProgress', '~> 0.2'
s.resources = ['WebViewJavascriptBridge/*.xib']
end