I've been experimenting and find that I like redefining object's to_s methods. Is this a bad idea or is it good practice?
|
No, you should feel free to override And they help make your test failures read better - sometimes by a lot - which is never a bad thing. Go for it! |
|||||||
|
|
It might be tricky to do that because sometimes, |
||||
|
|
|
I override to_s all the time in my rails project:
def to_s
first_name + " " + last_name
end
so that it's easier to show objects in the view: <%= @person %> |
|||
|
|
|
It's not "bad" per se, but it isn't "good" either. It really depends on the context. If you are doing this for a one-shot place (for example inside your rails app's If you are doing a gem or a lib, on the other hand, I would not override it. Instead I'd add another method - The reasoning behind this is that other people might be using Object.to_s for other stuff, maybe in other libs. Monkeypatching it will produce clashes with those other libs. The only exception when doing a gem that I can think of is when the main point (or one of the main points) of that library is actually overriding the method; in other words, you are literally making a lib that overrides Object.to_s, and little else. I'd put some big warning on the documentation on that case. This way people using it will not get surprised. |
|||
