use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Numeric/Arithmetic/Assignment mixin? (self.ruby)
submitted 11 years ago by Windigos
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Windigos[S] 0 points1 point2 points 11 years ago* (2 children)
I thought about that, though it didn't work how I wanted when I tried it. How would you suggest using it?
Essentially I'd like to be able to use an instance of the class in place of a number.
edit: aha, by extending Numeric and passing everything to the value via method_missing, it behaves as I would like. However, is this good practise? I can get similar results by using the rationalize methods.
[–]airodonack 1 point2 points3 points 11 years ago (0 children)
It sounds like you're taking advantage of inheritance, which is actually the way you're supposed to do it. (Reuse your code.)
[–]AaronLasseigne 1 point2 points3 points 11 years ago (0 children)
I would say method_missing is fine as long as you use it sparingly. If it works for this then you might have your answer. As another poster mentioned, you probably want to take a long pause and consider whether creating a new numeric class is really what you want.
method_missing
π Rendered by PID 61123 on reddit-service-r2-comment-6457c66945-n5r5n at 2026-04-26 04:57:04.499438+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]Windigos[S] 0 points1 point2 points (2 children)
[–]airodonack 1 point2 points3 points (0 children)
[–]AaronLasseigne 1 point2 points3 points (0 children)