Hiya...
I need to override the initialize method in one of my models to set
some defaults. Do I want to set a variable length argument list or
not?
That is, should I do it like this
def initialize(*args)
... set defaults
super(*args)
end
or like this:
def initialize(args)
... set defaults
super(args)
end
--~--~---------~--~----~------------~-------~--~----~
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---