No release in over a year
Write a longer description or delete this line.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.1, >= 0.1.0
~> 2.1, >= 2.1.0
~> 2.0, >= 2.0.2
~> 2.8, >= 2.8.3
 Project Readme

createissue_jira

The gem is help to upload the excel file test cases to Jira under specific epic Example:

1. A sample excel file attached

2. Example:

require 'rest-client'
require 'json'
require 'base64'
require 'roo'
require_relative './api'

@datafile = Datafile.new
@datafile.jira_api_credentials(email: "abc@xyz.com, jira_api_token: "#{jiraApiToken}", base_url: "https://#{baseUrl}atlassian.net/",assignee_id: "#{assignee_id}",acceptance_criteria_id: "#{acceptance_criteria_id}")

@datafile.load_file('./sample.xlsx',0,'ID')
@datafile.summary(1,2,2)
@datafile.description(2,3,'Business Acceptance')
@datafile.business_acceptace(2,3,'Business Acceptance')
@datafile.create_api('#{project_key}','#{epic_key}','#{assignee_id}','#{label}')

3. Jira Credentianl details:

jiraApiToken
assignee_id
acceptance_criteria_id
project_key
epic_key
label

The Jira Credentianl fields ids and token details can be found using below documantation: https://developer.atlassian.com/server/jira/platform/rest-apis/

4. File: sample.xlsx

Please note that there are several additional modification can be add based on requirement and this can be a sample use case Thank you