From 7abfa41e3dcc8fd9b116a9d5b3f759594beb84df Mon Sep 17 00:00:00 2001 From: Eloy Duran Date: Sun, 20 Nov 2011 00:30:21 +0100 Subject: [PATCH] PullToRefresh is an iOS only pod, only select lib files, copy resource, and requires QuartzCore. --- PullToRefresh/0.0.1/PullToRefresh.podspec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PullToRefresh/0.0.1/PullToRefresh.podspec b/PullToRefresh/0.0.1/PullToRefresh.podspec index e9f9217b..dc789ec0 100644 --- a/PullToRefresh/0.0.1/PullToRefresh.podspec +++ b/PullToRefresh/0.0.1/PullToRefresh.podspec @@ -1,9 +1,12 @@ Pod::Spec.new do |s| s.name = 'PullToRefresh' s.version = '0.0.1' + s.platform = :ios s.summary = 'A simple iPhone TableViewController for adding pull-to-refresh functionality.' s.homepage = 'https://github.com/leah/PullToRefresh' s.author = { 'Leah Culver' => 'leah.culver@gmail.com' } s.source = { :git => 'git://github.com/leah/PullToRefresh.git', :commit => '6ae5ed942bccd57029312da0106ab4a55f29289d' } - s.source_files = 'Classes' + s.source_files = 'Classes/PullRefreshTableViewController.*' + s.framework = 'QuartzCore' + s.resource = 'arrow.png' end