defunkt / ike

Rake in Io.

ike / Ikefile
100644 27 lines (21 sloc) 0.364 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
task("test",
  "noop" println
)
 
task("hello", "hello!" println)
 
desc("Set a production environment.")
task("production",
  "now you can " print
)
 
task("predeploy",
  "predeploy tasks" println
)
 
desc("Deploy a ya shniz")
task("deploy",
  "deploy'd" println
)
 
namespace("mongrel",
  desc("Restart mongrels")
  task("restart",
    "nicely done" println
  )
)