-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathMTSlideToOpen.podspec
53 lines (33 loc) · 2.26 KB
/
MTSlideToOpen.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
43
44
45
46
47
48
49
50
51
52
53
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.name = "MTSlideToOpen"
s.version = "1.5.1"
s.summary = "A simple SlideToUnlock iOS UI component."
s.description = "A simple iOS UI component acts Slide To Unlock."
s.homepage = "https://github.com/lemanhtien/MTSlideToOpen"
s.screenshots = "https://raw.githubusercontent.com/lemanhtien/MTSlideToOpen/master/Screenshot.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.author = { "Tien Le" => "lemanhtien.bka@gmail.com" }
s.social_media_url = "https://twitter.com/Martin_ManhTien"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target. You can optionally include the target after the platform.
#
s.platform = :ios, "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source = { :git => "https://github.com/lemanhtien/MTSlideToOpen.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source_files = "Source"
s.framework = "UIKit"
s.pod_target_xcconfig = { "SWIFT_VERSION" => "5.0" }
s.swift_version = '5.0'
s.requires_arc = true
end