Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Loading ActionView helpers (See related posts)

This lets you load ActionView helpers globally.

RAILS_ROOT/lib/action_view/helpers/widget_helper.rb:
module ActionView
  module Helpers
    module WidgetHelper
      # define helper methods
    end
  end
end


RAILS_ROOT/config/environment.rb:

require "#{RAILS_ROOT}/lib/action_view/helpers/widget_helper.rb"
ActionView::Base.class_eval do
include ActionView::Helpers::WidgetHelper
end

You need to create an account or log in to post comments to this site.


Click here to browse all 4861 code snippets

Related Posts