Rubocop auto correct

This commit is contained in:
kojix2 2020-09-15 18:58:34 +09:00
parent 3b8846efbe
commit 661e5048dd
3 changed files with 12 additions and 11 deletions

View File

@ -1,5 +1,6 @@
require 'optparse' require 'optparse'
require_relative 'preprocessing' require_relative 'preprocessing'
require_relative 'command/params'
module Uplot module Uplot
Data = Struct.new(:headers, :series) Data = Struct.new(:headers, :series)
@ -225,7 +226,7 @@ module Uplot
def run def run
parse_options parse_options
if command == :colors if command == :colors
Plot.colors Plot.colors
exit exit

View File

@ -124,15 +124,15 @@ module Uplot
end end
def colors def colors
UnicodePlot::StyledPrinter::TEXT_COLORS.each do |k,v| UnicodePlot::StyledPrinter::TEXT_COLORS.each do |k, v|
print v print v
print k print k
print "\t" print "\t"
print "" print ' ●'
print "\033[0m" print "\033[0m"
print "\t" print "\t"
end end
puts puts
end end
def check_series_size(data, fmt) def check_series_size(data, fmt)

View File

@ -61,7 +61,7 @@ class UplotPreprocessingTest < Test::Unit::TestCase
test :get_series do test :get_series do
n = nil n = nil
assert_equal([[2, 3], [5, 6], [8, 9]], @m.get_series([[1, 2, 3], assert_equal([[2, 3], [5, 6], [8, 9]], @m.get_series([[1, 2, 3],
[4, 5, 6], [4, 5, 6],
[7, 8, 9]], true, true)) [7, 8, 9]], true, true))