-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDMPdfView.podspec
49 lines (32 loc) · 2.85 KB
/
DMPdfView.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = 'DMPdfView'
spec.version = '0.1.1'
spec.summary = 'A configurable/extensible iOS library for viewing PDF documents with zooming, page jumping and a thumbnail index.'
spec.description = <<-DESC
This library is intended to replace the QuickLook PDF viewer with more configurability, embeddability and extensibility.
DESC
spec.homepage = 'http://devmode.com/projects/dm-pdf-view'
spec.documentation_url = 'http://devmode.com/projects/dm-pdf-view'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => 'MIT', :file => 'LICENSE-MIT' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.authors = {
'John E. Bailey' => 'john@devmode.com',
'Sean M. Duncan' => 'sean@devmode.com'
}
spec.social_media_url = 'http://twitter.com/DevModeInc'
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, 6.0
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { :git => 'https://github.com/devmode/dm-pdfview.git', :tag => spec.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = 'Classes', 'Classes/**/*.{h,m}'
spec.public_header_files = 'Classes/**/*.h'
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# None
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.dependency 'DMImage', '~> 0.0.1'
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.requires_arc = true
end