forked from yahoo/YMTreeMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYMTreeMap.podspec
40 lines (32 loc) · 1.64 KB
/
YMTreeMap.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
35
36
37
38
39
40
#
# Be sure to run `pod lib lint YMTreeMap.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 = 'YMTreeMap'
s.version = '1.0.0'
s.summary = 'A simple tree map generator for iOS and macOS.'
s.description = <<-DESC
YMTreeMap is a high performance treemap layout engine for iOS and macOS, written in Swift.
Tree maps (also called Heat Maps) are one or multi-dimensional graphical deprictions of
values using rectangles. The primary dimension is the area of each rectangle, which
represents the relative size of that value compared to the other values.
Another popular dimension is the treatment of inner area of the rectangles (generally
using color or shading).
Tree maps and heat maps are very popular in the financial sector, and this library
was designed for use in the Yahoo Finance iOS app.
Generating a tree-map requires nothing more than a list of positive numbers and
a rectangle to layout within.
DESC
s.homepage = 'https://github.com/yahoo/YMTreeMap'
s.screenshots = 'https://github.com/yahoo/YMTreeMap/master/Example/Screenshots/random30.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Adam Kaplan' => '[email protected]' }
s.source = { :git => 'https://github.com/yahoo/YMTreeMap.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.source_files = 'YMTreeMap.swift'
end