list_item_start

list_item_start(list_item, list_type) Instance Public methods Lists are paragraphs, but notes and labels have a separator

move

move(item, idx) Instance Public methods

index

index(item) Instance Public methods

find

find() Instance Public methods Also aliased as: list

[]

[](key) Instance Public methods A convenience method to access the values like a Hash

binwrite

IO.binwrite(name, string, [offset] ) => fixnumIO.binwrite(name, string, [offset], open_args ) => fixnum Class Public methods Same as IO.write except opening the file in binary mode and ASCII-8BIT encoding (âwb:ASCII-8BITâ).

run

thr.run â thr Instance Public methods Wakes up thr, making it eligible for scheduling. a = Thread.new { puts "a"; Thread.stop; puts "c" } sleep 0.1 while a.status!='sleep' puts "Got here" a.run a.join produces: a Got here c

lastChild

lastChild() Instance Public methods IXMLDOMNode lastChild first child of the node

select

select(method, choices = nil, options = {}, html_options = {}, &block) Instance Public methods Wraps ActionView::Helpers::FormOptionsHelper#select for form builders: <%= form_for @post do |f| %> <%= f.select :person_id, Person.all.collect { |p| [ p.name, p.id ] }, include_blank: true %> <%= f.submit %> <% end %> Please refer to the documentation of the base helper for details.

getnames

getnames(address) Instance Public methods Gets all hostnames for address from the DNS resolver. address must be a Resolv::IPv4, Resolv::IPv6 or a String. Retrieved names will be Resolv::DNS::Name instances.