Created
February 21, 2017 06:15
-
-
Save lulalala/eca0278bef4ac199368913b4fbe61dac to your computer and use it in GitHub Desktop.
Have ActiveRecord#to_s print out the id. More useful than printing out the Ruby object id.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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