-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSlideViewer.podspec
24 lines (21 loc) · 947 Bytes
/
SlideViewer.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
Pod::Spec.new do |s|
s.name = 'SlideViewer'
s.version = '0.1.0'
s.summary = 'A short description of SlideViewer.'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/abeyuya/SlideViewer'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'abeyuya' => '[email protected]' }
s.source = { :git => 'https://github.com/abeyuya/SlideViewer.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.source_files = 'SlideViewer/Classes/**/*'
s.resource_bundles = {
'SlideViewer' => ['SlideViewer/Assets/*.xib', 'SlideViewer/Assets/*.xcassets']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'PDFKit'
s.dependency 'ReSwift'
end