Skip to content

Instantly share code, notes, and snippets.

@carlaviktor
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save carlaviktor/0b3e7fb2aa4b6c01ac8a to your computer and use it in GitHub Desktop.

Select an option

Save carlaviktor/0b3e7fb2aa4b6c01ac8a to your computer and use it in GitHub Desktop.
Tell, Don't Ask example
# Better
class Post
def send_to_feed
user.send_to_feed(contents)
end
end
# Is this better or worse?
class Post
def send_to_feed
if user.respond_to?('send_to_feed')
user.send_to_feed(contents)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment