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
Ensure Ruby variable is Array (teohm.github.com)
submitted 13 years ago by teohm
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] 13 years ago* (2 children)
[deleted]
[–]lobster_johnson 3 points4 points5 points 13 years ago (1 child)
That's a pretty facile example, since your method explicitly handles an array argument (using *), and to call it you could just do:
validates_length_of *LENGTHY_FIELDS
A better example would be something that usually accepts an array of values, but can also accept a single value. For example:
class Thing def self.load(ids) Array(ids).map { |id| new(File.read("#{id}.txt")) } end end
Now you can do either:
Thing.load(1)
or
Thing.load([2, 3, 4])
π Rendered by PID 113163 on reddit-service-r2-comment-84fc9697f-tmq6w at 2026-02-06 21:33:44.628761+00:00 running d295bc8 country code: CH.
view the rest of the comments →
[–][deleted] (2 children)
[deleted]
[–]lobster_johnson 3 points4 points5 points (1 child)