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

About this user

Rick Olson http://techno-weenie.net

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Loading ActionView helpers

This lets you load ActionView helpers globally.

RAILS_ROOT/lib/action_view/helpers/widget_helper.rb:
   1  
   2  module ActionView
   3    module Helpers
   4      module WidgetHelper
   5        # define helper methods
   6      end
   7    end
   8  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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS