Sha256: 0c3822d2bcc4693fd1fdc20fe98f4d2d47e2c668305b4623e88d71655d1746ed
Contents?: true
Size: 1.21 KB
Versions: 64
Compression:
Stored size: 1.21 KB
Contents
{% for method in site.data.methods %} <div class="table-container"> <table class="table is-bordered is-fullwidth {{ table_class }}"> <thead> <tr> <th colspan="3">{{method.name}}</th> </tr> <tr> <th colspan="3"><span class="has-text-weight-light">{{method.description}}</span></th> </tr> </thead> <tbody> <tr> <td colspan="3"> <span class="title is-7">Parameters</span> </td> </tr> {% for parameter in method.parameters %} <tr> <td> <code style="white-space: nowrap;">{{ parameter.name }}</code> </td> <td> <span>{{ parameter.type }}</span> </td> <td> <span>{{ parameter.description }}</span> </td> </tr> {% endfor %} <tr> <td colspan="3"> <span class="title is-7">Return values</span> </td> </tr> {% for return in method.returns %} <tr> <td> <code style="white-space: nowrap;">{{ return.type }}</code> </td> <td colspan="2"> <span>{{ return.description }}</span> </td> </tr> {% endfor %} </tbody> </table> </div> {% endfor %}
Version data entries
64 entries across 64 versions & 1 rubygems