Section 10.2.1 of the Rails Tutorial utilizes before_filter which is deprecated. What's the modern idiomatic way to write the code in UsersController so as to not use before_filter?
Here's a version of edit that I tried:
def edit
if ( signed_in? )
@title = "Edit user"
else
deny_access
end
end
However, this triggers 2 failures in when I run rspec.
rspec ./spec/requests/friendly_forwardings_spec.rb:6 # FriendlyForwardings should forward to the requested page after signin
rspec ./spec/controllers/users_controller_spec.rb:266 # UsersController authentication of edit/update pages for non-signed-in users should deny access to 'edit'