sync_unlock

sync_unlock(m = EX) Instance Public methods

new

new() Class Public methods

alias

alias(anchor) Instance Public methods Called when an alias is found to anchor. anchor will be the name of the anchor found. Example Here we have an example of an array that references itself in YAML: --- &ponies - first element - *ponies &ponies is the achor, *ponies is the alias. In this case, alias is called with âponiesâ.

do_nothing

do_nothing(markup_item) Instance Public methods Does nothing to markup_item because it doesn't have any user-built content accept_blank_line accept_heading accept_list_item_end accept_raw accept_rule accept_verbatim

to_text

to_text() Instance Public methods

escape_auth_info

escape_auth_info(str) Instance Public methods

https?

https?(uri) Instance Public methods

label_tag

label_tag(name = nil, content_or_options = nil, options = nil, &block) Instance Public methods Creates a label element. Accepts a block. Options Creates standard HTML attributes for the tag. Examples label_tag 'name' # => <label for="name">Name</label> label_tag 'name', 'Your name' # => <label for="name">Your name</label> label_tag 'name', nil, class: 'small_label' # => <label for="name" class="small_label">Name</label>

specs

specs(req, res) Instance Public methods

limit

BigDecimal.limit(digits) Class Public methods Limit the number of significant digits in newly created BigDecimal numbers to the specified value. Rounding is performed as necessary, as specified by ::mode. A limit of 0, the default, means no upper limit. The limit specified by this method takes less priority over any limit specified to instance methods such as ceil, floor, truncate, or round.