-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathNUAnimationKit.podspec
More file actions
27 lines (22 loc) · 1.06 KB
/
NUAnimationKit.podspec
File metadata and controls
27 lines (22 loc) · 1.06 KB
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
#
# Be sure to run `pod lib lint NUAnimationKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "NUAnimationKit"
s.version = "0.2.4.7"
s.summary = "DSL to wrap UIView animation chaining into a cleaner structure"
s.description = <<-DESC
UIView animation wrapper that simplifies chaining of multiple animation steps, each with their own completion blocks. Also supports progress-based animations using CADisplayKit synchronization
DESC
s.homepage = "https://github.com/nubank/NUAnimationKit.git"
s.license = 'MIT'
s.author = { "Victor Maraccini" => "vgm.maraccini@gmail.com" }
s.source = { :git => "https://github.com/nubank/NUAnimationKit.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end