-
Notifications
You must be signed in to change notification settings - Fork 0
/
TGCardViewController.podspec
34 lines (26 loc) · 1.55 KB
/
TGCardViewController.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
Pod::Spec.new do |s|
s.name = "TGCardViewController"
s.version = "2.1.2"
s.summary = "Card-based view controller for mapping apps"
s.description = <<-DESC
A view controller with a map and a stack of cards. Cards can work both
as a hierarchy like a navigation controller and as a list like a page
controller - or a combination thereof.
DESC
s.homepage = "https://github.com/skedgo/TGCardViewController"
s.license = 'Apache License, Version 2.0'
s.authors = { "Adrian Schoenig": "[email protected]",
"Brian Huang": "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.platform = :ios, "13.0"
s.swift_version = '5.5'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# s.source = { git: '.'}
s.source = { :git => "https://github.com/skedgo/TGCardViewController.git", :tag => "#{s.version}" }
# ――― Source Code + Resources ―――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.source_files = "Sources/TGCardViewController/**/*.swift"
s.resources = "Sources/TGCardViewController/**/*.xib"
end