forked from alexito4/AMPPreviewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AMPPreviewController.podspec
31 lines (26 loc) · 1.19 KB
/
AMPPreviewController.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
Pod::Spec.new do |s|
s.name = 'AMPPreviewController'
s.version = '0.3'
s.summary = 'AMPPreviewController is a subclass of QLPreviewController that allows you to preview remote documents.'
#s.description = <<-DESC
# A little class to use the Imageholder API in your Apps.
# DESC
s.homepage = "https://github.com/alexito4/AMPPreviewController"
#s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Alejandro Martinez" => "[email protected]" }
s.source = { :git => "https://github.com/alexito4/AMPPreviewController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/alexito4'
s.dependency 'AFNetworking', '~> 2.2'
s.platform = :ios, '7.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
#s.resources = 'Assets
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
s.public_header_files = 'Classes/**/*.h'
s.framework = 'UIKit', 'QuickLook'
# s.dependency 'JSONKit', '~> 1.4'
end