module DocumentationTest
Public Instance Methods
foo()
click to toggle source
Does it understand `markdown` ? and rdoc
? @return [String] This is work ?.
# File lib/documentation-test.rb, line 12 def foo "bar" end
to_factory()
click to toggle source
Converts the object into textual markup given a specific format.
@param format [Symbol] the format type, `:text` or `:html` @return [String] the object converted into the expected format.
# File lib/documentation-test.rb, line 28 def to_factory # format the object end
to_format(format = :html)
click to toggle source
Converts the object into textual markup given a specific format.
@param format [Symbol] the format type, `:text` or `:html` @return [String] the object converted into the expected format.
# File lib/documentation-test.rb, line 20 def to_format(format = :html) # format the object end