Created
April 3, 2013 10:19
-
-
Save niccokunzmann/5300021 to your computer and use it in GitHub Desktop.
These are code snippets to run in $MAGLEV_HOME to create a new maglev stone or to create a new test stone for maglev after buildmaglev was run
This file contains 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
buildmaglev () { | |
use ruby && | |
rake maglev:stop | |
rake stone:destroy[maglev] | |
rake build:clobber && | |
rake build:maglev && | |
rake maglev:reload_prims && | |
rake maglev:start | |
} | |
buildtest () { | |
use ruby && | |
rake test:stop | |
rake stone:destroy[test] | |
rake stone:create[test] && | |
rake test:start | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment