forked from dfmuir/KINWebBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KINWebBrowser.podspec
25 lines (18 loc) · 1002 Bytes
/
KINWebBrowser.podspec
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
Pod::Spec.new do |s|
s.name = "KINWebBrowser"
s.version = "0.2.5"
s.summary = "A full featured web browser module for your iOS apps."
s.description = <<-DESC
KINWebBrowser is a Safari-like web browser compatible with iOS 7 for use within existing iOS projects. It features, back/forward buttons, reload button, and action button. It also features a Safari-like progress view under the navigation bar.
DESC
s.homepage = "https://github.com/dfmuir/KINWebBrowser"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "David F. Muir V" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/dfmuir/KINWebBrowser.git", :tag => s.version.to_s }
s.source_files = 'KINWebBrowser', 'KINWebBrowser/**/*.{h,m}'
s.resources = "Assets/*.png"
s.requires_arc = true
s.dependency 'TUSafariActivity', '= 1.0.0'
s.dependency 'ARChromeActivity'
end