-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathUnion.podspec
More file actions
22 lines (16 loc) · 764 Bytes
/
Union.podspec
File metadata and controls
22 lines (16 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Union"
s.version = "0.5.1"
s.summary = "Context transitioning's animation manager for iOS written in Swift."
s.description = <<-DESC
Context transitioning's animation manager for iOS written in Swift.
Create animation tasks for each layer's animation and deliver tasks on Union.Delegate.
DESC
s.homepage = "https://github.com/TransitionKit/Union"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Hirohisa Kawasaki" => "hirohisa.kawasaki@gmail.com" }
s.source = { :git => "https://github.com/TransitionKit/Union.git", :tag => s.version }
s.source_files = "Union/*.swift"
s.requires_arc = true
s.ios.deployment_target = '8.0'
end