├── .travis.yml ├── Assets └── logo.sketch │ ├── Data │ ├── QuickLook │ ├── Preview.png │ └── Thumbnail.png │ ├── fonts │ ├── metadata │ └── version ├── CHANGELOG.md ├── Classes ├── NSArray+ObjectiveSugar.h ├── NSArray+ObjectiveSugar.m ├── NSDictionary+ObjectiveSugar.h ├── NSDictionary+ObjectiveSugar.m ├── NSMutableArray+ObjectiveSugar.h ├── NSMutableArray+ObjectiveSugar.m ├── NSNumber+ObjectiveSugar.h ├── NSNumber+ObjectiveSugar.m ├── NSSet+ObjectiveSugar.h ├── NSSet+ObjectiveSugar.m ├── NSString+ObjectiveSugar.h ├── NSString+ObjectiveSugar.m └── ObjectiveSugar.h ├── Example ├── .gitignore ├── Makefile ├── ObjectiveSugar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ObjectiveSugar.xcscheme ├── ObjectiveSugar.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── ObjectiveSugar.xccheckout ├── ObjectiveSugar │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── ObjectiveSugar-Info.plist │ ├── ObjectiveSugar-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── ObjectiveSugarTests │ ├── CAdditionsTests.m │ ├── NSArrayTests.m │ ├── NSDictionaryTests.m │ ├── NSMutableArrayTests.m │ ├── NSNumberTests.m │ ├── NSSetTests.m │ ├── NSStringTests.m │ ├── ObjectiveSugarTests-Info.plist │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile └── Podfile.lock ├── LICENSE ├── ObjectiveSugar.podspec └── README.md /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/logo.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Assets/logo.sketch/Data -------------------------------------------------------------------------------- /Assets/logo.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Assets/logo.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /Assets/logo.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Assets/logo.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /Assets/logo.sketch/fonts: -------------------------------------------------------------------------------- 1 | HelveticaNeue-UltraLight -------------------------------------------------------------------------------- /Assets/logo.sketch/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Assets/logo.sketch/metadata -------------------------------------------------------------------------------- /Assets/logo.sketch/version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Classes/NSArray+ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSArray+ObjectiveSugar.h -------------------------------------------------------------------------------- /Classes/NSArray+ObjectiveSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSArray+ObjectiveSugar.m -------------------------------------------------------------------------------- /Classes/NSDictionary+ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSDictionary+ObjectiveSugar.h -------------------------------------------------------------------------------- /Classes/NSDictionary+ObjectiveSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSDictionary+ObjectiveSugar.m -------------------------------------------------------------------------------- /Classes/NSMutableArray+ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSMutableArray+ObjectiveSugar.h -------------------------------------------------------------------------------- /Classes/NSMutableArray+ObjectiveSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSMutableArray+ObjectiveSugar.m -------------------------------------------------------------------------------- /Classes/NSNumber+ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSNumber+ObjectiveSugar.h -------------------------------------------------------------------------------- /Classes/NSNumber+ObjectiveSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSNumber+ObjectiveSugar.m -------------------------------------------------------------------------------- /Classes/NSSet+ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSSet+ObjectiveSugar.h -------------------------------------------------------------------------------- /Classes/NSSet+ObjectiveSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSSet+ObjectiveSugar.m -------------------------------------------------------------------------------- /Classes/NSString+ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSString+ObjectiveSugar.h -------------------------------------------------------------------------------- /Classes/NSString+ObjectiveSugar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/NSString+ObjectiveSugar.m -------------------------------------------------------------------------------- /Classes/ObjectiveSugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Classes/ObjectiveSugar.h -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/Makefile -------------------------------------------------------------------------------- /Example/ObjectiveSugar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ObjectiveSugar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ObjectiveSugar.xcodeproj/xcshareddata/xcschemes/ObjectiveSugar.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar.xcodeproj/xcshareddata/xcschemes/ObjectiveSugar.xcscheme -------------------------------------------------------------------------------- /Example/ObjectiveSugar.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ObjectiveSugar.xcworkspace/xcshareddata/ObjectiveSugar.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar.xcworkspace/xcshareddata/ObjectiveSugar.xccheckout -------------------------------------------------------------------------------- /Example/ObjectiveSugar/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/AppDelegate.h -------------------------------------------------------------------------------- /Example/ObjectiveSugar/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/AppDelegate.m -------------------------------------------------------------------------------- /Example/ObjectiveSugar/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/ObjectiveSugar/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/Default.png -------------------------------------------------------------------------------- /Example/ObjectiveSugar/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/Default@2x.png -------------------------------------------------------------------------------- /Example/ObjectiveSugar/ObjectiveSugar-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/ObjectiveSugar-Info.plist -------------------------------------------------------------------------------- /Example/ObjectiveSugar/ObjectiveSugar-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/ObjectiveSugar-Prefix.pch -------------------------------------------------------------------------------- /Example/ObjectiveSugar/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ObjectiveSugar/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugar/main.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/CAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/CAdditionsTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/NSArrayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/NSArrayTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/NSDictionaryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/NSDictionaryTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/NSMutableArrayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/NSMutableArrayTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/NSNumberTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/NSNumberTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/NSSetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/NSSetTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/NSStringTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/NSStringTests.m -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/ObjectiveSugarTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/ObjectiveSugarTests/ObjectiveSugarTests-Info.plist -------------------------------------------------------------------------------- /Example/ObjectiveSugarTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjectiveSugar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/ObjectiveSugar.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermarin/ObjectiveSugar/HEAD/README.md --------------------------------------------------------------------------------