Getting access to simple_format and other Rails view helpers

Language: Ruby

class Hello
  extend ActionView::Helpers::TagHelper
  extend ActionView::Helpers::TextHelper

  def world(text)
    simple_format(text) # simple_format is made available via "extend"
  end
end
Reveal More
Added about 2 years ago by Costco_normal trevorturk