From fa08e56df9fdcd9b260f4d28d2d9288d45a2aeca Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Thu, 9 May 2013 23:01:02 +0100 Subject: [PATCH] Added StandardPaths 1.5.3 --- StandardPaths/1.5.3/StandardPaths.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 StandardPaths/1.5.3/StandardPaths.podspec diff --git a/StandardPaths/1.5.3/StandardPaths.podspec b/StandardPaths/1.5.3/StandardPaths.podspec new file mode 100644 index 00000000..31f50ac2 --- /dev/null +++ b/StandardPaths/1.5.3/StandardPaths.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = 'StandardPaths' + s.version = '1.5.3' + s.summary = 'Category on NSFileManager for simple consistent access to standard application directories.' + s.description = 'StandardPaths is a category on NSFileManager for simplifying access to standard application directories on iOS and Mac OS and abstracting the iCloud backup flags on iOS. It also provides support for working with device-specific file suffixes, such as the @2x suffix for Retina displays, or the -568h suffix for iPhone 5 and can optionally swizzle certain UIKit methods to support these suffixes more consistently.' + s.homepage = 'https://github.com/nicklockwood/StandardPaths' + s.author = { 'Nick Lockwood' => 'http://charcoaldesign.co.uk/' } + s.source = { :git => 'https://github.com/nicklockwood/StandardPaths.git', :tag => '1.5.3'} + s.source_files = 'StandardPaths/*.{h,m}' + s.license = { :type => 'Zlib License', :file => 'LICENCE.md' } + s.requires_arc = false + s.ios.deployment_target = '4.3' + s.osx.deployment_target = '10.6' +end