rant 0.4.8 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. data/NEWS +31 -0
  2. data/README +3 -1
  3. data/Rantfile +53 -2
  4. data/doc/advanced.rdoc +86 -1
  5. data/doc/c.rdoc +8 -0
  6. data/doc/homepage/index.html +2 -0
  7. data/doc/rant.1 +4 -0
  8. data/doc/rant.rdoc +38 -0
  9. data/doc/rant_vs_rake.rdoc +13 -0
  10. data/doc/rantfile.rdoc +93 -63
  11. data/doc/sys.rdoc +568 -0
  12. data/lib/rant/coregen.rb +43 -16
  13. data/lib/rant/import/command.rb +7 -4
  14. data/lib/rant/import/filelist/more.rb +57 -0
  15. data/lib/rant/import/metadata.rb +5 -1
  16. data/lib/rant/import/nodes/default.rb +3 -24
  17. data/lib/rant/import/signedfile.rb +1 -8
  18. data/lib/rant/import/sys/more.rb +2 -1
  19. data/lib/rant/import/var/booleans.rb +65 -0
  20. data/lib/rant/import/var/lists.rb +34 -0
  21. data/lib/rant/import/var/numbers.rb +116 -0
  22. data/lib/rant/import/var/strings.rb +43 -0
  23. data/lib/rant/import.rb +19 -3
  24. data/lib/rant/node.rb +39 -6
  25. data/lib/rant/rantlib.rb +44 -8
  26. data/lib/rant/rantsys.rb +22 -54
  27. data/lib/rant/rantvar.rb +89 -256
  28. data/misc/TODO +18 -0
  29. data/misc/devel-notes +26 -1
  30. data/test/action.rant +24 -0
  31. data/test/deprecated/test_0_5_4.rb +53 -0
  32. data/test/deprecated/test_0_6_0.rb +1 -1
  33. data/test/dryrun/Rantfile +10 -0
  34. data/test/dryrun/foo.c +8 -0
  35. data/test/dryrun/test_dryrun.rb +31 -0
  36. data/test/import/c/dependencies/Rantfile +1 -1
  37. data/test/import/command/Rantfile +1 -1
  38. data/test/import/sys/test_tgz.rb +22 -0
  39. data/test/subdirs2/root.rant +11 -1
  40. data/test/subdirs2/sub1/sub.rant +3 -0
  41. data/test/subdirs2/test_subdirs2.rb +19 -0
  42. data/test/test_action.rb +75 -0
  43. data/test/test_filelist.rb +13 -10
  44. data/test/test_rant_interface.rb +2 -2
  45. data/test/test_rule.rb +121 -3
  46. data/test/test_sys_methods.rb +558 -0
  47. data/test/test_var.rb +10 -0
  48. data/test/tutil.rb +81 -8
  49. metadata +19 -2
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: rant
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.4.8
7
- date: 2005-10-31 00:00:00 +01:00
6
+ version: 0.5.0
7
+ date: 2005-11-22 00:00:00 +01:00
8
8
  summary: Rant is a Ruby based build tool.
9
9
  require_paths:
10
10
  - lib
@@ -63,6 +63,7 @@ files:
63
63
  - lib/rant/c/include.rb
64
64
  - lib/rant/import/c
65
65
  - lib/rant/import/sys
66
+ - lib/rant/import/var
66
67
  - lib/rant/import/signedfile.rb
67
68
  - lib/rant/import/directedrule.rb
68
69
  - lib/rant/import/nodes
@@ -71,6 +72,7 @@ files:
71
72
  - lib/rant/import/truth.rb
72
73
  - lib/rant/import/rubydoc.rb
73
74
  - lib/rant/import/rubytest.rb
75
+ - lib/rant/import/filelist
74
76
  - lib/rant/import/rubypackage.rb
75
77
  - lib/rant/import/archive.rb
76
78
  - lib/rant/import/md5.rb
@@ -85,9 +87,14 @@ files:
85
87
  - lib/rant/import/sys/more.rb
86
88
  - lib/rant/import/sys/tgz.rb
87
89
  - lib/rant/import/sys/zip.rb
90
+ - lib/rant/import/var/lists.rb
91
+ - lib/rant/import/var/booleans.rb
92
+ - lib/rant/import/var/strings.rb
93
+ - lib/rant/import/var/numbers.rb
88
94
  - lib/rant/import/nodes/default.rb
89
95
  - lib/rant/import/nodes/signed.rb
90
96
  - lib/rant/import/win32/rubycmdwrapper.rb
97
+ - lib/rant/import/filelist/more.rb
91
98
  - lib/rant/import/package/tgz.rb
92
99
  - lib/rant/import/package/zip.rb
93
100
  - lib/rant/import/archive/tgz.rb
@@ -112,10 +119,13 @@ files:
112
119
  - test/test_sourcenode.rb
113
120
  - test/test_task.rb
114
121
  - test/project_rb1
122
+ - test/test_sys_methods.rb
115
123
  - test/rule.rf
124
+ - test/action.rant
116
125
  - test/subdirs
117
126
  - test/test_rantfile_api.rb
118
127
  - test/test_env.rb
128
+ - test/dryrun
119
129
  - test/toplevel.rf
120
130
  - test/test_source.rb
121
131
  - test/test_autosubfiletask.rb
@@ -127,6 +137,7 @@ files:
127
137
  - test/test_var.rb
128
138
  - test/tutil.rb
129
139
  - test/var.rf
140
+ - test/test_action.rb
130
141
  - test/test_dirtask.rb
131
142
  - test/project1
132
143
  - test/project2
@@ -157,6 +168,9 @@ files:
157
168
  - test/subdirs/sub2/sub
158
169
  - test/subdirs/sub2/rantfile
159
170
  - test/subdirs/sub2/sub/rantfile
171
+ - test/dryrun/foo.c
172
+ - test/dryrun/Rantfile
173
+ - test/dryrun/test_dryrun.rb
160
174
  - test/import/c
161
175
  - test/import/md5
162
176
  - test/import/sys
@@ -267,6 +281,7 @@ files:
267
281
  - test/subdirs2/sub00/sub.rant
268
282
  - test/deprecated/README
269
283
  - test/deprecated/test_0_5_2.rb
284
+ - test/deprecated/test_0_5_4.rb
270
285
  - test/deprecated/test_0_6_0.rb
271
286
  - doc/rantfile.rdoc
272
287
  - doc/md5.rdoc
@@ -276,6 +291,7 @@ files:
276
291
  - doc/rubyproject.rdoc
277
292
  - doc/c.rdoc
278
293
  - doc/homepage
294
+ - doc/sys.rdoc
279
295
  - doc/rant.rdoc
280
296
  - doc/jamis.rb
281
297
  - doc/rant_vs_rake.rdoc
@@ -372,6 +388,7 @@ extra_rdoc_files:
372
388
  - doc/subdirs.rdoc
373
389
  - doc/rubyproject.rdoc
374
390
  - doc/c.rdoc
391
+ - doc/sys.rdoc
375
392
  - doc/rant.rdoc
376
393
  - doc/rant_vs_rake.rdoc
377
394
  - doc/csharp.rdoc