Created
March 6, 2013 14:58
-
-
Save jackfranklin/5099839 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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