Almirah 0.3.0 → 0.3.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/bin/almirah +0 -0
- data/lib/almirah/project.rb +4 -0
- 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: be9e792ca43617f09611a801b8e8c8efde741ec531a97295de8d65378232c0d2
|
|
4
|
+
data.tar.gz: 492000cb9aadaf0731e077b46ec3a32b573da9c8cd2acfaff6f282dec75c394d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51e65415ee9d0a8c0f77d19d21ab525a01cbc4c025bc5572f92f2df13bc56ceed8b04be5e18d3c0308c468c43986dd267046d9b1c125e281ad01476b08a93569
|
|
7
|
+
data.tar.gz: b64d9b5a0da5d254ecbc6dd861db05017b8cd81e13c0f58071413816d9b20d879187cbda5b2a703d5eae9f92ec044000010fc6b1b103fa30a9de04b265562cde
|
data/bin/almirah
CHANGED
|
File without changes
|
data/lib/almirah/project.rb
CHANGED
|
@@ -59,14 +59,18 @@ class Project # rubocop:disable Metrics/ClassLength,Style/Documentation
|
|
|
59
59
|
def specifications_and_results(test_run) # rubocop:disable Metrics/MethodLength
|
|
60
60
|
parse_all_specifications
|
|
61
61
|
parse_test_run test_run
|
|
62
|
+
parse_all_source_files
|
|
62
63
|
link_all_specifications
|
|
63
64
|
link_all_protocols
|
|
65
|
+
link_all_source_files
|
|
64
66
|
check_wrong_specification_referenced
|
|
65
67
|
create_index
|
|
66
68
|
render_all_specifications(@project_data.specifications)
|
|
67
69
|
render_all_specifications(@project_data.traceability_matrices)
|
|
68
70
|
render_all_specifications(@project_data.coverage_matrices)
|
|
69
71
|
render_all_protocols
|
|
72
|
+
render_all_source_files
|
|
73
|
+
render_all_specifications(@project_data.implementation_matrices) # intentionally after source file rendering
|
|
70
74
|
render_index
|
|
71
75
|
create_search_data
|
|
72
76
|
end
|