each

asn1_ary.each { |asn1| block } => asn1_ary Instance Public methods Calls block once for each element in self, passing that element as parameter asn1. If no block is given, an enumerator is returned instead. Example asn1_ary.each do |asn1| puts asn1 end

close

strio.close â nil Instance Public methods Closes strio. The strio is unavailable for any further data operations; an IOError is raised if such an attempt is made.

<=>

string other_string â -1, 0, +1 or nil Instance Public methods ComparisonâReturns -1, 0, +1 or nil depending on whether string is less than, equal to, or greater than other_string. nil is returned if the two values are incomparable. If the strings are of different lengths, and the strings are equal when compared up to the shortest length, then the longer string is considered greater than the shorter one. <=> is the basis for the methods <, <=, >, >=, and betwe

selection_set

selection_set(first, last=None) Instance Public methods

delete

delete(target) Instance Public methods

image_convolve

image_convolve(src, dest, filter) Class Public methods

get?

get?() Instance Public methods Is this a #GET (or HEAD) request? Equivalent to request.request_method_symbol == :get.

/

/(p1 = v1, p2 = v2) Instance Public methods Alias for: split

slanted

slanted(text, width=nil, height=nil, angle=nil) Class Public methods

xml_http_request

xml_http_request(request_method, path, parameters = nil, headers_or_env = nil) Instance Public methods Performs an XMLHttpRequest request with the given parameters, mirroring a request from the Prototype library. The request_method is :get, :post, :patch, :put, :delete or :head; the parameters are nil, a hash, or a url-encoded or multipart string; the headers are a hash. xhr