-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathQuickTableViewController.podspec
More file actions
18 lines (16 loc) · 846 Bytes
/
QuickTableViewController.podspec
File metadata and controls
18 lines (16 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "QuickTableViewController"
s.version = "1.3.1"
s.summary = "A simple way to create a UITableView for settings."
s.screenshots = "https://raw.githubusercontent.com/bcylin/QuickTableViewController/gh-pages/img/screenshot-1.png",
"https://raw.githubusercontent.com/bcylin/QuickTableViewController/gh-pages/img/screenshot-2.png"
s.homepage = "https://github.com/bcylin/QuickTableViewController"
s.license = { type: "MIT", file: "LICENSE" }
s.author = "bcylin"
s.swift_version = "5"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.source = { git: "https://github.com/bcylin/QuickTableViewController.git", tag: "v#{s.version}" }
s.source_files = "Source/**/*.swift"
s.requires_arc = true
end