-
Notifications
You must be signed in to change notification settings - Fork 5
/
StoriesLayout.podspec
22 lines (18 loc) · 976 Bytes
/
StoriesLayout.podspec
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 = 'StoriesLayout'
s.version = '0.1.1'
s.summary = 'An Instagram Stories like UICollectionViewLayout'
s.swift_version = '5.0'
s.description = <<-DESC
This is a UICollectionViewLayout that reproduce the Instagram Stories experience,
just use StoriesCollectionViewLayout in your UICollectionView and subclass your cells from StoriesCollectionViewCell!
DESC
s.homepage = 'https://github.com/Oni-zerone/CollectionLayouts'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Andrea Altea' => '[email protected]' }
s.source = { :git => 'https://github.com/Oni-zerone/CollectionLayouts.git', :tag => 'StoriesLayout-' + s.version.to_s }
s.social_media_url = 'https://twitter.com/Oni_zerone'
s.ios.deployment_target = '10.0'
s.source_files = 'StoriesLayout/Classes/**/*'
s.frameworks = 'UIKit', 'CoreGraphics'
end