Hello,
Is there a way to specify the return value of a method in rdoc?
I would like my rdoc documentation to look like the ruby-core-api:
“method_name(param1, param2) => return_value”
Thanks for helping
Hello,
Is there a way to specify the return value of a method in rdoc?
I would like my rdoc documentation to look like the ruby-core-api:
“method_name(param1, param2) => return_value”
Thanks for helping
Martin Gütlein wrote:
Hello,
Is there a way to specify the return value of a method in rdoc?
I would like my rdoc documentation to look like the ruby-core-api:
“method_name(param1, param2) => return_value”Thanks for helping
#!/usr/bin/env ruby
#Encoding: UTF-8
#That’s my class.
class A
#call-seq:
#And this is my method.
def my_method
27
end
Note the blank line between the calling string (which may be multiline)
and the method description.
If you speak German, you may want to have a look here:
http://wiki.ruby-portal.de/RDoc
If not, I’d like to point you to the official RDoc documentation at
RDoc Documentation (but I wasn’t able to find
the #call-seq directive there till now)
Marvin
At 2009-09-30 11:33AM, “Martin Gütlein” wrote:
Hello,
Is there a way to specify the return value of a method in rdoc?
I would like my rdoc documentation to look like the ruby-core-api:
“method_name(param1, param2) => return_value”Thanks for helping
Use the “call-seq:” directive
# ... comments about this method ...
#
# call-seq:
# method_name(param1, param2) => return_value
#
def method_name(first_param, second_param)
...
Note the parameter names in the call-seq don’t have to match what you
actually use in your code.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs