Last active
December 21, 2015 17:59
-
-
Save dancsiqueira/6344240 to your computer and use it in GitHub Desktop.
instructions.rb
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
| games = ClickJogos::Game.all; nil | |
| nonstandard_instruction_games = [] | |
| games.each do |game| | |
| if game.instructions.lines.count > 5 | |
| puts game.name | |
| nonstandard_instruction_games << game | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment