forked from fdzsergio/SFFocusViewLayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SFFocusViewLayout.podspec
26 lines (21 loc) · 1.11 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
Pod::Spec.new do |s|
s.name = "SFFocusViewLayout"
s.version = "3.1.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.requires_arc = true
s.source_files = 'Source/*.swift'
s.frameworks = 'UIKit'
s.ios.deployment_target = '8.0'
end