@@ -11,32 +11,20 @@ Pod::Spec.new do |s|
1111 s . version = '0.1.0'
1212 s . summary = 'UICollectionViewFlowLayout with behaviour to snap the cell when scrolling horizontally.'
1313
14- # This description is used to generate tags and improve search results.
15- # * Think: What does it do? Why did you write it? What is the focus?
16- # * Try to keep it short, snappy and to the point.
17- # * Write the description between the DESC delimiters below.
18- # * Finally, don't worry about the indent, CocoaPods strips it!
19-
2014 s . description = <<-DESC
21- TODO: Add long description of the pod here.
22- DESC
15+ SnappingLayout enables to add a snap behaviour for UICollectionViews.
16+ It works with horizontal scrolling and there are 3 different types: left, center and right.
17+ You can scroll your collection view and it will automatically snap to the chosen position after decelerating.
18+ The snap supports all kinds of collection view configurations: with sectionInset, minimumLineSpacing, contentInset and so forth.
2319
2420 s.homepage = 'https://github.com/getmimo/SnappingLayout'
25- # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
2621 s.license = { :type => 'MIT', :file => 'LICENSE' }
2722 s.author = { 'Kévin' => '[email protected] ' } 2823 s.source = { :git => 'https://github.com/Kévin/SnappingLayout.git', :tag => s.version.to_s }
2924 s.social_media_url = 'https://twitter.com/getmimo'
3025
3126 s.ios.deployment_target = '9.0'
27+ s.swift_version = '4.2'
3228
3329 s.source_files = 'SnappingLayout/Classes/**/*'
34-
35- # s.resource_bundles = {
36- # 'SnappingLayout' => ['SnappingLayout/Assets/*.png']
37- # }
38-
39- # s.public_header_files = 'Pod/Classes/**/*.h'
40- # s.frameworks = 'UIKit', 'MapKit'
41- # s.dependency 'AFNetworking', '~> 2.3'
4230end
0 commit comments