-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathSFFocusViewLayout.podspec
28 lines (22 loc) · 1.14 KB
/
SFFocusViewLayout.podspec
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
Pod::Spec.new do |s|
s.name = 'SFFocusViewLayout'
s.version = '3.2.0'
s.summary = 'UICollectionViewLayout subclass with focused content.'
s.description = <<-DESC
SFFocusViewLayout is a UICollectionViewLayout subclass
for displaying focused content on UICollectionView which
is the largest cell of all.
DESC
s.homepage = 'https://github.com/fdzsergio/SFFocusViewLayout'
s.screenshots = 'https://raw.githubusercontent.com/fdzsergio/SFFocusViewLayout/master/Screenshots/SFFocusViewLayout.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Sergio Fernández' => '[email protected]' }
s.source = { :git => 'https://github.com/fdzsergio/SFFocusViewLayout.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/fdzsergio'
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.frameworks = 'UIKit'
s.requires_arc = true
s.swift_version = '4.2'
s.source_files = 'Source/*.swift'
end