documentation of filter order

Is there any good documentation of the controller callback order for rails?

I'm not sure whether the before_action comes before the around_action, if it comes after, or maybe "it depends".

The Action Controller guide doesn't really answer the question.

Is there any good documentation of the controller callback order for rails?

I'm not sure whether the before_action comes before the around_action, if it comes after, or maybe "it depends".

The Action Controller guide doesn't really answer the question.

says that they are listed in the order they will get called.

Colin

I'm sorry -- I was asking about Controller _filters_, not model _callbacks_.

If only filters were as well documented as callbacks.

> Is there any good documentation of the controller callback order for > rails? > > I'm not sure whether the before_action comes before the around_action, > if it comes after, or maybe "it depends". > > The Action Controller guide doesn't really answer the question.

Active Record Callbacks — Ruby on Rails Guides callbacks says that they are listed in the order they will get called.

I'm sorry -- I was asking about Controller _filters_, not model _callbacks_.

If only filters were as well documented as callbacks.

No need to be sorry, my error. That's what comes from not reading the question.

Colin