blob: b7864847a68f3b67d0b3a69826f03efeab131b61 [file] [log] [blame]
{
"name": "TSCollections",
"version": "0.3.2",
"summary": "Implementation of stack, queue, expanding array and two dimensinal array",
"description": " TSCollections inclundes implemenations for stack, queue, expanding array and \n\t\ttwo dimensional array (implemented with the expanding arrays). There is a subspec \n\t\tfor each collecitons so you only have to include what you need in your code.\n",
"homepage": "https://github.com/laptobbe/TSCollections",
"license": "MIT",
"authors": {
"Tobias Sundstrand": "tobias.sundstrand@gmail.com"
},
"source": {
"git": "https://github.com/laptobbe/TSCollections.git",
"tag": "0.3.2"
},
"requires_arc": true,
"subspecs": [
{
"name": "TSStack",
"source_files": "Classes/NSMutableArray+TSStack.{h,m}"
},
{
"name": "TSQueue",
"source_files": "Classes/NSMutableArray+TSQueue.{h,m}"
},
{
"name": "TSExpandingArray",
"source_files": "Classes/TSExpandingArray.{h,m}"
},
{
"name": "TSTwoDimensionalArray",
"source_files": "Classes/TSTwoDimensionalArray.{h,m}",
"dependencies": {
"TSCollections/TSExpandingArray": [
]
}
}
]
}