-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathSquareFlowLayout.podspec
More file actions
19 lines (16 loc) · 872 Bytes
/
SquareFlowLayout.podspec
File metadata and controls
19 lines (16 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'SquareFlowLayout'
s.version = '0.0.1'
s.summary = 'A lightweight implementation of Instagram like UICollectionViewFlowLayout'
s.description = <<-DESC
Making more easy to implement dynamic flow layout similar for Instragram explore screen
DESC
s.homepage = 'https://github.com/ChernyshenkoTaras/SquareFlowLayout'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Taras Chernyshenko' => 'taras.chernyshenko@gmail.com' }
s.source = { :git => 'https://github.com/ChernyshenkoTaras/SquareFlowLayout.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/@t_chernyshenko'
s.ios.deployment_target = '9.0'
s.swift_version = '4.2'
s.source_files = 'SquareFlowLayout/Source/Classes/**/*'
end