blob: 701271cd7af601b689ca320fca2b94601d0a8cab [file] [log] [blame]
{
"name": "HCObjectSwitch",
"version": "1.1.0",
"summary": "A simple way to implement object based switch-like statements in Objective-C using blocks.",
"description": " Objective-C's switch statements only work on primitive types that are constant at compile time.\n However, many Objective-C APIs expect the developer to determine their behaviour based on identifiers passed in as NSString.\n To deal with this, HCObjectSwitch adds a simple syntax that is very similar to the native switch statement.\n In order to avoid clashing with the native syntax, all keywords start with a capital letter.\n",
"homepage": "https://github.com/hypercrypt/HCObjectSwitch",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Klaus-Peter Dudas": "klaus@hypercrypt.net"
},
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"source": {
"git": "https://github.com/hypercrypt/HCObjectSwitch.git",
"tag": "1.1.0"
},
"source_files": "HCObjectSwitch/*.{h,m}",
"public_header_files": "HCObjectSwitch/*.{h}",
"frameworks": "Foundation",
"requires_arc": true
}