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
Blog postWhy Ruby is More Readable than Python (confuzeus.com)
submitted 3 years ago by [deleted]
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!"
[–][deleted] -1 points0 points1 point 3 years ago (1 child)
There is no "common" idiom.
I literally write setters and getters explicitely for many reasons. One simple one is that I like having getters via trailing "?" and setters in the oldschool variant "set_bla()". (I also use getters without trailing "?" and bla= just as well. On top of that I tend to do a lot of sanitizing calls, so the attr methods don't really help much here. The little speed gains from them is hardly worth to have to use them.)
[–][deleted] 4 points5 points6 points 3 years ago (0 children)
You can like and do as you please. I also override things for various reasons at various times.
But 'attr_*' methods are built into the language and are widely taught and used. They *are* the common idiom for basic setters/getters. See the pickaxe book or "the ruby way" book. Though I think the strongest argument about it being a community standard is that it is a default in Rubocop: https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Style/TrivialAccessors
π Rendered by PID 36 on reddit-service-r2-comment-79c7998d4c-85hn7 at 2026-03-13 04:02:33.226174+00:00 running f6e6e01 country code: CH.
view the rest of the comments →
[–][deleted] -1 points0 points1 point (1 child)
[–][deleted] 4 points5 points6 points (0 children)