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.

link|improve this question

feedback

3 Answers

You could change all params in to instance var's (eg. @id) in a before_filter...

link|improve this answer
feedback

EDIT: I was wrong: Method#parameters has been added to Ruby 1.9.2.


Original:

No, this is not possible in Rails.

There is almost zero chance of this making it into Rails 3.0. merb-action-args used ParseTree which doesn't and will not work on Ruby 1.9, therefore making it unlikely that it will be included in Rails.

link|improve this answer
But its built in to ruby 1.9.2 and in 1.9.1 there is a work around ... – Sam Saffron Aug 13 '09 at 23:36
Actually it was just ported to Rails 3.0 ... github.com/adelcambre/rails-action-args/tree/master – Sam Saffron Aug 20 '09 at 4:04
feedback

I am running Rails 2.3.3 and User.find(id) works just fine.

link|improve this answer
notice the sig on def show(id), in rails actions have no params, they all get accessed via params see: journal.uggedal.com/looking-at-merb-again look how actions are defined – Sam Saffron Aug 13 '09 at 2:07
Opps. So you want to convert the params hash into local variables available to the controller? Or pass the params hash to the method according to the variables defined. These seems like a reasonably easy thing to achieve. – askegg Aug 13 '09 at 4:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.