Menu

gitpiper

Rdoc Cheat Sheet in May 2023

Last Updated: 16 May 2023

README.md

Basic RDoc format

# Foo.
#
# @example
#
#   y
#   g
#
# @param [String] param_name The xx and xx.
#
# @see https://example.com/
#
# @return [true] if so

Hash parameters

# @param [Hash] opts the options to create a message with.
# @option opts [String] :subject The subject
# @option opts [String] :from ('nobody') From address
# @option opts [String] :to Recipient email
# @option opts [String] :body ('') The email's body 

Parameter types

# @param (see User#initialize)
# @param [OptionParser] opts the option parser object
# @param [Array<String>] args the arguments passed from input. This
#   array will be modified.
# @param [Array<String, Symbol>] list the list of strings and symbols.
# @param [Hash<Symbol, String>] a hash with symbol keys and string values
#
# The options parsed out of the commandline.
# Default options are:
#   :format => :dot

Inline

*bold*
_emphasized_
+code+
https://www.example.com/
See Models::User@Examples
{Google}[https://google.com/]

Skip

def input # :nodoc:
module MyModule # :nodoc: all

Definition lists

# == Definition lists
#
# list::  hi.
# +foo+:: parameterized
# == Definition lists
# [foo]   also
# [bar]   like this

Return types

# @return [String]
# @return [String, nil] the name

Callseq

# :call-seq:
#   ARGF.readlines(sep=$/)     -> array
#   ARGF.readlines(limit)      -> array
#   ARGF.readlines(sep, limit) -> array
#
#   ARGF.to_a(sep=$/)     -> array
#   ARGF.to_a(limit)      -> array
#   ARGF.to_a(sep, limit) -> array

Category

# :category: Utilities

Sections

# :section: Expiry methods
# methods relating to expiring

def expire!
def expired?
...

Using tomdoc

# :markup: TomDoc

Place this at the beginning of the file.

Also see

{: .-one-column}


338+ more cheat sheets for you in May 2023

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2023 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️