module UtilsDrawer::TableDrawer::ColumnValidator

Public Class Methods

new(text, size) click to toggle source
Calls superclass method
# File lib/utils_drawer/table_drawer/column_validator.rb, line 4
def initialize(text, size)
  fail 'Invalid multibyte char' if text =~ /[^\x01-\x7E]/

  super
end