https://github.com/willpowell8/jiramobilekit
JIRA Mobile Kit a framework for raising bugs within your app including screenshots easily. JIRA Bug Raising written in Swift. iOS JIRA SDK Swift 3-4
https://github.com/willpowell8/jiramobilekit
atlassian atlassian-jira cocoapods ios iphone jira jira-plugin swift swift3 testing-framework
Last synced: about 1 year ago
JSON representation
JIRA Mobile Kit a framework for raising bugs within your app including screenshots easily. JIRA Bug Raising written in Swift. iOS JIRA SDK Swift 3-4
- Host: GitHub
- URL: https://github.com/willpowell8/jiramobilekit
- Owner: willpowell8
- License: mit
- Created: 2017-08-13T16:56:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-10T19:44:32.000Z (about 7 years ago)
- Last Synced: 2025-03-24T01:13:28.232Z (about 1 year ago)
- Topics: atlassian, atlassian-jira, cocoapods, ios, iphone, jira, jira-plugin, swift, swift3, testing-framework
- Language: Swift
- Homepage:
- Size: 399 KB
- Stars: 36
- Watchers: 3
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JIRAMobileKit
[](https://travis-ci.org/willpowell8/JIRAMobileKit)
[](http://cocoapods.org/pods/JIRAMobileKit)
[](http://cocoapods.org/pods/JIRAMobileKit)
[](http://cocoapods.org/pods/JIRAMobileKit)
JIRA Mobile KIT is a plugin written from the group up in swift to enable fast
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
## Installation
JIRAMobileKit is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
```swift
pod "JIRAMobileKit"
```
## Configuring
To start JIRA you can setup the JIRA connection using the following command:
```swift
JIRA.shared.setup(host: "[[JIRA_URL]]", project: "[[PROJECT_KEY]]", defaultIssueType: "[[DEFAULT_ISSUE_TYPE]]")
```
The parameters you should use:
- [[JIRA_URL]] - this is the url of where to your jira instance is located. Eg for a cloud JIRA install it is https://company.atlassian.net
- [[PROJECT_KEY]] - this is the short key related to your project. Note your tickets for a project get created like [[PROJECT_KEY]]-TicketNumber
- [[DEFAULT_ISSUE_TYPE]] - (optional) this is the name of your ticket type. By default it is set as Bug.
## Raising an issue
Then to raise a JIRA issue:
```swift
JIRA.shared.raise()
```
## Author
willpowell8, willpowell8@gmail.com
## License
JIRAMobileKit is available under the MIT license. See the LICENSE file for more info.