diff options
| author | realtradam <[email protected]> | 2022-01-12 14:22:33 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-01-12 14:22:33 -0500 |
| commit | a53f8c8f28bdeebbcd5224d606f14ce224ab20ea (patch) | |
| tree | d6a431417f87162c501870a468d7662e9450b46e | |
| parent | 1fbddef75580cfaf6b25a1d328b29225ef563ed7 (diff) | |
| download | FelFlameEngine-a53f8c8f28bdeebbcd5224d606f14ce224ab20ea.tar.gz FelFlameEngine-a53f8c8f28bdeebbcd5224d606f14ce224ab20ea.zip | |
rake now lists tasks
| -rw-r--r-- | Rakefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,3 +1,4 @@ +desc "Build your game" task :build do desc "Build game" Dir.chdir("mruby") do @@ -5,6 +6,7 @@ task :build do end end +desc "Create a server and open your game in your browser" task :serve do link = "http://localhost:8000/game.html" if RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/ |
