The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
93 views

Is this class structure good?

I'm writing a pong game in Python and I created classes for the game objects. The top level class is Object, and Ball and Paddle inherit from it. And ComputerPaddle is a child class of Paddle. # ...
0
votes
2answers
61 views

Refactoring a HTML class collector?

I have following HTML class collector. Is there a better way than []tap for this? def tr_classes(user) classes = [].tap do |c| c << "error" if user.company.nil? c << "disabled" ...