-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSONViewControllers.podspec
More file actions
28 lines (27 loc) · 1.25 KB
/
Copy pathJSONViewControllers.podspec
File metadata and controls
28 lines (27 loc) · 1.25 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
#
# Be sure to run `pod lib lint JSONViewControllers.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "JSONViewControllers"
s.version = "0.1.13"
s.summary = "UICollectionViewController and UITableViewControllers, one driven by JSON, one by model rows."
s.homepage = "https://github.com/graham-perks-snap/JSONViewControllers"
s.license = 'MIT'
s.author = { "Snap Kitchen" => "graham_perks@snapkitchen.com" }
s.source = { :git => "https://github.com/graham-perks-snap/JSONViewControllers.git", :tag => s.version.to_s }
s.swift_versions = '5'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '10.0'
s.source_files = 'Pod/Classes/*.swift'
s.frameworks = 'UIKit'
s.description = <<-DESC
Easily make a collection or table view from JSON content.
Simplifies table/collection definition & eases cell reuse between view controllers.
Move cells' logic to their own controller classes.
DESC
s.dependency 'SwiftyJSON'
end