forked from r3econ/animation-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UIView+AnimationExtensions.podspec
38 lines (26 loc) · 1.33 KB
/
UIView+AnimationExtensions.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = "UIView+AnimationExtensions"
s.version = "1.0.0"
s.summary = "UIView Animation Extensions is a useful category on UIView containing a set of most commonly used animations."
s.description = <<-DESC
##UIView Animation Extensions
A **useful** category on `UIView` containing a set of most commonly used animations like rotation or flip and others.
It is designed to be **as easy to use as possible to integrate and use** to speed up everyday development tasks. All the methods are well documented and described.
Furthermore, the category comes along with **a small demo project** where you can see the animations in action. Current version of the category includes following animations:
- Rotation
- Flip
- Horizontal Shake
- Vertical Shake
- Motion Effects
- Pulse
DESC
s.homepage = "https://github.com/r3econ/UIView-Animation-Extensions"
s.license = "CC0"
s.author = { "Rafal Sroka" => "[email protected]" }
s.social_media_url = "http://twitter.com/r3econ"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/r3econ/UIView-Animation-Extensions.git", :tag => "1.0.0" }
s.source_files = "Classes", "Classes/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
end