forked from mruegenberg/ios-linechart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathios-linechart.podspec
23 lines (15 loc) · 969 Bytes
/
ios-linechart.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "ios-linechart"
s.version = "1.3.2"
s.summary = "Interactive line charts / plots for the simplicity-loving iOS developer."
s.homepage = "https://github.com/mruegenberg/ios-linechart"
s.screenshots = "https://raw.github.com/mruegenberg/ios-linechart/master/doc/screenshot1.png", "https://raw.github.com/mruegenberg/ios-linechart/master/doc/screenshot2.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Marcel Ruegenberg" => "[email protected]" }
s.source = { :git => "https://github.com/mruegenberg/ios-linechart.git", :tag => s.version }
s.platform = :ios, '5.1'
s.source_files = 'ios-linechart/LCLegendView.{h,m}', 'ios-linechart/LCLineChartView.{h,m}', 'ios-linechart/LCInfoView.{h,m}', 'ios-linechart/LineChart.h'
s.frameworks = 'CoreFoundation', 'UIKit', 'CoreGraphics'
s.requires_arc = true
s.dependency 'uikit-utils', '~> 0.5.1'
end