# File lib/errors.rb, line 53
53:     def full_messages
54:       full_messages = []
55: 
56:       errors.each_key do |attribute|
57:         errors[attribute].each do |msg|
58:           next if msg.nil?
59: 
60:           if attribute.to_s == "base"
61:             full_messages << msg
62:           else
63:             full_messages << humanize(attribute.to_s) + " " + msg
64:           end
65:         end
66:       end
67:       full_messages
68:     end