username =
if current_user.nil?
"Guest"
else
current_user.name
end
username = current_user.name
# ...
class LoggedInUser
def name
@name
end
# ...
end
class GuestUser
def name
"Guest"
end
# ...
end
Sandi Metz has a great video about the Null Object Pattern in Ruby, titled Nothing is Something.