Add document comments to Ruby functions in Intellij or RubyMine.
see https://www.jetbrains.com/help/ruby/documenting-source-code-in-rubymine.html for more info.
Move cursor to the function name, and press the shortcut to add the Ruby doc comments.
Shortcuts:
ctrl + shift + P
or alt enter in Windows and Linux⌘ + ⇧ + P
(command shift P) or ctrl enter in Mac osBefore
def encode!(test, num = 1, *several_variants, **new) '' end
After
# @param [Object] test
# @param [Fixnum] num
# @param [Array] several_variants
# @param [Hash] new
# @return [String]
def encode!(test, num = 1, *several_variants, **new)
''
end
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4