method

auto_link_urls

auto_link_urls(text, href_options = {})
private

Turns all urls into clickable links. If a block is given, each url is yielded and the result is used as the link text. Example:

  auto_link_urls(post.body, :all, :target => '_blank') do |text|
    truncate(text, 15)
  end