forked from Rightpoint/RZPoseurWebView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRZPoseurWebView.podspec
More file actions
26 lines (21 loc) · 1.08 KB
/
Copy pathRZPoseurWebView.podspec
File metadata and controls
26 lines (21 loc) · 1.08 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
Pod::Spec.new do |s|
s.name = "RZPoseurWebView"
s.version = "1.0"
s.summary = "RZPoseurWebView is a library to simplify migrating from UIWebView to WKWebview."
s.description = <<-DESC
RZPoseurWebView is a library to simplify migrating from UIWebView to WKWebview.
Features:
* Delegate-compatible replacement for UIWebView that's backed by WKWebView.
* If WKWebView is not available, RZPoseurWebView falls back on UIWebView.
DESC
s.homepage = "https://github.com/Raizlabs/RZPoseurWebView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Justin Kaufman" => "jkaufman@raizlabs.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/Raizlabs/RZPoseurWebView.git", :tag => "1.0.0" }
s.source_files = "Classes/*.{h,m}", "Classes/Private/*.{h,m}"
s.public_header_files = "Classes/*.h"
s.private_header_files = "Classes/Private/*.h"
s.frameworks = "Foundation", "UIKit", "WebKit"
s.requires_arc = true
end