forked from nucci/MotionAnimation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MotionAnimation.podspec
24 lines (19 loc) · 1.14 KB
/
MotionAnimation.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 = "MotionAnimation"
s.version = "0.1.4"
s.summary = "Lightweight animation library for UIKit in Swift"
s.description = <<-DESC
An animation library written in swift. Checkout the Examples folder for more.
Consider MotionAnimation as a extremely simplified version of facebook's pop library.
There is no performance optimization or background work. This project is made for simplicity and ease of use. It is for people who want to learn how an animation library is made.
DESC
s.homepage = "https://github.com/lkzhao/MotionAnimation"
s.screenshots = "https://github.com/lkzhao/MotionAnimation/blob/master/imgs/demo.gif?raw=true"
s.license = 'MIT'
s.author = { "Luke" => "[email protected]" }
s.source = { :git => "https://github.com/phuhk/MotionAnimation.git", :tag => s.version.to_s }
s.ios.deployment_target = '9.2'
s.ios.frameworks = 'UIKit', 'Foundation'
s.requires_arc = true
s.source_files = 'MotionAnimation/*.swift'
end