judges 0.15.0 → 0.15.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/assets/index.xsl +15 -5
- data/judges.gemspec +1 -1
- data/lib/judges/commands/update.rb +1 -1
- data/lib/judges.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1167a70af81049059fa23cd0fc3aa55d8121be63a485a1505722f121fe6e0cf2
|
4
|
+
data.tar.gz: 01ba49b74c442f68a50c00ffb05ae02ec6c47083c267488d65ba61c2dadff7c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 757c3f6e51cde316d20c969401590a70f7689cc7b940ce7b163c5a035163b7302ab713bdfdd887ea29151c4daa849d4dc981dbacd93ccc791d55691e0b3fad5b
|
7
|
+
data.tar.gz: 9949da5d8596b9ff74e0229f6b787b1bc94bd15732cab181e12aa1bdf1bc3102004a85e6220ad171858e96aa1e76a8991019a83117ff17eec2b33d18e294fab4
|
data/Gemfile.lock
CHANGED
@@ -89,7 +89,7 @@ GEM
|
|
89
89
|
erubi (1.13.0)
|
90
90
|
ethon (0.16.0)
|
91
91
|
ffi (>= 1.15.0)
|
92
|
-
factbase (0.0.
|
92
|
+
factbase (0.0.60)
|
93
93
|
backtrace (~> 0.3)
|
94
94
|
decoor (~> 0.0)
|
95
95
|
json (~> 2.7)
|
@@ -149,7 +149,7 @@ GEM
|
|
149
149
|
stringio
|
150
150
|
public_suffix (6.0.0)
|
151
151
|
racc (1.8.0)
|
152
|
-
rack (3.1.
|
152
|
+
rack (3.1.6)
|
153
153
|
rack-session (2.0.0)
|
154
154
|
rack (>= 3.0.0)
|
155
155
|
rack-test (2.1.0)
|
data/assets/index.xsl
CHANGED
@@ -169,12 +169,19 @@ SOFTWARE.
|
|
169
169
|
<xsl:otherwise>
|
170
170
|
<td>
|
171
171
|
<xsl:for-each select="$f/*">
|
172
|
+
<xsl:variable name="visible" select="string-length(substring-before(concat(',', $hidden, ','), concat(name(), ','))) != 0"/>
|
172
173
|
<xsl:if test="string-length(substring-before(concat(',', $columns, ','), concat(name(), ','))) = 0">
|
173
|
-
<xsl:
|
174
|
-
<xsl:
|
175
|
-
<xsl:
|
176
|
-
</xsl:
|
177
|
-
<xsl:
|
174
|
+
<xsl:choose>
|
175
|
+
<xsl:when test="not($visible)">
|
176
|
+
<xsl:value-of select="name()"/>
|
177
|
+
</xsl:when>
|
178
|
+
<xsl:otherwise>
|
179
|
+
<span style="color:gray;">
|
180
|
+
<xsl:value-of select="name()"/>
|
181
|
+
</span>
|
182
|
+
</xsl:otherwise>
|
183
|
+
</xsl:choose>
|
184
|
+
<xsl:if test="$visible">
|
178
185
|
<xsl:text>:</xsl:text>
|
179
186
|
<xsl:call-template name="value">
|
180
187
|
<xsl:with-param name="v" select="."/>
|
@@ -215,6 +222,9 @@ SOFTWARE.
|
|
215
222
|
<xsl:when test="$v/@t = 'I'">
|
216
223
|
<xsl:text>#212F3C</xsl:text>
|
217
224
|
</xsl:when>
|
225
|
+
<xsl:when test="$v/@t = 'F'">
|
226
|
+
<xsl:text>#E74C3C</xsl:text>
|
227
|
+
</xsl:when>
|
218
228
|
</xsl:choose>
|
219
229
|
</xsl:attribute>
|
220
230
|
<xsl:value-of select="$v"/>
|
data/judges.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
|
27
27
|
s.required_ruby_version = '>=3.2'
|
28
28
|
s.name = 'judges'
|
29
|
-
s.version = '0.15.
|
29
|
+
s.version = '0.15.1'
|
30
30
|
s.license = 'MIT'
|
31
31
|
s.summary = 'Command-Line Tool for a Factbase'
|
32
32
|
s.description =
|
@@ -102,7 +102,7 @@ class Judges::Update
|
|
102
102
|
elapsed(@loog) do
|
103
103
|
c = one_judge(fb, p, global, options)
|
104
104
|
churn += c
|
105
|
-
throw :"👍 The judge #{p.name} modified #{c} facts"
|
105
|
+
throw :"👍 The judge #{p.name} modified #{c} facts out of #{fb.size}"
|
106
106
|
end
|
107
107
|
rescue StandardError, SyntaxError => e
|
108
108
|
@loog.warn(Backtrace.new(e))
|
data/lib/judges.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: judges
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: backtrace
|