public
Fork of wycats/thor
Description: A scripting framework that replaces rake and sake
Homepage: http://www.yehudakatz.com
Clone URL: git://github.com/halorgium/thor.git
Search Repo:
Remove last remains of Hermes
halorgium (author)
Tue May 13 17:51:57 -0700 2008
commit  25c9127b7d68f29f8a01b64ee730ef349278a767
tree    8919274f3257dd9bfcddf0655c40d5dba85ec07b
parent  7826d0ba5a932e59df2845692ccf56a736fcd023
...
7
8
9
10
 
11
12
13
...
29
30
31
32
 
33
34
35
...
37
38
39
40
 
41
42
43
...
7
8
9
 
10
11
12
13
...
29
30
31
 
32
33
34
35
...
37
38
39
 
40
41
42
43
0
@@ -7,7 +7,7 @@
0
 Examples:
0
 
0
     class MyApp
0
- extend Hermes # [1]
0
+ extend Thor # [1]
0
       
0
       map "-L" => :list # [2]
0
       
0
@@ -29,7 +29,7 @@
0
     
0
     MyApp.start
0
     
0
-Hermes automatically maps commands as follows:
0
+Thor automatically maps commands as follows:
0
 
0
     app install name --force
0
     
0
@@ -37,7 +37,7 @@
0
 
0
     MyApp.new.install("name", :force => true)
0
   
0
-[1] Use `extend Hermes` to turn a class into an option mapper
0
+[1] Use `extend Thor` to turn a class into an option mapper
0
 
0
 [2] Map additional non-valid identifiers to specific methods. In this case,
0
     convert -L to :list

Comments

    No one has commented yet.