-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
RBBAnimation.podspec
29 lines (22 loc) · 938 Bytes
/
RBBAnimation.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 = "RBBAnimation"
s.version = "0.4.0"
s.summary = "Block-based animations made easy."
s.description = <<-DESC
RBBAnimation is a subclass of CAKeyframeAnimation that allows you to
declare your animations using blocks instead of writing out all the
individual key-frames.
It also comes with a replacement for CASpringAnimation.
DESC
s.homepage = "https://github.com/robb/RBBAnimation"
s.license = 'MIT'
s.author = { "Robert Böhnke" => "[email protected]" }
s.ios.deployment_target = '6.1'
s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/robb/RBBAnimation.git", :tag => "v0.4.0" }
s.source_files = 'RBBAnimation', 'RBBAnimation/**/*.{h,m}'
s.ios.exclude_files = "RBBAnimation/NSColor+PlatformIndependence.{h,m}"
s.osx.exclude_files = "RBBAnimation/UIColor+PlatformIndependence.{h,m}"
s.framework = 'QuartzCore'
s.requires_arc = true
end