forked from abema/Cheetah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheetah.podspec
27 lines (20 loc) · 1009 Bytes
/
Cheetah.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
Pod::Spec.new do |s|
s.name = "Cheetah"
s.version = "0.3.1"
s.summary = "Easy animation library on iOS with Swift 2.0"
s.description = <<-DESC
Cheetah is an animation library which uses CADisplayLink to animate any properties.
DESC
s.homepage = "https://github.com/suguru/Cheetah"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
s.author = { "Suguru Namura" => "[email protected]" }
s.platform = :ios, "8.0"
# When using multiple platforms
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/abema/Cheetah.git", :tag => s.version }
s.source_files = "Classes", "Cheetah/*.swift"
end