-
Notifications
You must be signed in to change notification settings - Fork 55
/
YOChartImageKit.podspec
25 lines (20 loc) · 1007 Bytes
/
YOChartImageKit.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
Pod::Spec.new do |s|
s.name = "YOChartImageKit"
s.version = "2.0.0"
s.summary = "ChartKit for watchOS"
s.description = <<-DESC
Chart image framework for watchOS
Since watchOS does not have `UIView` class, YOChartImageKit draws a `UIImage` of a chart with given values.
Values and colors can be customized.
DESC
s.homepage = "https://github.com/yasuoza/YOChartImageKit"
s.screenshots = "https://raw.githubusercontent.com/yasuoza/YOChartImageKit/assets/images/watchos/all.png"
s.license = "MIT"
s.author = { "Yasuharu Ozaki" => "yasuharu.ozaki@gmail.com" }
s.source = { :git => "https://github.com/yasuoza/YOChartImageKit.git", :tag => s.version.to_s }
s.ios.deployment_target = "7.0"
s.watchos.deployment_target = "2.0"
s.requires_arc = true
s.source_files = "Source/**/*.{h,m}"
s.frameworks = "UIKit"
end