class SvelteOnRails::Lib::Utils
def self.puts_error(text)
def self.puts_error(text) red_background = "\033[97;41m" clear_colors = "\033[0m" puts "#{red_background} ERROR #{clear_colors}" text.split("\n").each do |line| puts "#{red_background} #{clear_colors} #{line}" end end