-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRJWebView.podspec
More file actions
23 lines (18 loc) · 816 Bytes
/
RJWebView.podspec
File metadata and controls
23 lines (18 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "RJWebView"
s.version = "0.2.0"
s.summary = "A short description of RJWebView."
s.description = <<-DESC
DESC
s.homepage = "https://github.com/yirenjun/RJWebView"
s.license = 'MIT'
s.author = { "yirenjun@gmail.com" => "RJWebView" }
s.source = { :git => "https://github.com/yirenjun/RJWebView.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.public_header_files = 'Pod/Classes/**/RJ*.h'
s.frameworks = 'UIKit'
s.weak_frameworks = 'WebKit'
s.dependency 'WebViewJavascriptBridge', '~> 4.1.5'
end