add_comment

add_comment(comment, location) Instance Public methods Adds comment to this ClassModule's list of comments at location. This method is preferred over comment= since it allows ri data to be updated across multiple runs.

explode

explode(value) Instance Public methods

closest

closest(x, y, var, keys={}) Instance Public methods

start_element

start_element(uri, localname, qname, attributes) Instance Public methods

content_for?

content_for?(name) Instance Public methods #content_for? checks whether any content has been captured yet using `content_for`. Useful to render parts of your layout differently based on what is in your views. <%# This is the layout %> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>My Website</title> <%= yield :script %> </head> <body class="<%= content_for?(:right_col) ? 'two-column' : 'one-colum

start 2

start(*init_args, &b) Instance Public methods

include?

include?(other) Instance Public methods

nextSibling

nextSibling() Instance Public methods IXMLDOMNode nextSibling right sibling of the node

new

new(name, *requirements) Class Public methods Constructs a dependency with name and requirements. The last argument can optionally be the dependency type, which defaults to :runtime.

pbkdf2_hmac

PKCS5.pbkdf2_hmac(pass, salt, iter, keylen, digest) => string Class Public methods Parameters pass - string salt - string - should be at least 8 bytes long. iter - integer - should be greater than 1000. 20000 is better. keylen - integer digest - a string or OpenSSL::Digest object. Available in OpenSSL 0.9.4. Digests other than SHA1 may not be supported by other cryptography libraries.