-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathImageFeedCollectionViewController.podspec
More file actions
23 lines (18 loc) · 1.03 KB
/
ImageFeedCollectionViewController.podspec
File metadata and controls
23 lines (18 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'ImageFeedCollectionViewController'
s.version = '3.0.2'
s.summary = 'An extension on FeedCollectionViewController that is used for image feeds'
s.description = <<-DESC
An extension on FeedCollectionViewController that is used for image feeds. This is used for infinite
scrolling and loading images dynamically. This is inspired by scrolling through photos on Facebook or
Instagram.
DESC
s.homepage = 'https://github.com/oliveroneill/FeedCollectionViewController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Oliver ONeill' => 'oliveroneill@users.noreply.github.com' }
s.source = { :git => 'https://github.com/oliveroneill/FeedCollectionViewController.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'ImageFeedCollectionViewController/Classes/**/*'
s.dependency 'OOPhotoBrowser', '2.0.11'
s.dependency 'FeedCollectionViewController', s.version.to_s
end