├── LICENCE.md ├── README.md ├── StandardPaths.podspec.json ├── StandardPaths ├── StandardPaths.h └── StandardPaths.m └── Tests └── FileSuffixesTest ├── FileSuffixesTest.xcodeproj ├── project (Nick Lockwood's conflicted copy 2012-09-14).pbxproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── FileSuffixesTest.xcscheme │ └── FileSuffixesTestMac.xcscheme ├── Images ├── Default-568h@2x.png ├── Image1-568h@2x.png ├── Image1-667h@2x.png ├── Image1-736h@3x.png ├── Image1.png ├── Image1@2x.png ├── Image1@2x~ipad.png ├── Image1@2x~mac.png ├── Image1~ipad.png ├── Image1~mac.png ├── Image2-hd.png ├── Image2-hd@2x.png ├── Image2.png ├── image1.png ├── image1@2x.png ├── image1@3x.png └── image2.png ├── MacClasses ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── MainMenu.xib ├── FileSuffixesTestMac-Info.plist ├── FileSuffixesTestMac-Prefix.pch ├── WindowController.h ├── WindowController.m ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings └── main.m └── iOSClasses ├── AppDelegate.h ├── AppDelegate.m ├── FileSuffixesTest-Info.plist ├── FileSuffixesTest-Prefix.pch ├── Launch Screen.xib ├── ViewController-568h.xib ├── ViewController.h ├── ViewController.m ├── ViewController.xib ├── ViewController~ipad.xib ├── en.lproj └── InfoPlist.strings └── main.m /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/README.md -------------------------------------------------------------------------------- /StandardPaths.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/StandardPaths.podspec.json -------------------------------------------------------------------------------- /StandardPaths/StandardPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/StandardPaths/StandardPaths.h -------------------------------------------------------------------------------- /StandardPaths/StandardPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/StandardPaths/StandardPaths.m -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project (Nick Lockwood's conflicted copy 2012-09-14).pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project (Nick Lockwood's conflicted copy 2012-09-14).pbxproj -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/xcshareddata/xcschemes/FileSuffixesTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/xcshareddata/xcschemes/FileSuffixesTest.xcscheme -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/xcshareddata/xcschemes/FileSuffixesTestMac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/FileSuffixesTest.xcodeproj/xcshareddata/xcschemes/FileSuffixesTestMac.xcscheme -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1-568h@2x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1-667h@2x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1-736h@3x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1@2x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1@2x~ipad.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1@2x~mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1@2x~mac.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1~ipad.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image1~mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image1~mac.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image2-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image2-hd.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image2-hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image2-hd@2x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/Image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/Image2.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/image1.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/image1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/image1@2x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/image1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/image1@3x.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/Images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/Images/image2.png -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/AppDelegate.h -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/AppDelegate.m -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/FileSuffixesTestMac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/FileSuffixesTestMac-Info.plist -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/FileSuffixesTestMac-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/FileSuffixesTestMac-Prefix.pch -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/WindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/WindowController.h -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/WindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/WindowController.m -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/MacClasses/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/MacClasses/main.m -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/AppDelegate.h -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/AppDelegate.m -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/FileSuffixesTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/FileSuffixesTest-Info.plist -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/FileSuffixesTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/FileSuffixesTest-Prefix.pch -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/Launch Screen.xib -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/ViewController-568h.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/ViewController-568h.xib -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/ViewController.h -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/ViewController.m -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/ViewController.xib -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/ViewController~ipad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/ViewController~ipad.xib -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tests/FileSuffixesTest/iOSClasses/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/StandardPaths/HEAD/Tests/FileSuffixesTest/iOSClasses/main.m --------------------------------------------------------------------------------