forked from gskbyte/GSKStretchyHeaderView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGSKStretchyHeaderView.podspec
More file actions
22 lines (20 loc) · 1.4 KB
/
GSKStretchyHeaderView.podspec
File metadata and controls
22 lines (20 loc) · 1.4 KB
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 = "GSKStretchyHeaderView"
s.version = "0.8.0"
s.summary = "A generic, easy to use stretchy header view for UITableView and UICollectionView"
s.description = <<-DESC
GSKStretchyHeaderView allows you to add a stretchy header view (like Twitter's or Spotify's) to any existing UITableView and UICollectionView. There is no need inherit from custom view controllers, just create your custom header view and add it to your UITableView or UICollectionView. Creating a custom stretchy header view is as easy as inheriting from the base class or using Interface Builder.
DESC
s.homepage = "https://github.com/gskbyte/GSKStretchyHeaderView"
s.screenshots = "https://raw.githubusercontent.com/gskbyte/GSKStretchyHeaderView/master/screenshots/spoty_default.jpg", "https://raw.githubusercontent.com/gskbyte/GSKStretchyHeaderView/master/screenshots/gradient.jpg"
s.license = 'MIT'
s.author = { "Jose Alcalá Correa" => "jose.alcala@xing.com" }
s.source = { :git => "https://github.com/gskbyte/GSKStretchyHeaderView.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/gskbyte'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'GSKStretchyHeaderView' => ['Pod/Assets/*.png']
}
end