Print pretty results from Mysql::Result

Is there a easier way to output the contents of a Mysql::Result than this command?

ActiveRecord::Base.connection.select_all("show variables").each {|r| puts r['Variable_name'] + ": " + r['Value'] + "\n"}; nil

Thanks, Mark