blob: e5ddaa773f2928010c0dce8edaba3a7481a9ca6e [file] [log] [blame]
{
"name": "NSString+Color",
"version": "1.1.4",
"summary": "UIColor creation from NSString",
"description": "NSString category allowing you to create UIColor from it.\n\nThis allows you to create color from hexadecimal representation or color name, such as @\"#FF4465\", @\"red\", @\"antiquewhite\"\nAs a bonus, category also embeds a list of predefined web colors, according to http://en.wikipedia.org/wiki/Web_colors\nCategory also works with FPBrandColors, UIColor-FlatColors and UIColor-CSSColors, since these are categories for UIColor.\n\nMain use case is when loading color configuration from configuration file.\nLast version add some method allowing you to register custom colors code, to be used afterward, allowing you to style your application with color codes.\n\nARC only",
"homepage": "https://github.com/nicolasgoutaland/NSString-Color",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"nicolasgoutaland": "nicolas.goutaland@gmail.com"
},
"source": {
"git": "https://github.com/nicolasgoutaland/NSString-Color.git",
"tag": "1.1.4"
},
"screenshots": "https://raw.github.com/nicolasgoutaland/NSString-Color/master/Assets/NSString+Colors.gif",
"source_files": [
"Classes",
"Classes/**/*.{h,m}"
],
"exclude_files": "Classes/Exclude",
"requires_arc": true,
"prefix_header_contents": "#ifndef TARGET_OS_IOS\n #define TARGET_OS_IOS TARGET_OS_IPHONE\n#endif\n#ifndef TARGET_OS_WATCH\n #define TARGET_OS_WATCH 0\n#endif",
"platforms": {
"ios": "5.0",
"watchos": "2.0"
},
"ios": {
"frameworks": "UIKit"
},
"watchos": {
"frameworks": "UIKit"
}
}