-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathXYDoughnutChart.podspec
27 lines (22 loc) · 1.08 KB
/
XYDoughnutChart.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
Pod::Spec.new do |s|
s.name = "XYDoughnutChart"
s.version = "1.5.0"
s.summary = "Simple DoughnutChart library for iOS"
s.description = <<-DESC
Easy to use doughunut chart library for iOS platform.
This library is inspired by [XYPieChart](https://github.com/xyfeng/XYPieChart).
If you want to try this pod, please run demo application placed at Example folder.
DESC
s.homepage = "https://github.com/yasuoza/XYDoughnutChart"
s.screenshots = "https://raw.githubusercontent.com/yasuoza/XYDoughnutChart/master/Example/screenshot.png"
s.license = 'MIT'
s.author = { "Yasuharu Ozaki" => "[email protected]" }
s.source = { :git => "https://github.com/yasuoza/XYDoughnutChart.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Source/Classes'
s.resource_bundles = {
'XYDoughnutChart' => ['Source/Assets/*.png']
}
s.frameworks = 'UIKit', 'QuartzCore'
end