forked from 5sw/SWParallaxScrollView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSWParallaxScrollView.podspec
More file actions
35 lines (24 loc) · 1.12 KB
/
SWParallaxScrollView.podspec
File metadata and controls
35 lines (24 loc) · 1.12 KB
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
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "SWParallaxScrollView"
s.version = "0.1.1"
s.summary = "A UIScrollView subclass with multiple layers and a parallax effect."
s.description = <<-DESC
A UIScrollView subclass that supports multiple layers with parallax scrolling. Layers can either scroll
slower or faster than the default scroll view. Layers with a negative value scroll slower while layers with
a positive number scroll faster. Layer 0 has no speed adjustments.
DESC
s.homepage = "https://github.com/5sw/SWParallaxScrollView"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Sven Weidauer" => "sven@5sw.de" }
s.social_media_url = "http://twitter.com/5sw_de"
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/5sw/SWParallaxScrollView.git", :tag => "0.1.1" }
s.source_files = 'Classes', 'Classes/*.{h,m}'
s.public_header_files = 'Classes/*.h'
s.requires_arc = true
s.library = 'c++'
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
end