-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAJImageViewController.podspec
More file actions
18 lines (16 loc) · 964 Bytes
/
Copy pathAJImageViewController.podspec
File metadata and controls
18 lines (16 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "AJImageViewController"
s.version = "0.1.0"
s.summary = "AJImageViewController is a custom UIViewController for displaying images."
s.description = "AJImageViewController is a custom UIViewController that displays images in two modes: the first show a single image, which is perfect for profile pictures, for example. The second one shows a set of images with features like zooming, what is great for photo albuns."
s.homepage = "https://github.com/ajeferson/AJImageViewController"
s.license = 'MIT'
s.author = { "Alan Jeferson" => "alan.jeferson11@gmail.com" }
s.source = { :git => "https://github.com/ajeferson/AJImageViewController.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'AJImageViewController' => ['Pod/Assets/*.png']
}
end