I want to include a module in a rails helper(is also a module).
The helper is:
module SportHelper 
  .....
end
And the module is:
module Formula
  def say()
    ....
  end
end
Now, I want to use the method say in SportHelper. What should I do?
If I write like this:
module SportHelper 
  def speak1()
    require 'formula'
    extend Formula
    say()
  end
  def speak2()
    require 'formula'
    extend Formula
    say()
  end
end
This will work, but I don't want to do so, I just want to add the methods on the helper module,not every methods.