- Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathTOWebViewController.podspec
More file actions
Latest commit
26 lines (24 loc) · 1.05 KB
/
Copy pathTOWebViewController.podspec
File metadata and controls
26 lines (24 loc) · 1.05 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.newdo |s|
s.name='TOWebViewController'
s.version='2.2.8'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.summary='An inline browser view controller that allows users to view and navigate web pages from within an app.'
s.homepage='https://github.com/TimOliver/TOWebViewController'
s.author='Tim Oliver'
s.source={:git=>'https://github.com/TimOliver/TOWebViewController.git',:tag=>s.version.to_s}
s.requires_arc=true
s.platform=:ios,'5.1'
s.default_subspec='Core'
s.subspec'Core'do |core|
core.frameworks='QuartzCore','CoreGraphics'
core.weak_frameworks='Twitter','MessageUI'
core.source_files='TOWebViewController/**/*.{h,m}'
core.resource_bundles={'TOWebViewControllerLocalizable'=>'TOWebViewController/**/*.lproj'}
end
s.subspec'1Password'do |op|
op.platform=:ios,'8.0'
op.dependency'1PasswordExtension'
op.source_files='TOWebViewController/**/*.{h,m}','TOWebViewController+1Password/*.{h,m}'
op.frameworks='MobileCoreServices'
end
end