public_decrypt

rsa.public_decrypt(string) => Stringrsa.public_decrypt(string, padding) => String Instance Public methods Decrypt string, which has been encrypted with the private key, with the public key. padding defaults to PKCS1_PADDING.

new

new(message, original_exception = nil) Class Public methods

xhr?

xhr?() Instance Public methods Alias for: xml_http_request?

each_codepoint

ios.each_codepoint {|c| block } â iosios.codepoints {|c| block } â iosios.each_codepoint â an_enumeratorios.codepoints â an_enumerator Instance Public methods Passes the Integer ordinal of each character in ios, passing the codepoint as an argument. The stream must be opened for reading or an IOError will be raised. If no block is given, an enumerator is returned instead.

nodeName

nodeName() Instance Public methods BSTR nodeName name of the node

json_create

json_create(o) Instance Public methods Raw Strings are JSON Objects (the raw bytes are stored in an array for the key ârawâ). The Ruby String can be created by this module method.

new

new() Class Public methods Create a new Psych::Nodes::Node

irb_abort

irb_abort(irb, exception = Abort) Class Public methods Aborts then interrupts irb. Will raise an Abort exception, or the given exception.

prerelease?

prerelease?() Instance Public methods Does this dependency require a prerelease?

split

split(value = nil) Instance Public methods Divides the array into one or more subarrays based on a delimiting value or the result of an optional block. [1, 2, 3, 4, 5].split(3) # => [[1, 2], [4, 5]] (1..10).to_a.split { |i| i % 3 == 0 } # => [[1, 2], [4, 5], [7, 8], [10]]