-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSafariLayout.podspec
More file actions
22 lines (18 loc) · 989 Bytes
/
SafariLayout.podspec
File metadata and controls
22 lines (18 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SafariLayout'
s.version = '0.1.1'
s.summary = 'A Safari tabs like UICollectionViewLayout'
s.swift_version = '5.0'
s.description = <<-DESC
This is a UICollectionViewLayout that reproduce the iOS Safari tabs experience,
just use SafariCollectionViewLayout in your UICollectionView and subclass your cells from SafariCollectionViewCell!
DESC
s.homepage = 'https://github.com/Oni-zerone/CollectionLayouts'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Andrea Altea' => 'oni.zerone@gmail.com' }
s.source = { :git => 'https://github.com/Oni-zerone/CollectionLayouts.git', :tag => 'SafariLayout-' + s.version.to_s }
s.social_media_url = 'https://twitter.com/Oni_zerone'
s.ios.deployment_target = '10.0'
s.source_files = 'SafariLayout/Classes/**/*'
s.frameworks = 'UIKit', 'CoreGraphics'
end