-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
FLAnimatedImage.podspec
24 lines (22 loc) · 1.41 KB
/
FLAnimatedImage.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 |spec|
spec.name = "FLAnimatedImage"
spec.version = "1.0.17"
spec.summary = "Performant animated GIF engine for iOS"
spec.description = <<-DESC
- Plays multiple GIFs simultaneously with a playback speed comparable to desktop browsers
- Honors variable frame delays
- Behaves gracefully under memory pressure
- Eliminates delays or blocking during the first playback loop
- Interprets the frame delays of fast GIFs the same way modern browsers do
It's a well-tested [component that powers all GIFs in Flipboard](http://engineering.flipboard.com/2014/05/animated-gif/).
DESC
spec.homepage = "https://github.com/Flipboard/FLAnimatedImage"
spec.screenshots = "https://github.com/Flipboard/FLAnimatedImage/raw/master/images/flanimatedimage-demo-player.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Raphael Schaad" => "[email protected]" }
spec.platform = :ios, "9.0"
spec.source = { :git => "https://github.com/Flipboard/FLAnimatedImage.git", :tag => "1.0.17" }
spec.source_files = "FLAnimatedImage/**/*.{h,m}"
spec.frameworks = "QuartzCore", "ImageIO", "CoreGraphics"
spec.requires_arc = true
end