Sha256: f110ffa8e34b34ab84d088a8c4efe2c8893784ef4edb55810f9f8cfa0e7b472a
Contents?: true
Size: 770 Bytes
Versions: 6
Compression:
Stored size: 770 Bytes
Contents
CONTENTS -------- Every input parameter is represented by a file that can be written to. If a file is not changed, the parameter it represents will not be sent to the API -- it is possible to send only a subset of input parameters. <% @c.parameters.each do |name, desc| %> *<%= safe_print(name) %>* Label: <%= desc[:label] %> Required: <%= desc[:required] ? 'yes' : 'no' %> Data type: <%= desc[:type] %> <% if desc[:validators] -%> Validators: <% desc[:validators].each do |name, desc| -%> <%= name.capitalize %> <% desc.each do |k, v| -%> - *<%= safe_print(k) %>* <%= v ? "`#{v}`" : '' %> <% end -%> <% end -%> <% end -%> Default: <%= desc[:default] %> Description: <%= desc[:description] %> <% end -%>
Version data entries
6 entries across 6 versions & 1 rubygems