I have the following method:
def foo
[true_or_false, some_integer]
end
it always returns an array of 2 where 1st element is boolean and 2nd is integer.
How to document it in YARD using @return meta tag?
That's how it is later used:
is_success, exit_code = foo
I've checked the official documentation on @return section but it didn't help much.