I created a file ./lib/action_view/helpers/asset_tag_helper.rb and put in it only the method I want to override. like this
module ActionView module Helpers #:nodoc: module AssetTagHelper def image_path(source) compute_public_path(source, 'images') end end end end But as soon I try this all the others methods from the overriden module are not available anymore. Any idea? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---