In Rail 2.3.2 can I have merb style action definitions:
Eg: instead of
def show
@user = User.find(params[:id])
end
Can I have:
def show(id)
@user = User.find(id)
end
What kind of crazy monkey patching do I need to do to get this working, note I only need this working for MRI so ParseTree is an option.
Note: there is a Rails 3 port of this functionality now.