1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Initialize @as before plural method is called.

This commit is contained in:
Emilio Tagua 2010-09-24 13:04:51 -03:00
parent 5ced275ac1
commit bb2f53b409

View file

@ -676,6 +676,7 @@ module ActionDispatch
DEFAULT_ACTIONS = [:show, :create, :update, :destroy, :new, :edit] DEFAULT_ACTIONS = [:show, :create, :update, :destroy, :new, :edit]
def initialize(entities, options) def initialize(entities, options)
@as = nil
@name = entities.to_s @name = entities.to_s
@path = (options.delete(:path) || @name).to_s @path = (options.delete(:path) || @name).to_s
@controller = (options.delete(:controller) || plural).to_s @controller = (options.delete(:controller) || plural).to_s