-
Notifications
You must be signed in to change notification settings - Fork 31
/
TRMosaicLayout.podspec
21 lines (17 loc) · 1.04 KB
/
TRMosaicLayout.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'TRMosaicLayout'
s.version = '1.0.0'
s.summary = 'A mosaic collection view layout using three columns'
s.description = <<-DESC
A mosaic collection view layout using three columns. Useful for showing books, magazines, and any other types
of images that may follow the 8x11 format or other similar formats. Extending FMMosaicLayout and LightBox's algorithm
to accomadate for a three column based mosaic layout. A great example of this is Snapchat's Discover Feed
DESC
s.homepage = 'https://github.com/vinnyoodles/TRMosaicLayout'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Vincent Le' => '[email protected]' }
s.source = { :git => 'https://github.com/vinnyoodles/TRMosaicLayout.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'TRMosaicLayout/Classes/**/*'
end