controller_class

controller_class() Instance Public methods

===

===(tuple) Instance Public methods Alias for match.

lastChild

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

createProcessingInstruction

createProcessingInstruction(arg0, arg1) Instance Public methods IXMLDOMProcessingInstruction createProcessingInstruction create a processing instruction node BSTR arg0 --- target [IN] BSTR arg1 --- data [IN]

normalize

normalize(form = nil) Instance Public methods Returns the KC normalization of the string by default. NFKC is considered the best normalization form for passing strings to databases and validations. form - The form you want to normalize in. Should be one of the following: :c, :kc, :d, or :kd. Default is ActiveSupport::Multibyte::Unicode#default_normalization_form

inspect

inspect() Instance Public methods

winfo_rootx

winfo_rootx() Instance Public methods

plot_rectangle

plot_rectangle(*args) Instance Public methods

metafile

metafile(file=None) Instance Public methods

truncate

truncate(truncate_at, options = {}) Instance Public methods Truncates a given text after a given length if text is longer than length: 'Once upon a time in a world far far away'.truncate(27) # => "Once upon a time in a wo..." Pass a string or regexp :separator to truncate text at a natural break: 'Once upon a time in a world far far away'.truncate(27, separator: ' ') # => "Once upon a time in a..." 'Once upon a time in a world far far away'.truncate(27, separator: /\s/) # =