Added StandardPaths 1.5.3

This commit is contained in:
Nick Lockwood
2013-05-09 23:01:02 +01:00
parent 7b972d6f0f
commit fa08e56df9
+14
View File
@@ -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