search for: path_patch

Displaying 1 result from an estimated 1 matches for "path_patch".

Did you mean: para_patch
2008 Mar 03
0
Overriding ActionController method in an app
...://dev.rubyonrails.org/changeset/8785 but i don''t want to have to upgrade past 2.0.2, and i don''t want to have to freeze rails inside the app. so i was hoping to override the methods in ActionController required to make the patch to my app only. i created a file called ''path_patch.rb'' and put it in my config/initializers dir, which contains the following: ActionController::Resources::Resource.class_eval do attr_reader :path_segment def initialize(entities, options) @plural ||= entities @singular ||= options[:singular] || plural.to_s.singularize @...