-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathAuk.podspec
23 lines (22 loc) · 1.21 KB
/
Auk.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "Auk"
s.version = "11.0.0"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/evgenyneu/Auk"
s.summary = "An image slideshow for iOS written in Swift."
s.description = <<-DESC
This is an iOS library that shows an image carousel with a page indicator. Users can scroll through local and remote images or watch them scroll automatically.
* Allows to specify placeholder and error images for remote sources.
* Includes ability to simulate and verify image download in unit tests.
* Supports animated transition during screen orientation change.
* Includes image caching.
* Supports right-to-left languages.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "[email protected]" }
s.source = { :git => "https://github.com/evgenyneu/Auk.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/evgenyneu/Auk/master/Graphics/Screenshots/auk_paged_image_scroller_ios.jpg"
s.source_files = "Auk/**/*.swift"
s.ios.deployment_target = "8.0"
s.dependency "moa"
s.swift_versions = ["4.2", "5.0"]
end