v2gpti 1.2.2 → 1.2.3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbca65a36ba99402c938e32fdc43448a87dec18c
|
|
4
|
+
data.tar.gz: 55bdabc5b52f1802edcb0f9282110af6a39c0566
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d588cd11852a38ec40262fd5a96b053168d2b6d91aab309b65a19ac10e0b58a1de97f2d9b70885d488adf393f283eb54fbce68759ed55018183069447b927d4
|
|
7
|
+
data.tar.gz: 23cea4846171223146edc65dfbd8014a244f17237a5268f5a4c6a25c9f167b60a32ede918f516df3934923bc1349e880174c56af18af35db2dcf2ec1d556e3c5
|
|
@@ -34,7 +34,7 @@ module GitPivotalTrackerIntegration
|
|
|
34
34
|
self.check_branch
|
|
35
35
|
story = Util::Story.select_release @project
|
|
36
36
|
$LOG.debug("Release Story:#{story.name}")
|
|
37
|
-
sort_for_deliver story
|
|
37
|
+
#sort_for_deliver story
|
|
38
38
|
Util::Story.pretty_print story
|
|
39
39
|
|
|
40
40
|
current_branch = Util::Git.branch_name
|
|
@@ -134,7 +134,8 @@ module GitPivotalTrackerIntegration
|
|
|
134
134
|
stories = project.stories(filter: "current_state:finished type:bug,chore,feature -id:#{build_story.id}", limit: 1000)
|
|
135
135
|
|
|
136
136
|
# capture story details in a file as well as to stdout
|
|
137
|
-
|
|
137
|
+
FileUtils.mkdir_p 'release_notes'
|
|
138
|
+
notes_file = File.join("release_notes", "#{project.name}-#{build_story.name}.txt")
|
|
138
139
|
|
|
139
140
|
File.open(notes_file, 'w') do |file|
|
|
140
141
|
puts "Included Stories"
|
|
@@ -37,8 +37,10 @@ module GitPivotalTrackerIntegration
|
|
|
37
37
|
|
|
38
38
|
$LOG.debug("#{self.class} in project:#{@project.name} pwd:#{pwd} branch:#{Util::Git.branch_name}")
|
|
39
39
|
story = Util::Story.select_release(@project, filter.nil? ? 'v' : filter)
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
|
|
41
|
+
# commenting the 2 lines below before we find an acceptable solution for story sorting
|
|
42
|
+
#place_version_release story
|
|
43
|
+
#pull_out_rejected_stories story
|
|
42
44
|
Util::Story.pretty_print story
|
|
43
45
|
$LOG.debug("story:#{story.name}")
|
|
44
46
|
|
|
@@ -43,7 +43,7 @@ module GitPivotalTrackerIntegration
|
|
|
43
43
|
|
|
44
44
|
abort "There are no available stories." if story.nil?
|
|
45
45
|
|
|
46
|
-
if story.story_type == "feature" && story.estimate.
|
|
46
|
+
if story.story_type == "feature" && story.estimate.nil?
|
|
47
47
|
story.estimate = estimate_story
|
|
48
48
|
story.save
|
|
49
49
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: v2gpti
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff Wolski
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2015-
|
|
13
|
+
date: 2015-06-16 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: highline
|