This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Tag Examples
@param
The param tag is used once per method parameter in a method comment. It can optionally include type information and a description, but must include the parameter name.
From Getting Started
@param [optional, types, ...] argname description
Here’s an example that uses multiple @param tags, with an increasing number of options
# Create a report
#
# @param name
# @param [Symbol] type
# @param [Array<String>] accounts a list of accounts to include
# @param [Optional Number] num_rows the number of rows
def create_report(name, type, accounts, num_rows=100)
# do something
end







