From a6c7084b995b4284df5ff4853728af46a5f20ffc Mon Sep 17 00:00:00 2001 From: Chakrit Wichian Date: Fri, 28 Sep 2012 16:56:40 +0700 Subject: [PATCH] Adds PSTCollectionView Using the PSTCollectionView.podspec available in the repo. Somehow the author do not submits the spec to the specs repo thus this PR from me. --- .../0.0.1/PSTCollectionView.podspec | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 PSTCollectionView/0.0.1/PSTCollectionView.podspec diff --git a/PSTCollectionView/0.0.1/PSTCollectionView.podspec b/PSTCollectionView/0.0.1/PSTCollectionView.podspec new file mode 100644 index 00000000..a6ef05b3 --- /dev/null +++ b/PSTCollectionView/0.0.1/PSTCollectionView.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = 'PSTCollectionView' + s.version = '0.0.1' + s.summary = 'Open Source, 100% API compatible replacement of UICollectionView for iOS4+.' + s.homepage = 'https://github.com/steipete/PSTCollectionView' + s.license = { + :type => 'MIT', + :file => 'LICENSE' + } + s.author = 'Peter Steinberger', 'steipete@gmail.com' + s.source = { + :git => 'https://github.com/steipete/PSTCollectionView.git', + :commit => 'HEAD' + } + s.platform = :ios, '4.3' + s.source_files = 'PSTCollectionView/' + s.public_header_files = 'PSTCollectionView/' + s.frameworks = 'UIKit', 'QuartzCore' + s.requires_arc = true +end