# File lib/bee_task_default.rb, line 186 def cat(file) error "Parameter must be a string" unless file.kind_of?(String) error "File '#{file}' not a regular file or not readable" unless File.file?(file) and File.readable?(file) puts File.read(file).strip end