-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJSONViewController.podspec
More file actions
35 lines (27 loc) · 1.4 KB
/
JSONViewController.podspec
File metadata and controls
35 lines (27 loc) · 1.4 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
Pod::Spec.new do |s|
s.name = "JSONViewController"
s.version = "0.1.1"
s.summary = "JSON driven view controllers using Flexbox"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
JSONViewController is a way to define views and routing
using JSON and Flexbox (YogaKit). It is designed to work
with server-side JSON, but should work with bundled JSON
in the client as well.
DESC
s.homepage = "https://github.com/maranas/JSONViewController"
s.screenshots = "https://raw.githubusercontent.com/maranas/JSONViewController/master/samplefeed.gif"
s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "LICENSE" }
s.platform = :ios, '9.0'
s.source = { :git => "https://github.com/maranas/JSONViewController.git", :tag => "0.1.1" }
s.source_files = "JSONViewController/**/*.{h,m}"
s.framework = "UIKit"
s.dependency "YogaKit", "~> 1.7"
s.swift_version = "4.2"
end