This repository was archived by the owner on Nov 15, 2018. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathJBWebViewController.podspec
More file actions
Latest commit
33 lines (31 loc) · 1.54 KB
/
Copy pathJBWebViewController.podspec
File metadata and controls
33 lines (31 loc) · 1.54 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
33
#
# Be sure to run `pod spec lint JBWebViewController.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.newdo |s|
s.name="JBWebViewController"
s.version="1.0.8"
s.summary="A modal view controller for showing websites - inspired by the Facebook app"
s.description=<<-DESC
A drop-in Facebook inspired modal web browser.
Created to look like the web browser in the current Facebook App on App Store.
DESC
s.homepage="https://github.com/boserup/JBWebViewController"
s.screenshots="https://raw.githubusercontent.com/boserup/JBWebViewController/master/Example/screenshot.png"
s.license="MIT"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Jonas Boserup"=>"jonas@iboserup.dk"}
s.social_media_url="http://twitter.com/JonasBoserup"
s.platform=:ios,"7.0"
s.source={:git=>"https://github.com/boserup/JBWebViewController.git",:tag=>"#{s.version}"}
s.source_files="JBWebViewController/*.{h,m}"
s.resources="JBWebViewController/Icons.xcassets"
s.weak_framework='WebKit'
s.requires_arc=true
s.dependency'ARChromeActivity','1.0.0'
s.dependency'ARSafariActivity','0.0.1'
s.dependency'NJKWebViewProgress','0.2.3'
end