Skip to content

Instantly share code, notes, and snippets.

@biow0lf
Last active July 31, 2024 09:36
Show Gist options
  • Save biow0lf/70c194574f24066c4d10caba6dc90c30 to your computer and use it in GitHub Desktop.
Save biow0lf/70c194574f24066c4d10caba6dc90c30 to your computer and use it in GitHub Desktop.

YARD Cheatsheat

Method params

@param with one option

# @param user [User] Description
def method(user)
end

@param with multiple options

# @param value [String, ActionController::Parameters] Description
def method(value)
end

value can be instance of String or ActionController::Parameters.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment