-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSAStickyHeader.podspec
More file actions
20 lines (19 loc) · 1017 Bytes
/
SAStickyHeader.podspec
File metadata and controls
20 lines (19 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SAStickyHeader"
s.version = "0.6.0"
s.summary = "A very simple sticky header with multiple image support via swipe gestures"
s.description = <<-DESC
A very simple sticky header with multiple image support via swipe gestures, allow your users to experience parallax effect with just one line of code. supports portrait and landscape and all iOS devices. tested on iOS 8 and iOS 9
DESC
s.homepage = "https://github.com/shams-ahmed/SAStickyHeader"
s.license = 'MIT'
s.author = { "Shams Ahmed" => "shamsahmed@me.com" }
s.source = { :git => "https://github.com/shams-ahmed/SAStickyHeader.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/shams5035'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{h,m,swift}'
s.resource_bundles = {
'SAStickyHeader' => ['Pod/Assets/*.png']
}
end