Skip to content

Instantly share code, notes, and snippets.

@jackfranklin
Created March 6, 2013 14:58
Show Gist options
  • Select an option

  • Save jackfranklin/5099839 to your computer and use it in GitHub Desktop.

Select an option

Save jackfranklin/5099839 to your computer and use it in GitHub Desktop.
def is_playing?
if @player.status == :playing
true
else
false
end
end
# or:
def is_playing?
@player.status == :playing
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment