Skip to content

Instantly share code, notes, and snippets.

@rachidcalazans
Last active March 22, 2018 17:19
Show Gist options
  • Save rachidcalazans/ae19374463db0a667291ca6ff4c8b645 to your computer and use it in GitHub Desktop.
Save rachidcalazans/ae19374463db0a667291ca6ff4c8b645 to your computer and use it in GitHub Desktop.
Example II Avoiding Nil - Represent special cases as objects
class ApplicationController ...
...
def current_user
return GuestUser.new unless session[:user_id]
User.find(session[:user_id])
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment