judges 0.25.0 → 0.25.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/README.md +1 -1
- 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: 9985ec7aa091bbab98e33915b990f49cc3d6370ab0949f0b6b2820f848430b52
|
|
4
|
+
data.tar.gz: a15f89c6a0be6b38fb4d0d2dc6f0c89fcb9149920e02692d9bcd4112271dbf32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0b6120abac3e27fb11609e1932d7cb5a1d0317572c1f57c9b9642fdd021ca7552b8305ec364056d1d8184c4782f38a74ed20d7016139512627af3d3c1868d37
|
|
7
|
+
data.tar.gz: 3f55277c36cff1c75798c0b24cb44a9f9a71a96a3be552f449942b49971d4a4be7b95c05f200533d4e476f839cee80f1a343beef942e19ad3bd9a11dea83cedc
|
data/README.md
CHANGED
|
@@ -74,7 +74,7 @@ The `after` (default: `[]`) is a list of relative file names
|
|
|
74
74
|
of Ruby scripts that are executed after the judge
|
|
75
75
|
(`$fb` and `$loog` are passed into them).
|
|
76
76
|
|
|
77
|
-
The `expected_failure (default: `[]`) is a list of strings that must
|
|
77
|
+
The `expected_failure` (default: `[]`) is a list of strings that must
|
|
78
78
|
be present in the message of the exception being raised.
|
|
79
79
|
|
|
80
80
|
## How to contribute
|
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.25.
|
|
29
|
+
s.version = '0.25.1'
|
|
30
30
|
s.license = 'MIT'
|
|
31
31
|
s.summary = 'Command-Line Tool for a Factbase'
|
|
32
32
|
s.description =
|
|
@@ -81,7 +81,7 @@ class Judges::Update
|
|
|
81
81
|
end
|
|
82
82
|
throw :"Update finished in #{c} cycle(s), modified #{churn} fact(s)"
|
|
83
83
|
end
|
|
84
|
-
return
|
|
84
|
+
return unless opts['summary']
|
|
85
85
|
fb.query('(eq what "judges-summary")').delete!
|
|
86
86
|
f = fb.insert
|
|
87
87
|
f.what = 'judges-summary'
|
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.25.
|
|
4
|
+
version: 0.25.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-08-
|
|
11
|
+
date: 2024-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: backtrace
|