Kevin

Merge pull request #11 from bradleylin/master

Fix missing UICountingLabel when using CocoaPods
@@ -13,8 +13,8 @@ Pod::Spec.new do |s| @@ -13,8 +13,8 @@ Pod::Spec.new do |s|
13 s.platform = :ios, '6.0' 13 s.platform = :ios, '6.0'
14 s.source = { :git => "https://github.com/kevinzhow/PNChart.git", :tag => s.version.to_s } 14 s.source = { :git => "https://github.com/kevinzhow/PNChart.git", :tag => s.version.to_s }
15 15
16 - s.source_files = 'PNChartDemo/PNChart/*.{h,m}' 16 + s.source_files = 'PNChartDemo/PNChart/**/*.{h,m}'
17 - s.public_header_files = 'PNChartDemo/PNChart/*.h' 17 + s.public_header_files = 'PNChartDemo/PNChart/**/*.h'
18 s.frameworks = 'CoreGraphics', 'UIKit', 'Foundation', 'QuartzCore' 18 s.frameworks = 'CoreGraphics', 'UIKit', 'Foundation', 'QuartzCore'
19 s.requires_arc = true 19 s.requires_arc = true
20 end 20 end