-
Notifications
You must be signed in to change notification settings - Fork 215
/
DateTimePicker.podspec
56 lines (36 loc) · 2.4 KB
/
DateTimePicker.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
54
55
56
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.name = "DateTimePicker"
s.version = "2.5.3"
s.summary = "A nicer iOS UI component for picking date and time."
s.description = "DateTimePicker makes it easy to select date and time with an attractive looking component."
s.homepage = "https://github.com/itsmeichigo/DateTimePicker"
s.screenshots = "https://raw.githubusercontent.com/itsmeichigo/DateTimePicker/master/screenshot.jpg"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.author = { "Huong Do" => "[email protected]" }
s.social_media_url = "https://twitter.com/itsmeichigo"
# ――― 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, "10.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source = { :git => "https://github.com/itsmeichigo/DateTimePicker.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source_files = "Source/**/*.{swift}"
s.resource_bundles = {
'DateTimePicker' => ['Source/**/*.{xib}']
}
s.framework = "UIKit"
s.requires_arc = true
s.pod_target_xcconfig = { "SWIFT_VERSION" => "5.3" }
s.swift_version = "5.3"
end