forked from sticksen/STKWebKitViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTKWebKitViewController.podspec
More file actions
32 lines (28 loc) · 1.38 KB
/
STKWebKitViewController.podspec
File metadata and controls
32 lines (28 loc) · 1.38 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
27
28
29
30
31
32
#
# Be sure to run `pod lib lint STKWebKitViewController.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "STKWebKitViewController"
s.version = "0.1.9"
s.summary = "Provides a wrapping UIViewController and UINavigationController for WKWebView"
s.description = <<-DESC
This project provides a wrapping UIViewController around Apple´s new WKWebView, available as of iOS8 in WebKit. Also included is a wrapping UINavigationController to present the WKWebView modally.
DESC
s.homepage = "https://github.com/sticksen/STKWebKitViewController"
s.screenshots = "http://sticki.de/github/STKWebKitViewController/1.png", "http://sticki.de/github/STKWebKitViewController/2.png"
s.license = 'MIT'
s.author = { "Marc" => "sticki@sticki.de" }
s.source = { :git => "https://github.com/sticksen/STKWebKitViewController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/sticksen'
s.platform = :ios
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resources = ['Pod/Assets/**/*.png']
s.frameworks = 'UIKit'
s.weak_frameworks = 'WebKit'
end