Set the Gem Ruby version to 2.6 or higher

This commit is contained in:
kojix2
2021-06-03 10:32:20 +09:00
parent 4651c697d4
commit 2649959745
4 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ module YouPlot
# compare values
r = b[1] <=> a[1]
# If the values are the same, compare by name
r = a[0] <=> b[0] if r == 0
r = a[0] <=> b[0] if r.zero?
r
end