From cd8a8e3480ac06ef03f09cb9c1944eaef50efd37 Mon Sep 17 00:00:00 2001 From: Chris Graham Date: Sat, 20 Jul 2013 16:50:32 -0400 Subject: [PATCH 1/2] Create CocoaPod spec file for this project. --- iOSPlot.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 iOSPlot.podspec diff --git a/iOSPlot.podspec b/iOSPlot.podspec new file mode 100644 index 0000000..a2c0ce2 --- /dev/null +++ b/iOSPlot.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "iOSPlot" + s.version = "1.0.1" + s.platform = :ios, "5.0" + s.summary = "Draw pie charts and line charts in iOS apps." + s.description = "Integrate wonderful pie charts and line charts in your iOS apps." + s.homepage = "https://github.com/honcheng/iOSPlot" + s.license = { :type => 'Free', :file => 'LICENSE' } + s.author = { "honcheng" => "honcheng@gmail.com" } + s.source = { :git => "https://github.com/honcheng/iOSPlot.git", :tag => "1.0.1" } + s.source_files = "iOSPlot/*.{h,m}" + s.framework = "CoreGraphics" + s.requires_arc = true +end From 816e16efc481669ea192c52f1c9d2e770fb926e4 Mon Sep 17 00:00:00 2001 From: Chris Graham Date: Sun, 21 Jul 2013 03:37:21 -0400 Subject: [PATCH 2/2] Added missing shared files --- iOSPlot.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOSPlot.podspec b/iOSPlot.podspec index a2c0ce2..1573aa5 100644 --- a/iOSPlot.podspec +++ b/iOSPlot.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.license = { :type => 'Free', :file => 'LICENSE' } s.author = { "honcheng" => "honcheng@gmail.com" } s.source = { :git => "https://github.com/honcheng/iOSPlot.git", :tag => "1.0.1" } - s.source_files = "iOSPlot/*.{h,m}" + s.source_files = "iOSPlot/PC.{h,m}", "iOSPlot/**/PC*.{h,m}" s.framework = "CoreGraphics" s.requires_arc = true end