-
Notifications
You must be signed in to change notification settings - Fork 26
/
UIView+AnimationExtensions.podspec
29 lines (20 loc) · 1.13 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
Pod::Spec.new do |s|
s.name = "UIView+AnimationExtensions"
s.version = "2.0.1"
s.summary = "A useful UIView category containing a set of most commonly used animations"
s.description = <<-DESC
A useful UIView category containing a set of most commonly used animations like rotation, flip, shake and others.
It is designed to be as easy to use and integrate as possible with a goal to speed up everyday development tasks. All the methods are well documented and described.
The category comes along with a small demo project where you can see the animations in action.
DESC
s.homepage = "https://github.com/r3econ/animation-extensions"
s.documentation_url = "https://github.com/r3econ/animation-extensions"
s.license = "CC0"
s.author = { "Rafał Sroka" => "r4ffal@gmail.com" }
s.social_media_url = "https://twitter.com/r3econ"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/r3econ/animation-extensions.git", :tag => "v2.0.1" }
s.source_files = "Classes", "Classes/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
end