cobench 0.0.34 → 0.0.35
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/assets/index.xsl +10 -0
- data/lib/cobench/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: fdd68553eb250f70a8b28b55881595a6ca920b35451a76e7eaaefe963e5c81f4
|
|
4
|
+
data.tar.gz: bd69957900879988ccbc4194959d1ca27c55452a3f33f9a51bbcba4fe528e5da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f617125d6f05b54e008170fd5fa53fc5623a16a861bd044ab0c31421a7e6054a601f8fc0cfa3a68dc10c3a01b35a0393942485d69729d34b7f570399981f835d
|
|
7
|
+
data.tar.gz: 7579e8f69a4bb6d85d1b5a0aebce2223b4f95881f6a91122869f3b1b3a86b069a01be99725af4ffc960d56a9e416664ec856d0d6f3e38beec61aff579508af43
|
data/assets/index.xsl
CHANGED
|
@@ -98,6 +98,16 @@ SOFTWARE.
|
|
|
98
98
|
<xsl:text> to see all.</xsl:text>
|
|
99
99
|
</p>
|
|
100
100
|
<table id="metrics">
|
|
101
|
+
<xsl:attribute name="data-sortlist">
|
|
102
|
+
<xsl:text>[[</xsl:text>
|
|
103
|
+
<xsl:for-each select="cobench/titles/title">
|
|
104
|
+
<xsl:sort select="."/>
|
|
105
|
+
<xsl:if test=". = 'Score'">
|
|
106
|
+
<xsl:value-of select="position() + 2"/>
|
|
107
|
+
</xsl:if>
|
|
108
|
+
</xsl:for-each>
|
|
109
|
+
<xsl:text>,1]]</xsl:text>
|
|
110
|
+
</xsl:attribute>
|
|
101
111
|
<colgroup>
|
|
102
112
|
<col/>
|
|
103
113
|
<col style="width: 2.5em;"/>
|
data/lib/cobench/version.rb
CHANGED