git-story-workflow 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/git-story-workflow.gemspec +2 -2
- data/lib/git/story/app.rb +1 -1
- data/lib/git/story/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43c968c9f9d5bbd21254536ec3a1b2ea2300a21f30d7bd16d41be8d575836130
|
|
4
|
+
data.tar.gz: 91a94c2145b59e6c47bdc84e88fc953468ac88c26c6212f12804c3ee34e42ba3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3990f389072d4f4ede00b5235478f8e45ce274e9e430a27e1600f4c64caca348a02c7038fd5dd69abd2a239bd1174b5f02c9d371c668e68094d7a64f841ac3a
|
|
7
|
+
data.tar.gz: c28cb6e35f7fdafe0d26b9e2bec5c13b653ec263ea7de0b5c68cbc2fb5bddae4c4cd99d18fc2f4455d9a8b231408c5649fc83634c116d10a25d638624d611c00
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/git-story-workflow.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: git-story-workflow 0.2.
|
|
2
|
+
# stub: git-story-workflow 0.2.1 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "git-story-workflow".freeze
|
|
6
|
-
s.version = "0.2.
|
|
6
|
+
s.version = "0.2.1"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
data/lib/git/story/app.rb
CHANGED
|
@@ -126,7 +126,6 @@ class Git::Story::App
|
|
|
126
126
|
command doc: '[STORY_ID] fetch status of current story'
|
|
127
127
|
def status(story_id = current(check: true)&.[](/_(\d+)\z/, 1)&.to_i)
|
|
128
128
|
if story = fetch_story(story_id)
|
|
129
|
-
jj story
|
|
130
129
|
color_state =
|
|
131
130
|
case cs = story.current_state
|
|
132
131
|
when 'unscheduled', 'planned', 'unstarted'
|
|
@@ -318,6 +317,7 @@ class Git::Story::App
|
|
|
318
317
|
end
|
|
319
318
|
|
|
320
319
|
def apply_story_accessors(ref)
|
|
320
|
+
branch = ref[0]
|
|
321
321
|
branch =~ BRANCH_NAME_REGEX or return
|
|
322
322
|
branch.extend StoryAccessors
|
|
323
323
|
branch.story_base_name = ref[0]
|
data/lib/git/story/version.rb
CHANGED