sinatra helper in external file

后端 未结 5 1549
半阙折子戏
半阙折子戏 2021-02-07 06:48

I have lot of helpers in my main Sinatra project_name.rb and I want to remove them to the external file, what is the best practice to do that ?

from ./preject_na

5条回答
  •  旧时难觅i
    2021-02-07 07:08

    The simple and recommended way:

    module ApplicationHelper
    
    # methods
    
    end
    
    class Main < Sinatra::Base
    
      helpers ApplicationHelper
    
    end
    

提交回复
热议问题