GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: A YAML processor for use with Nu and Objective-C. Created by Patrick Thomson.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nuyaml.git
nuyaml / Nukefile
100644 20 lines (15 sloc) 0.545 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(task "build" is
      (SH "cd libsyck; nuke")
      (SH "cd yaml; nuke")
      (SH "rm -rf ./YAML.framework")
      (SH "mv ./yaml/YAML.framework ./"))
 
(task "clobber" is
      (SH "cd libsyck; nuke clobber")
      (SH "cd yaml; nuke clobber")
      (SH "rm -rf ./YAML.framework"))
      
(task "install" => "build" is
     (SH "sudo rm -rf /Library/Frameworks/YAML.framework")
     (SH "ditto YAML.framework /Library/Frameworks/YAML.framework"))
 
(task "test" => "build" is
      (SH "nutest test/test_yaml.nu"))
 
(task "default" => "build")