jirametrics 2.11 → 2.12pre1
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e826e1d8c8a0b8cb24505268b52f2c989fa6ef9ce0f2578e4d0925c48caa1d05
|
4
|
+
data.tar.gz: f6c69f9a94305328ded7672bc4d5f2e25913b4368092979116b2e6e255be3f1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d930e2c4e773d32c07b75fc972fa7b457ff74128bdde58d1f91b3b4c3d1f6bd797474a865977e781e556b6ff5ae8e0396d355d4347bf78ef15728e112e5ec3f8
|
7
|
+
data.tar.gz: b12223e4bffe29297c4c5957436934bb5f88e422a9b820ba2570cb9ace6117c52f671180dc0937af091b10a54c86b48d45d021fa01219f57d1ba7f84ce9ef868
|
data/lib/jirametrics/board.rb
CHANGED
@@ -128,10 +128,12 @@ class EstimateAccuracyChart < ChartBase
|
|
128
128
|
|
129
129
|
def story_points_at issue:, start_time:
|
130
130
|
story_points = nil
|
131
|
+
estimate_display_name = current_board.estimation_configuration.display_name
|
132
|
+
|
131
133
|
issue.changes.each do |change|
|
132
134
|
return story_points if change.time >= start_time
|
133
135
|
|
134
|
-
story_points = change.value if change.
|
136
|
+
story_points = change.value if change.field == estimate_display_name
|
135
137
|
end
|
136
138
|
story_points
|
137
139
|
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class EstimationConfiguration
|
4
|
+
attr_reader :units, :display_name, :field_id
|
5
|
+
|
6
|
+
def initialize raw:
|
7
|
+
@units = :story_points
|
8
|
+
@display_name = 'Story Points'
|
9
|
+
|
10
|
+
# If there wasn't an estimation section they rely on all defaults
|
11
|
+
return if raw.nil?
|
12
|
+
|
13
|
+
if raw['type'] == 'field'
|
14
|
+
@field_id = raw['field']['fieldId']
|
15
|
+
@display_name = raw['field']['displayName']
|
16
|
+
if @field_id == 'timeoriginalestimate'
|
17
|
+
@units = :seconds
|
18
|
+
@display_name = 'Original estimate'
|
19
|
+
end
|
20
|
+
elsif raw['type'] == 'issueCount'
|
21
|
+
@display_name = 'Issue Count'
|
22
|
+
@units = :issue_count
|
23
|
+
else
|
24
|
+
raise 'baboom'
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -126,6 +126,8 @@ class SprintBurndown < ChartBase
|
|
126
126
|
currently_in_sprint = false
|
127
127
|
change_data = []
|
128
128
|
|
129
|
+
estimate_display_name = current_board.estimation_configuration.display_name
|
130
|
+
|
129
131
|
issue_completed_time = issue.board.cycletime.started_stopped_times(issue).last
|
130
132
|
completed_has_been_tracked = false
|
131
133
|
|
@@ -146,7 +148,7 @@ class SprintBurndown < ChartBase
|
|
146
148
|
value = -story_points
|
147
149
|
end
|
148
150
|
currently_in_sprint = in_change_item
|
149
|
-
elsif change.
|
151
|
+
elsif change.field == estimate_display_name && (issue_completed_time.nil? || change.time < issue_completed_time)
|
150
152
|
action = :story_points
|
151
153
|
story_points = change.value.to_f
|
152
154
|
value = story_points - change.old_value.to_f
|
data/lib/jirametrics.rb
CHANGED
@@ -112,6 +112,7 @@ class JiraMetrics < Thor
|
|
112
112
|
require 'jirametrics/download_config'
|
113
113
|
require 'jirametrics/columns_config'
|
114
114
|
require 'jirametrics/hierarchy_table'
|
115
|
+
require 'jirametrics/estimation_configuration'
|
115
116
|
require 'jirametrics/board'
|
116
117
|
load config_file
|
117
118
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jirametrics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.12pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Bowler
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: random-word
|
@@ -86,6 +86,7 @@ files:
|
|
86
86
|
- lib/jirametrics/download_config.rb
|
87
87
|
- lib/jirametrics/downloader.rb
|
88
88
|
- lib/jirametrics/estimate_accuracy_chart.rb
|
89
|
+
- lib/jirametrics/estimation_configuration.rb
|
89
90
|
- lib/jirametrics/examples/aggregated_project.rb
|
90
91
|
- lib/jirametrics/examples/standard_project.rb
|
91
92
|
- lib/jirametrics/expedited_chart.rb
|