blob: 5e7aec6380740b5ddde96f619802aa3ab414e31a [file] [log] [blame]
{
"name": "DMTime",
"version": "0.1.1",
"summary": "A iOS, Objective-C, timing framework. e.g. A code timer",
"description": " #CocoaTime\n\n A simple Objective-C timer for timing code.\n\n ##Examples\n\n [DMTime startTimer:@\"Some key\"];\n // Some long running process\n DMTimeResult *result = [DMTime endTimer:@\"Some key\"];\n NSLog(@\"Code took %f seconds\", [result seconds]);\n\n Or if you prefer blocks:\n\n DMTimeResult *result = [DMTime timeBlock:^{\n // Some long running process\n }];\n NSLog(@\"Code took %f milliseconds\", [result milliseconds]);\n",
"homepage": "https://github.com/Vel0x/DMTime",
"license": "MIT",
"authors": {
"Vel0x": "DaleMyers19@gmail.com"
},
"source": {
"git": "https://github.com/Vel0x/DMTime.git",
"tag": "0.1.1"
},
"social_media_url": "https://twitter.com/vel0x",
"platforms": {
"ios": "6.0"
},
"requires_arc": true,
"source_files": "Pod/Classes/**/*",
"resource_bundles": {
"DMTime": [
"Pod/Assets/*.png"
]
},
"public_header_files": "Pod/Classes/**/*.h"
}