Skip to content

Instantly share code, notes, and snippets.

@rachidcalazans
Last active March 22, 2018 17:19
Show Gist options
  • Save rachidcalazans/6552fe267daf51ea7a74689aa5e0d566 to your computer and use it in GitHub Desktop.
Save rachidcalazans/6552fe267daf51ea7a74689aa5e0d566 to your computer and use it in GitHub Desktop.
Example I Avoiding Nil - Represent special cases as objects
def index
if current_user
@posts = current_user.posts
else
@posts = List.public_posts
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment