padrino/padrino-framework

View on GitHub
padrino-gen/lib/padrino-gen/generators/templates/helper.rb.tt

Summary

Maintainability
Test Coverage
# Helper methods defined here can be accessed in any controller or view in the application

module <%= @project_name %>
  class <%= @app_name %>
    module <%= @helper_name %>
      # def simple_helper_method
      # ...
      # end
    end

    helpers <%= @helper_name %>
  end
end