Uh oh!
There was an error while loading. Please reload this page.
forked from arthurpalves/ImageSlideshow
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDPImageSlideshow.podspec
More file actions
Latest commit
59 lines (49 loc) · 2.34 KB
/
Copy pathDPImageSlideshow.podspec
File metadata and controls
59 lines (49 loc) · 2.34 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Be sure to run `pod lib lint ImageSlideshow.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.newdo |s|
s.name="DPImageSlideshow"
s.version="0.6.0"
s.summary="Image slideshow written in Swift with circular scrolling, timer and full screen viewer. A modified version from ImageSlideshow"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description=<<-DESC
Image slideshow is a Swift library providing customizable image slideshow with circular scrolling, timer and full screen viewer and extendable image source (AFNetworking image source available in AFURL subspec).
DESC
s.homepage="https://github.com/Dapptive/ImageSlideshow"
s.screenshots="http://cl.ly/image/2v193I0G0h0Z/ImageSlideshow2.gif"
s.license='MIT'
s.authors={"Petr Zvonicek"=>"zvonicek@gmail.com","Arthur Alves"=>"arthur@dapptive.com"}
s.source={:git=>"https://github.com/Dapptive/ImageSlideshow.git",:tag=>s.version.to_s}
s.platform=:ios,'9.1'
s.requires_arc=true
s.subspec'Core'do |core|
core.source_files='Pod/Classes/Core/**/*'
core.resource_bundles={
'ImageSlideshow'=>['Pod/Assets/*.png']
}
end
s.subspec'AFURL'do |subspec|
subspec.dependency'ImageSlideshow/Core'
subspec.dependency'AFNetworking','~> 3.0'
subspec.source_files='Pod/Classes/InputSources/AFURLSource.swift'
end
s.subspec'Alamofire'do |subspec|
subspec.dependency'ImageSlideshow/Core'
subspec.dependency'AlamofireImage','~> 3.0'
subspec.source_files='Pod/Classes/InputSources/AlamofireSource.swift'
end
s.subspec'SDWebImage'do |subspec|
subspec.dependency'ImageSlideshow/Core'
subspec.dependency'SDWebImage','~> 3.7'
subspec.source_files='Pod/Classes/InputSources/SDWebImageSource.swift'
end
s.default_subspec='Core'
end