-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCiaoTransitions.podspec
42 lines (25 loc) · 2.35 KB
/
CiaoTransitions.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
30
31
32
33
34
35
36
37
38
39
40
41
42
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.ios.deployment_target = '11'
s.name = "CiaoTransitions"
s.summary = "With Ciao you can make fancy custom transitions. Use it in your iOS projects to make push and modal transitions between view controllers"
s.requires_arc = true
s.version = "1.1.0"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Alberto Aznar" => "[email protected]" }
s.homepage = "https://github.com/alberdev/CiaoTransitions"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/alberdev/CiaoTransitions.git",
:tag => "#{s.version}" }
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "UIKit"
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "CiaoTransitions/**/*.{swift}"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.resources = "CiaoTransitions/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
# ――― Swift Version ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = "5.0"
end