Skip to content

Commit cf5a95f

Browse files
fix: 'JIRA'->'Jira' references (#23)
1 parent 4e3745f commit cf5a95f

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.vale.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ write-good.Passive = NO
3030
write-good.TooWordy = NO
3131
write-good.Weasel = NO
3232
# Global ignores for all markup files
33-
TokenIgnores = (\$[A-Z_]+), (`[^`]+`), (:[a-z-]+:), (\{[^}]+\}), (https?://[^\s]+), \bJIRA\b
33+
TokenIgnores = (\$[A-Z_]+), (`[^`]+`), (:[a-z-]+:), (\{[^}]+\}), (https?://[^\s]+)
3434

3535
# Ruby files for comments
3636
[*.rb]
3737
BasedOnStyles = Microsoft, write-good
38-
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+), \bJIRA\b
38+
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+)
3939

4040
# YAML files
4141
[*.{yml,yaml}]
4242
BasedOnStyles = Microsoft, write-good
43-
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+:), \bJIRA\b
43+
TokenIgnores = (`[^`]+`), (\$[A-Z_]+), (:[a-z_]+:)

.vale/config/vocabularies/issuer/accept.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ DocOps
5757
docopslab
5858

5959
# Proper nouns
60-
JIRA
60+
Jira
6161
OAuth
6262
README
6363
roadmap

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ _Issuer_ lets you define all your work tickets in one place as YAML, apply defau
2424
* *Issue validation* with helpful error messages
2525
* *GitHub API integration* via Octokit
2626

27-
Future plans include extending this capability to *JIRA*, *GitLab* Issues, GitHub *Projects*, and other services.
27+
Future plans include extending this capability to *Jira*, *GitLab* Issues, GitHub *Projects*, and other services.
2828

2929
toc::[]
3030

@@ -433,7 +433,7 @@ I developed the 0.1.0 version of this application after trying to use GitHub Cop
433433
That facility seems like a perfectly inappropriate use of generative AI.
434434
It accepted my plan request and pre-drafted ticket content, but then it wanted me to manually add labels and milestones to them, as well as manually click *create* on each one -- even though I had already taken the time to plan and instruct the milestones and labels and the contents were fullly prepared.
435435

436-
Additionally, I find myself using different issue-management systems (JIRA, GitLab Issues, etc), so I wanted a more platform-agnostic way to handle this problem.
436+
Additionally, I find myself using different issue-management systems (Jira, GitLab Issues, etc), so I wanted a more platform-agnostic way to handle this problem.
437437
With that in mind, I have left the Ruby API and the IMYML model fairly "`generic`" for extensibility.
438438
I will probably adapt the API to other systems in future releases, and I welcome <<contributing,contributions>> to that effect.
439439

lib/issuer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# * Configurable defaults and label application logic
2626
# * Environment variable support for authentication
2727
# * Issue validation with helpful error messages
28-
# * Extensible architecture for multiple platforms (GitHub, JIRA, GitLab, etc.)
28+
# * Extensible architecture for multiple platforms (GitHub, Jira, GitLab, etc.)
2929
# * Run logging and artifact tracking for cleanup operations
3030
#
3131
# == Quick Start

0 commit comments

Comments
 (0)