[Add] FaceSDKNightly 6.4.2314
[CocoaPods.git] / Specs / b / 5 / 3 / DebuggIt / 0.1.5 / DebuggIt.podspec.json
blobf02dff895d0f141f4ca2c071caabc9e49a211dda
2   "name": "DebuggIt",
3   "version": "0.1.5",
4   "summary": "Tool that will help QA and clients report bugs easily directly from the device",
5   "description": "# debugg.it\n\ndebugg.it is a simple, yet powerful tool that helps you get reports of the bugs directly to your defined issue tracker. It is a perfect tool for QA/clients.\n\n## Installation\n\ndebugg.it is available through CocoaPods. To install it, add the following to your Podfile:\n\n```ruby\nuse_frameworks!\nplatform :ios, '9.0'\npod 'DebuggIt'\n```\n\nDon’t forget to import the Pod in `AppDelegate`:\n\n```swift\nimport DebuggIt\n```\nor in Objective-C\n```objc\n@import DebuggIt;\n```\n\nand add one of these lines (**at start of method**) to initialize debugg.it\n\n*Swift*:\n\n```swift\nfunc application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {\n    // Override point for customization after application launch.\n    DebuggIt.sharedInstance.initBitbucket(repoSlug: \"repo-name\", accountName: \"repo-owner-username\")\n    // or Github\n    DebuggIt.sharedInstance.initGithub(repoSlug: \"repo-name\", accountName: \"repo-owner-username\")\n    // or JIRA\n    DebuggIt.sharedInstance.initJira(host: \"jira-host-url\", projectKey: \"project-key\")\n    return true\n}\n```\n\n*Objective-C*:\n\n```objc\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {\n    // Bitbucket\n    [[DebuggIt sharedInstance] initBitbucketWithRepoSlug: @\"repo-name\" accountName:@\"repo-owner-username\"];\n    // or Github\n    [[DebuggIt sharedInstance] initGithubWithRepoSlug: @\"repo-name\" accountName:@\"repo-owner-username\"];\n    // or JIRA\n    [[DebuggIt sharedInstance] initJiraWithHost:@\"jira-host-url\" projectKey:@\"project-key\" usesHttps:YES];\n    return YES;\n}\n```\n\n**Note**: If you are using **JIRA** and your host **do not use SSL**, use additional parameter in initialize method:\n\n```swift\nDebuggIt.sharedInstance.initJira(host: \"jira-host-url\", projectKey: \"project-key\", usesHttps: false)\n```\n\n```objc\n[[DebuggIt sharedInstance] initJiraWithHost:@\"jira-host-url\" projectKey:@\"project-key\" usesHttps:NO];\n``` \n\n### Additional options\n\n#### Record notes\n\n**debugg.it** allows to record audio notes and add it to bug description. To enable this feature simply add this line in your `AppDelegate` file:\n\n```swift\nDebuggIt.sharedInstance.recordingEnabled = true\n```\n\n```objc\n[DebuggIt sharedInstance].recordingEnabled = YES;\n```\n\nEnsure you have added _Microphone Usage Description_ in your `Info.plist` file. For example:\n```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>NSMicrophoneUsageDescription</key>\n\t<string>debugg.it record notes</string>\n\t<!-- \n\t\tRest of Info.plist file... \n\t-->\n</dict>\n</plist>\n```",
6   "homepage": "http://debugg.it",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "MoodUp.team": "info@debugg.it"
13   },
14   "source": {
15     "http": "http://debugg.it/downloads/ios/0.1.5/DebuggIt.framework.zip"
16   },
17   "platforms": {
18     "ios": "9.0"
19   },
20   "ios": {
21     "vendored_frameworks": "outputs/frameworks/DebuggIt.framework"
22   },
23   "dependencies": {
24     "Alamofire": [
25       "~> 4.0"
26     ],
27     "SwiftyJSON": [
29     ],
30     "IQKeyboardManagerSwift": [
31       "~> 4.0.6"
32     ],
33     "KMPlaceholderTextView": [
34       "~> 1.3.0"
35     ],
36     "RNCryptor": [
38     ],
39     "ReachabilitySwift": [
41     ]
42   },
43   "pushed_with_swift_version": "3.0"