public
Description: Markdown processing with Nu. Use with any Nu or Objective-C project. Created by Grayson Hansard.
Homepage: http://programming.nu/posts/2007/10/10/markdown-in-nu
Clone URL: git://github.com/timburks/numarkdown.git
Set framework name to "NuMarkdown".

Also fixed a missing dependency for the "test" task.
timburks (author)
Wed Nov 07 20:34:49 -0800 2007
commit  ecd93ac998761810745a0f7882e867dda77dcfdf
tree    7509e5939f69d07d0717fa7b648572e6d51879d5
parent  539b8a39fc4a6138ced129ba628f569e7c8da71d
...
5
6
7
8
 
9
10
11
...
16
17
18
19
 
20
21
22
23
24
 
 
25
26
27
...
5
6
7
 
8
9
10
11
...
16
17
18
 
19
20
21
22
 
 
23
24
25
26
27
0
@@ -5,7 +5,7 @@
0
 (set @frameworks '("Cocoa" "Nu"))
0
 
0
 ;; framework description
0
-(set @framework "Markdown")
0
+(set @framework "NuMarkdown")
0
 (set @framework_identifier "nu.programming.markdown")
0
 (set @framework_creator_code "????")
0
 (set @framework_initializer "MarkdownInit")
0
@@ -16,12 +16,12 @@
0
 (task "bin/nudown" is
0
       (SH "gcc objc/nudown.m -o bin/nudown -framework Cocoa -framework Nu"))
0
 
0
-(task "test" is
0
+(task "test" => "framework" is
0
       (SH "nutest test/test_markdown.nu"))
0
 
0
 (task "clean" is
0
- (SH "rm test/SimpleTests/*.html")
0
- (SH "rm test/MarkdownTests/*.html"))
0
+ (SH "rm -f test/SimpleTests/*.html")
0
+ (SH "rm -f test/MarkdownTests/*.html"))
0
 
0
 (task "clobber" => "clean" is
0
       (system "rm -rf #{@framework_dir}"))
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 #!/usr/bin/env nush
0
-(load "Markdown")
0
+(load "NuMarkdown")
0
 
0
 (puts (NuMarkdown convert:((NSString alloc)
0
                            initWithData:((NSFileHandle fileHandleWithStandardInput) readDataToEndOfFile)
...
3
4
5
6
 
7
8
9
...
3
4
5
 
6
7
8
9
0
@@ -3,7 +3,7 @@
0
 ;;
0
 ;; Copyright (c) 2007 Tim Burks, Neon Design Technology, Inc.
0
 
0
-(load "Markdown")
0
+(load "NuMarkdown")
0
 
0
 (class TestMarkdown is NuTestCase
0
      

Comments

    No one has commented yet.