-
Notifications
You must be signed in to change notification settings - Fork 5
/
ScaledCenterCarouselSwift.podspec
23 lines (19 loc) · 1.27 KB
/
ScaledCenterCarouselSwift.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 |spec|
spec.name = "ScaledCenterCarouselSwift"
spec.version = "1.0.0"
spec.summary = "A carousel-based layout for UICollectionView with scaled center item."
spec.description = <<-DESC
A carousel-based layout for UICollectionView with scaled center item.
It also contains paginator to force user to select single item which will be presented exaclty at center of carousel.
DESC
spec.homepage = 'https://github.com/yuriy-tolstoguzov/ScaledCenterCarousel'
spec.screenshots = 'https://raw.githubusercontent.com/yuriy-tolstoguzov/ScaledCenterCarousel/master/Example/Assets/ScaledCenterCarousel.gif'
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { 'yuriy-tolstoguzov' => 'Yuriy.Tolstoguzov@gmail.com' }
spec.social_media_url = 'https://twitter.com/ImOssir'
spec.ios.deployment_target = "8.0"
spec.swift_version = "5.0"
spec.source = { :git => 'https://github.com/yuriy-tolstoguzov/ScaledCenterCarousel.git', :tag => "#{spec.version}-Swift" }
spec.source_files = 'Swift/ScaledCenterCarousel/Classes/**/*'
spec.frameworks = 'UIKit'
end