Displaying 1 result from an estimated 1 matches for "debug_helper_module".
Did you mean:
debug_helper_modules
2006 Apr 07
0
what goes where on ruby on rails?
...1. enhacements to base classes
(like Numeric.format_integer or Time.format_shor_date)
I created files in \lib (like \lib\format.rb) and added
require "format"
in \app\controllers\application.rb
2. general helpers I want to be available to every view
I created a file in \lib (like \lib\debug_helper_module.rb), with a
module definition (like "module DebugHelper")
then in \app\helpers\application_helper.rb
require "debug_helper_modules"
# Methods added to this helper will be available to all templates in the
application.
module ApplicationHelper
include DebugHelper
end
but i...