-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGridTimerView.podspec
More file actions
45 lines (27 loc) · 2.42 KB
/
GridTimerView.podspec
File metadata and controls
45 lines (27 loc) · 2.42 KB
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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.ios.deployment_target = '11'
s.name = "GridTimerView"
s.summary = "GridTimerView shows a schedule with timer controller. Each cell can manage multiple events. Used for listing TV programs shows in a table."
s.requires_arc = true
s.version = "1.0.1"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Alberto Aznar" => "info@alberdev.com" }
s.homepage = "https://github.com/alberdev/GridTimerView"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/alberdev/GridTimerView.git",
:tag => "#{s.version}" }
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "UIKit"
# s.dependency 'Alamofire', '~> 4.7'
# s.dependency 'MBProgressHUD', '~> 1.1.0'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "GridTimerView/**/*.{swift}"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.resources = "GridTimerView/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}"
# ――― Swift Version ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = "4.2"
end