judges 0.61.0 → 0.61.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/assets/index.xsl +6 -7
- data/judges.gemspec +1 -1
- data/lib/judges/commands/update.rb +1 -1
- data/lib/judges.rb +1 -1
- data/package-lock.json +3 -3
- 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: b8fa293459c005d14a7aca9d3c1ea31878045e38aa8f7b6666a547596e759041
|
|
4
|
+
data.tar.gz: 3ea806b14dd8bfcbd88de16a6ee64f02546540f15f74fdc9ec36cd8ca0f0be57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9307149d574c9ecba58bdd740f893ff43280c764e12bc7df3071cbea3df642400c5646145b031efc892a7cbd4bb88cf86df34ae8864edf12818ace6ab2fa41d4
|
|
7
|
+
data.tar.gz: 89ab386300bfe2b7ddaea08c28beabc038086187e6ff9f49a8ebf7014eb172561e1aa4e2cf3ed4b8c32b5470a1b5ccc93a7f4e7e7ac96fe477e76a6146c895e7
|
data/assets/index.xsl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!--
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
* SPDX-FileCopyrightText: Copyright (c) 2024-2026 Yegor Bugayenko
|
|
4
|
+
* SPDX-License-Identifier: MIT
|
|
5
5
|
-->
|
|
6
6
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
7
7
|
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8" indent="yes"/>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
<link href="{$url}" rel="stylesheet" integrity="{$hash}" crossorigin="anonymous"/>
|
|
27
27
|
</xsl:template>
|
|
28
28
|
<xsl:template match="/">
|
|
29
|
-
<xsl:text disable-output-escaping=
|
|
29
|
+
<xsl:text disable-output-escaping="yes"><!DOCTYPE html></xsl:text>
|
|
30
30
|
<html>
|
|
31
31
|
<head>
|
|
32
32
|
<meta charset="UTF-8"/>
|
|
@@ -213,14 +213,13 @@
|
|
|
213
213
|
<xsl:for-each select="$f/*">
|
|
214
214
|
<xsl:text> </xsl:text>
|
|
215
215
|
<xsl:variable name="visible" select="string-length(substring-before(concat(' ,', $hidden, ','), concat(',', name(), ','))) = 0"/>
|
|
216
|
-
<xsl:variable name="is-highlighted" select="contains(concat(',', $highlighted, ','),
|
|
217
|
-
concat(',', name(), ','))"/>
|
|
216
|
+
<xsl:variable name="is-highlighted" select="contains(concat(',', $highlighted, ','), concat(',', name(), ','))"/>
|
|
218
217
|
<xsl:if test="string-length(substring-before(concat(' ,', $columns, ','), concat(',', name(), ','))) = 0">
|
|
219
218
|
<xsl:choose>
|
|
220
219
|
<xsl:when test="$visible">
|
|
221
220
|
<span>
|
|
222
221
|
<xsl:if test="$is-highlighted">
|
|
223
|
-
|
|
222
|
+
<xsl:attribute name="class">highlighted</xsl:attribute>
|
|
224
223
|
</xsl:if>
|
|
225
224
|
<xsl:value-of select="name()"/>
|
|
226
225
|
</span>
|
|
@@ -234,7 +233,7 @@
|
|
|
234
233
|
<xsl:if test="$visible">
|
|
235
234
|
<span>
|
|
236
235
|
<xsl:if test="$is-highlighted">
|
|
237
|
-
|
|
236
|
+
<xsl:attribute name="class">highlighted</xsl:attribute>
|
|
238
237
|
</xsl:if>
|
|
239
238
|
<xsl:text>:</xsl:text>
|
|
240
239
|
<xsl:call-template name="value">
|
data/judges.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to?(:required_rubygems_version=)
|
|
10
10
|
s.required_ruby_version = '>=3.2'
|
|
11
11
|
s.name = 'judges'
|
|
12
|
-
s.version = '0.61.
|
|
12
|
+
s.version = '0.61.1'
|
|
13
13
|
s.license = 'MIT'
|
|
14
14
|
s.summary = 'Command-Line Tool for a Factbase'
|
|
15
15
|
s.description =
|
|
@@ -49,7 +49,7 @@ class Judges::Update
|
|
|
49
49
|
options = build_options(opts)
|
|
50
50
|
judges = Judges::Judges.new(
|
|
51
51
|
dir, opts['lib'], @loog,
|
|
52
|
-
epoch: @
|
|
52
|
+
epoch: @start, shuffle: opts['shuffle'], boost: opts['boost'],
|
|
53
53
|
demote: opts['demote'], seed: opts['seed']
|
|
54
54
|
)
|
|
55
55
|
churn = Factbase::Churn.new
|
data/lib/judges.rb
CHANGED
data/package-lock.json
CHANGED
|
@@ -341,9 +341,9 @@
|
|
|
341
341
|
}
|
|
342
342
|
},
|
|
343
343
|
"node_modules/eslint": {
|
|
344
|
-
"version": "10.
|
|
345
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.
|
|
346
|
-
"integrity": "sha512-
|
|
344
|
+
"version": "10.7.0",
|
|
345
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.7.0.tgz",
|
|
346
|
+
"integrity": "sha512-GVTD7s1vdIl6UYvAfriOPeY1Df8LIZjfofLvHwde+erDHGGuHyuM6xoxRxmHiebhYuD2p1vN4wWh0XzPARSGDQ==",
|
|
347
347
|
"dev": true,
|
|
348
348
|
"license": "MIT",
|
|
349
349
|
"workspaces": [
|