Skip to content

Commit

Permalink
Reproduce commit 0b7e7b4, adjusted for branch
Browse files Browse the repository at this point in the history
This renames the JSON data file to "features-info.json", to better
reflect its role.  It is the same as commit 0b7e7b4 on 'master',
but adjusted for the 'reqs-code-here' branch.
  • Loading branch information
kfogel committed Jun 4, 2018
1 parent aa341af commit 6f6aed8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ PSM's feature progress.
* `refresh-dashboard`
Script to orchestrate everything: gather and combine the
features/RTM mapping, requirements, and issue labels so as to
produce `dashboard-input.json`
produce `features-info.json`

* `dashboard-input.json`
* `features-info.json`
The result of one run of `refresh-dashboard`. This is a generated
file and therefore in theory we shouldn't version it here. But in
practice: it's rather expensive to generate, so once we have a new
Expand Down
2 changes: 1 addition & 1 deletion dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
rawFile.send(null);
}

readJsonFile("dashboard-input.json", function(text) {
readJsonFile("features-info.json", function(text) {
var data = JSON.parse(text);
window.drawFeaturesPieChart(data, d3);
window.drawFeaturesBurnDownChart(data, d3);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion get-inputs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Prerequisites:
Usage:
$ ./get-inputs [--featureless-reqs] > sample-output.json
$ ./get-inputs [--featureless-reqs] > features-info.json
(Note that some "DEBUG" prints will appear on stderr; they are being
used as a cheap kind of progress meter. Just redirect stdout as in
Expand Down

0 comments on commit 6f6aed8

Please sign in to comment.