singular_name

singular_name() Instance Protected methods FIXME: We are avoiding to use alias because a bug on thor that make this method public and add it to the task list.

getResponseHeader

getResponseHeader(arg0) Instance Public methods BSTR getResponseHeader Get HTTP response header BSTR arg0 --- bstrHeader [IN]

filter

filter(params) Instance Public methods

shift

ary.shift â obj or nilary.shift(n) â new_ary Instance Public methods Removes the first element of self and returns it (shifting all other elements down by one). Returns nil if the array is empty. If a number n is given, returns an array of the first n elements (or less) just like array.slice!(0, n) does. With ary containing only the remainder elements, not including what was shifted to new_ary. See also #unshift for the opposite effect. args = [ "-m", "-q", "filename" ] args.sh

public_constant

mod.public_constant(symbol, ...) => mod Instance Public methods Makes a list of existing constants public.

mon_synchronize

mon_synchronize() Instance Public methods Enters exclusive section and executes the block. Leaves the exclusive section automatically when the block exits. See example under MonitorMixin. synchronize

number_to_currency

number_to_currency(number, options = {}) Instance Public methods Formats a number into a currency string (e.g., $13.65). You can customize the format in the options hash. Options :locale - Sets the locale to be used for formatting (defaults to current locale). :precision - Sets the level of precision (defaults to 2). :unit - Sets the denomination of the currency (defaults to â$â). :separator - Sets the separator between the units (defaults to â.â). :delimiter - Sets the th

text_field_tag

text_field_tag(name, value = nil, options = {}) Instance Public methods Creates a standard text field; use these text fields to input smaller chunks of text like a username or a search query. Options :disabled - If set to true, the user will not be able to use this input. :size - The number of visible characters that will fit in the input. :maxlength - The maximum number of characters that the browser will allow the user to enter. :placeholder - The text contained in the fie

parsed

parsed() Instance Public methods BOOL parsed has sub-tree been completely parsed

verified_request?

verified_request?() Instance Protected methods Returns true or false if a request is verified. Checks: is it a GET or HEAD request? Gets should be safe and idempotent Does the #form_authenticity_token match the given token value from the params? Does the X-CSRF-Token header match the #form_authenticity_token