forked from AAChartModel/AAChartKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AAChartKit.podspec
executable file
·27 lines (27 loc) · 1.32 KB
/
AAChartKit.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 = 'AAChartKit'
s.version = '3.0.2'
s.summary = 'An elegant and friendly chart library for iOS developer'
s.description = <<-DESC
***
## Features:
1. Support `iOS 6`、`ARC` & `Objective C`.
2. Powerful,support the `column chart` `bar chart` `line chart` `spline chart` `pie chart` `polar chart` `radar chart` and other graphics.
3. Interactive、animated,the `animation` is exquisite and deligate.
4. Support `chain programming syntax` like *Masonry*
5. `AAChartView + AAChartModel = Chart` In the AAChartKit,it follows a minimalist formula: ` Chart view + Chart model = The chart you want`.
***
DESC
s.homepage = 'https://github.com/AAChartModel/AAChartKit'
s.license = { :type => "MIT", :file => 'LICENSE' }
s.authors = {'An An' => '[email protected]'}
s.platform = :ios, '7.0'
s.source = {:git => 'https://github.com/AAChartModel/AAChartKit.git', :tag => s.version}
s.social_media_url = 'https://github.com/AAChartModel'
s.source_files = 'AAChartKitLib/**/*.{h,m}'
s.resource_bundles = { 'AAChartKitLib' => 'AAChartKitLib/AAJSFiles.bundle' }
s.prefix_header_contents = '#import "AAGlobalMacro.h"'
s.requires_arc = true
s.ios.frameworks = 'UIKit'
s.ios.deployment_target = '7.0'
end