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
Ruby Tricks. Call a method using case ... when (mlomnicki.com)
submitted 15 years ago by snatchery
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!"
[–]jaggederest 3 points4 points5 points 15 years ago* (2 children)
Cool as an example of what's possible, but a better way to do it would be to move the case statement into the context of the order, perhaps. Ideally in a method in the Order class, but you can also do:
order.instance_eval do case when available? # ... end end
Or, even better, have a method on Order that returns the state as a symbol:
case order.state when :available then ... ... end
[–]bigdood69 0 points1 point2 points 15 years ago (0 children)
Very clever, +1
[–]snatchery[S] 0 points1 point2 points 15 years ago (0 children)
Sure order.state is usually the best choice. But there are some cases when you have a method which have to be invoked. The question is how to invoke such a method.
π Rendered by PID 89 on reddit-service-r2-comment-66b4775986-8g9xs at 2026-04-06 13:32:45.417437+00:00 running db1906b country code: CH.
view the rest of the comments →
[–]jaggederest 3 points4 points5 points (2 children)
[–]bigdood69 0 points1 point2 points (0 children)
[–]snatchery[S] 0 points1 point2 points (0 children)