I am working with the rails console, and some models. I am running things like:
Model.find(:all).each do |x| p x.name end
which is nice, this lets me see all the values of a specific column, but after it prints those lines, it prints out the whole model.
Why does it do this? How can I stop it?