In rails >4.0.0 generators creates CRUD operations with before_action not before_filter. It seems to do the same thing. So what\'s the difference b
before_action
before_filter
It is just a name change. before_action is more specific, because it gets executed before an action.