forked from IFTTT/JazzHands
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJazzHands.podspec
More file actions
18 lines (18 loc) · 804 Bytes
/
JazzHands.podspec
File metadata and controls
18 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'JazzHands'
s.version = '0.1.0'
s.summary = 'Simple keyframe animations for scrolling intros.'
s.homepage = 'https://github.com/IFTTT/JazzHands'
s.author = { 'Devin Foley' => 'devin@ifttt.com' }
s.source = { :git => 'https://github.com/IFTTT/JazzHands.git', :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.requires_arc = true
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.frameworks = ['Foundation', 'UIKit', 'CoreGraphics', 'QuartzCore']
s.source_files = 'src/*.{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'
end