current

current() Class Public methods Returns Time.zone.now when Time.zone or config.time_zone are set, otherwise just returns Time.now.

acosh!

acosh!(z) Class Public methods Alias for: acosh

legend_bind

legend_bind(tag, context, *args) Instance Public methods

find_all

find_all(req) Instance Public methods Return an array of APISpecification objects matching DependencyRequest req.

chomp

str.chomp(separator=$/) â new_str Instance Public methods Returns a new String with the given record separator removed from the end of str (if present). If $/ has not been changed from the default Ruby record separator, then chomp also removes carriage return characters (that is it will remove \n, \r, and \r\n). If $/ is an empty string, it will remove all trailing newlines from the string. "hello".chomp #=> "hello" "hello\n".chomp #=> "hello" "

add_response_handler

add_response_handler(handler = Proc.new) Instance Public methods Adds a response handler. For example, to detect when the server sends us a new EXISTS response (which normally indicates new messages being added to the mail box), you could add the following handler after selecting the mailbox. imap.add_response_handler { |resp| if resp.kind_of?(Net::IMAP::UntaggedResponse) and resp.name == "EXISTS" puts "Mailbox now has #{resp.data} messages" end }

write_instruction

write_instruction( node, output ) Instance Protected methods

reverse_each_name

reverse_each_name(pat) Instance Public methods

activate

activate(y) Instance Public methods

copy

copy(from_file, from_index, to_file, to_index, keys=nil) Class Public methods