From 83e8000d54b60f6225144dd3c4847db2b03b1b7a Mon Sep 17 00:00:00 2001 From: Andrea Campi Date: Wed, 5 Jun 2013 09:33:14 +0200 Subject: [PATCH] Add a CocoaPod spec. This is a copy of https://github.com/CocoaPods/Specs/blob/master/AQGridView/1.3/AQGridView.podspec with a version bump to pick up the latest commits (warnings fixed). --- AQGridView.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 AQGridView.podspec diff --git a/AQGridView.podspec b/AQGridView.podspec new file mode 100644 index 0000000..fc90b58 --- /dev/null +++ b/AQGridView.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'AQGridView' + s.version = '1.3.1' + s.license = 'BSD' + s.summary = 'A grid view for iPhone/iPad, designed to look similar to NSCollectionView.' + s.homepage = 'https://github.com/AlanQuatermain/AQGridView' + s.author = { 'Alan Quatermain' => 'jimdovey@mac.com' } + s.source = { :git => 'https://github.com/AlanQuatermain/AQGridView.git', :tag => '1.3' } + s.platform = :ios + s.requires_arc = true + s.source_files = 'Classes' + s.resources = "Resources/*.png" + + s.framework = 'QuartzCore' +end