forked from ganico/RazzleDazzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRazzleDazzle.podspec
21 lines (20 loc) · 971 Bytes
/
RazzleDazzle.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "RazzleDazzle"
s.version = "0.1.5"
s.summary = "Simple Swift keyframe animations for scrolling intros"
s.homepage = "https://github.com/IFTTT/RazzleDazzle"
s.license = 'MIT'
s.author = {
"Laura Skelton" => "[email protected]",
"Max Meyers" => "[email protected]",
"Devin Foley" => "[email protected]"
}
s.source = { :git => "https://github.com/IFTTT/RazzleDazzle.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/IFTTT'
s.platform = :ios, '8.0'
s.requires_arc = true
s.compiler_flags = '-fmodules'
s.frameworks = 'UIKit'
s.description = "Razzle Dazzle is a Swift keyframe animation framework by IFTTT, based on Jazz Hands. Move UIViews around the screen based on UIScrollView input, KVO, or anything really. Works well with AutoLayout."
s.source_files = 'Source/*.{h,swift}'
end