blob: 088bc3dc3d588097e55c0ee578f9fcc9b32971f5 [file] [log] [blame]
{
"name": "NCCWL",
"version": "0.1.1",
"summary": "CWL == Crash w/ Logs. When your app crash, zip and send the crash info and your recent logs.",
"description": " This is a glue library.\n\n * It uses [PLCrashReporter](https://code.google.com/p/plcrashreporter/) to generate crash log.\n * It uses [CocoaLumberjack](https://github.com/robbiehanson/CocoaLumberjack) and [NSLogger](https://github.com/fpillet/NSLogger) to log everything to a file and NSLoggerViewer.\n * When a crash occurred, next time you start the app, it'll use [ssziparcive](https://github.com/soffes/ssziparchive) to zip them all and call the block you set with the path of the zip file.\n\n I didn't expose all the properties of log and crash libraries. You can modify them in file ```NCCWL.m``` to fit your need.\n",
"homepage": "https://github.com/nickcheng/NCCWL",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"nickcheng": "n@nickcheng.com"
},
"source": {
"git": "https://github.com/nickcheng/NCCWL.git",
"tag": "0.1.1"
},
"platforms": {
"ios": "5.0"
},
"source_files": "NCCWL/*.{h,m}",
"public_header_files": "NCCWL/*.h",
"preserve_paths": "CrashReporter.framework",
"frameworks": [
"SystemConfiguration",
"CFNetwork",
"CrashReporter"
],
"libraries": "z",
"requires_arc": true,
"dependencies": {
"CocoaLumberjack": [
">=1.6"
],
"NSLogger": [
">= 1.1"
],
"SSZipArchive": [
">=0.2.3"
]
},
"xcconfig": {
"FRAMEWORK_SEARCH_PATHS": "\"$(PODS_ROOT)/NCCWL\""
}
}