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
| vagrant@habitrpg:/vagrant$ gulp test | |
| [23:37:32] Using gulpfile /vagrant/gulpfile.js | |
| [23:37:34] Starting 'test:all'... | |
| [23:37:34] Starting 'lint:server'... | |
| [23:37:36] Starting 'lint:common'... | |
| [23:37:36] Starting 'lint:tests'... | |
| [23:37:37] Finished 'lint:server' after 3.22 s | |
| [23:37:58] Finished 'lint:common' after 22 s | |
| [23:37:59] Finished 'lint:tests' after 23 s | |
| [23:37:59] Starting 'lint'... |
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
| class Game | |
| def initialize | |
| @board = Board.new 100,100 | |
| add_objects | |
| end | |
| def add_objects | |
| #add objects to board |
NewerOlder