[Add] LastFM.swift 1.5.0
[CocoaPods.git] / Specs / f / 7 / d / NCCWL / 0.1.1 / NCCWL.podspec.json
blob088bc3dc3d588097e55c0ee578f9fcc9b32971f5
2   "name": "NCCWL",
3   "version": "0.1.1",
4   "summary": "CWL == Crash w/ Logs. When your app crash, zip and send the crash info and your recent logs.",
5   "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",
6   "homepage": "https://github.com/nickcheng/NCCWL",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "nickcheng": "n@nickcheng.com"
13   },
14   "source": {
15     "git": "https://github.com/nickcheng/NCCWL.git",
16     "tag": "0.1.1"
17   },
18   "platforms": {
19     "ios": "5.0"
20   },
21   "source_files": "NCCWL/*.{h,m}",
22   "public_header_files": "NCCWL/*.h",
23   "preserve_paths": "CrashReporter.framework",
24   "frameworks": [
25     "SystemConfiguration",
26     "CFNetwork",
27     "CrashReporter"
28   ],
29   "libraries": "z",
30   "requires_arc": true,
31   "dependencies": {
32     "CocoaLumberjack": [
33       ">=1.6"
34     ],
35     "NSLogger": [
36       ">= 1.1"
37     ],
38     "SSZipArchive": [
39       ">=0.2.3"
40     ]
41   },
42   "xcconfig": {
43     "FRAMEWORK_SEARCH_PATHS": "\"$(PODS_ROOT)/NCCWL\""
44   }