Latest Version: 0.9.6.2

Index of the urls module

  • m webhelpers.rails.urls ... - URL Helpers
    • f link_to_unless ... - Conditionally create a link tag of the given name using the url
    • f button_to ... - Generates a form containing a sole button that submits to the URL given by url.
    • f link_to ... - Creates a link tag of the given name using an URL created by the set of options.
    • f link_to_unless_current ... - Conditionally create a link tag of the given name using the url
    • f link_to_if ... - Conditionally create a link tag of the given name using the url
    • f js_obfuscate ... - Obfuscates data in a Javascript tag
    • f mail_to ... - Creates a link tag for starting an email to the specified email_address, which is also used as the name of the link unless name is specified. Additional HTML options, such as class or id, can be passed in the html_options hash.
    • f current_url ... - Returns the current page's url.
    • f url ... - Lazily evaluates url_for() arguments
    • f current_page ... - Returns true if the current page uri is equivalent to url

Top