ojsubmitter 0.5.0 → 0.5.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/lib/ojsubmitter/judge/atcoder.rb +1 -1
- data/lib/ojsubmitter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fe959f302fda90d210e92ff3d7ec129cada9a58
|
4
|
+
data.tar.gz: 213c140bb3dd1fa3439e2ca4d310ea7970047c73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 121c9c8586b7a7166d5b4e658c2c4130f058b25a422baee6557e40a33ca552144e389f7a6d00277a4c37b4245237df5ac8f590ad64bbaee12e6e1cad53d71b84
|
7
|
+
data.tar.gz: bab660e3c13f7a3bd4ad8ae1fef88ab249c1adce356cafb6db67e23542ddf10d0266baa6a47e67e1ea0d6ce0a90130027e7902841b7940583e671d245ae70fa8
|
data/README.md
CHANGED
@@ -187,7 +187,7 @@ Version infomation of Codeforces is [here](http://codeforces.com/blog/entry/79).
|
|
187
187
|
|
188
188
|
#### AtCoder
|
189
189
|
|
190
|
-
When you use this for submitting to atcoder, this tool will get languages list from atcoder and submit with matched language. If two more languages are matched, you have to select one.
|
190
|
+
When you use this for submitting to atcoder, this tool will get languages list from atcoder and submit with matched language. If two or more languages are matched, you have to select one.
|
191
191
|
|
192
192
|
#### Help
|
193
193
|
|
@@ -51,7 +51,7 @@ module OJS
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def select_language(cands)
|
54
|
-
Logger.info "Two more languages are matched. Please select one."
|
54
|
+
Logger.info "Two or more languages are matched. Please select one."
|
55
55
|
cands.each_with_index do |cand, idx|
|
56
56
|
Logger.info "#{idx} : #{cand[1]}"
|
57
57
|
end
|
data/lib/ojsubmitter/version.rb
CHANGED