Skip to content

Instantly share code, notes, and snippets.

@lulalala
Created February 21, 2017 06:15
Embed
What would you like to do?
Have ActiveRecord#to_s print out the id. More useful than printing out the Ruby object id.
class ActiveRecord::Base
def to_s
"#<#{self.class.name}:#{self.id}>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment