I thought we would do
helper_method :current_user, :logged_in?, :authorized?
to make these controller methods available for use as view's helper methods. But in Restful Authentication's lib/authenticated_system.rb, I see:
# Inclusion hook to make #current_user and #logged_in?
# available as ActionView helper methods.
def self.included(base)
base.send :helper_method, :current_user, :logged_in?, :authorized? if base.respond_to? :helper_method
end
why is it done this way instead of that single line? I don't see included being called any where as well.