-
Notifications
You must be signed in to change notification settings - Fork 677
/
JazzHands.podspec
24 lines (24 loc) · 1.03 KB
/
JazzHands.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
Pod::Spec.new do |s|
s.name = 'JazzHands'
s.version = '2.0.8'
s.summary = 'Simple keyframe animations for scrolling intros.'
s.homepage = 'https://github.com/IFTTT/JazzHands'
s.author = {
'Devin Foley' => '[email protected]',
'Jonathan Hersh' => '[email protected]',
'Max Meyers' => '[email protected]',
'Laura Skelton' => '[email protected]'
}
s.source = { :git => 'https://github.com/IFTTT/JazzHands.git', :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics', 'QuartzCore'
s.source_files = 'JazzHands/*.{h,m}'
s.description = "Jazz Hands is a keyframe animation framework by IFTTT. Move UIViews around the screen based on UIScrollView input, KVO, or anything really."
s.social_media_url = 'https://twitter.com/ifttt'
s.compiler_flags = "-fmodules"
end