We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d655d44 commit f642ffcCopy full SHA for f642ffc
bin/yeah
@@ -1 +1,21 @@
1
#!/usr/bin/env ruby
2
+
3
+command = ARGV.shift
4
5
+case command
6
7
+when 'run'
8
+ puts "todo"
9
10
+when 'version'
11
+ require 'yeah/version'
12
+ puts Yeah::VERSION
13
14
+else
15
+ puts "Usage:"
16
+ puts " yeah <command>"
17
+ puts ""
18
+ puts "Commands:"
19
+ puts " run - Run game project with web runner."
20
+ puts " version - Print installed version of Yeah."
21
+end
0 commit comments