jimweirich-rake 0.8.1.5

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 (94) hide show
  1. data/CHANGES +364 -0
  2. data/MIT-LICENSE +21 -0
  3. data/README +242 -0
  4. data/Rakefile +413 -0
  5. data/TODO +20 -0
  6. data/bin/rake +31 -0
  7. data/doc/example/Rakefile1 +38 -0
  8. data/doc/example/Rakefile2 +35 -0
  9. data/doc/example/a.c +6 -0
  10. data/doc/example/b.c +6 -0
  11. data/doc/example/main.c +11 -0
  12. data/doc/glossary.rdoc +51 -0
  13. data/doc/jamis.rb +591 -0
  14. data/doc/proto_rake.rdoc +127 -0
  15. data/doc/rake.1.gz +0 -0
  16. data/doc/rakefile.rdoc +411 -0
  17. data/doc/rational.rdoc +151 -0
  18. data/doc/release_notes/rake-0.4.14.rdoc +23 -0
  19. data/doc/release_notes/rake-0.4.15.rdoc +35 -0
  20. data/doc/release_notes/rake-0.5.0.rdoc +53 -0
  21. data/doc/release_notes/rake-0.5.3.rdoc +78 -0
  22. data/doc/release_notes/rake-0.5.4.rdoc +46 -0
  23. data/doc/release_notes/rake-0.6.0.rdoc +141 -0
  24. data/doc/release_notes/rake-0.7.0.rdoc +119 -0
  25. data/doc/release_notes/rake-0.7.1.rdoc +59 -0
  26. data/doc/release_notes/rake-0.7.2.rdoc +121 -0
  27. data/doc/release_notes/rake-0.7.3.rdoc +47 -0
  28. data/doc/release_notes/rake-0.8.0.rdoc +114 -0
  29. data/install.rb +88 -0
  30. data/lib/rake/classic_namespace.rb +8 -0
  31. data/lib/rake/clean.rb +33 -0
  32. data/lib/rake/contrib/compositepublisher.rb +24 -0
  33. data/lib/rake/contrib/ftptools.rb +153 -0
  34. data/lib/rake/contrib/publisher.rb +75 -0
  35. data/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  36. data/lib/rake/contrib/sshpublisher.rb +47 -0
  37. data/lib/rake/contrib/sys.rb +209 -0
  38. data/lib/rake/gempackagetask.rb +103 -0
  39. data/lib/rake/loaders/makefile.rb +40 -0
  40. data/lib/rake/packagetask.rb +184 -0
  41. data/lib/rake/rake_test_loader.rb +5 -0
  42. data/lib/rake/rdoctask.rb +147 -0
  43. data/lib/rake/ruby182_test_unit_fix.rb +23 -0
  44. data/lib/rake/runtest.rb +23 -0
  45. data/lib/rake/tasklib.rb +18 -0
  46. data/lib/rake/testtask.rb +161 -0
  47. data/lib/rake.rb +2312 -0
  48. data/test/capture_stdout.rb +26 -0
  49. data/test/contrib/testsys.rb +47 -0
  50. data/test/data/chains/Rakefile +15 -0
  51. data/test/data/default/Rakefile +19 -0
  52. data/test/data/dryrun/Rakefile +22 -0
  53. data/test/data/file_creation_task/Rakefile +30 -0
  54. data/test/data/imports/Rakefile +19 -0
  55. data/test/data/imports/deps.mf +1 -0
  56. data/test/data/multidesc/Rakefile +17 -0
  57. data/test/data/namespace/Rakefile +57 -0
  58. data/test/data/rakelib/test1.rb +3 -0
  59. data/test/data/rbext/rakefile.rb +3 -0
  60. data/test/data/sample.mf +9 -0
  61. data/test/data/statusreturn/Rakefile +8 -0
  62. data/test/data/unittest/Rakefile +1 -0
  63. data/test/filecreation.rb +32 -0
  64. data/test/functional.rb +15 -0
  65. data/test/rake_test_setup.rb +5 -0
  66. data/test/reqfile.rb +3 -0
  67. data/test/reqfile2.rb +3 -0
  68. data/test/session_functional.rb +267 -0
  69. data/test/shellcommand.rb +3 -0
  70. data/test/test_application.rb +504 -0
  71. data/test/test_clean.rb +14 -0
  72. data/test/test_definitions.rb +82 -0
  73. data/test/test_earlytime.rb +35 -0
  74. data/test/test_extension.rb +63 -0
  75. data/test/test_file_creation_task.rb +62 -0
  76. data/test/test_file_task.rb +139 -0
  77. data/test/test_filelist.rb +618 -0
  78. data/test/test_fileutils.rb +239 -0
  79. data/test/test_ftp.rb +59 -0
  80. data/test/test_invocation_chain.rb +75 -0
  81. data/test/test_makefile_loader.rb +23 -0
  82. data/test/test_multitask.rb +45 -0
  83. data/test/test_namespace.rb +36 -0
  84. data/test/test_package_task.rb +116 -0
  85. data/test/test_pathmap.rb +209 -0
  86. data/test/test_rake.rb +34 -0
  87. data/test/test_require.rb +33 -0
  88. data/test/test_rules.rb +347 -0
  89. data/test/test_task_arguments.rb +76 -0
  90. data/test/test_task_manager.rb +148 -0
  91. data/test/test_tasks.rb +372 -0
  92. data/test/test_test_task.rb +75 -0
  93. data/test/test_top_level_functions.rb +84 -0
  94. metadata +173 -0
@@ -0,0 +1,209 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ #--
4
+ # Copyright (c) 2003, 2004 Jim Weirich
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining
7
+ # a copy of this software and associated documentation files (the
8
+ # "Software"), to deal in the Software without restriction, including
9
+ # without limitation the rights to use, copy, modify, merge, publish,
10
+ # distribute, sublicense, and/or sell copies of the Software, and to
11
+ # permit persons to whom the Software is furnished to do so, subject to
12
+ # the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be
15
+ # included in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+ #++
25
+ #
26
+ begin
27
+ require 'ftools'
28
+ rescue LoadError
29
+ end
30
+ require 'rbconfig'
31
+
32
+ ######################################################################
33
+ # Sys provides a number of file manipulation tools for the convenience
34
+ # of writing Rakefiles. All commands in this module will announce
35
+ # their activity on standard output if the $verbose flag is set
36
+ # ($verbose = true is the default). You can control this by globally
37
+ # setting $verbose or by using the +verbose+ and +quiet+ methods.
38
+ #
39
+ # Sys has been deprecated in favor of the FileUtils module available
40
+ # in Ruby 1.8.
41
+ #
42
+ module Sys
43
+ RUBY = Config::CONFIG['ruby_install_name']
44
+
45
+ # Install all the files matching +wildcard+ into the +dest_dir+
46
+ # directory. The permission mode is set to +mode+.
47
+ def install(wildcard, dest_dir, mode)
48
+ Dir[wildcard].each do |fn|
49
+ File.install(fn, dest_dir, mode, $verbose)
50
+ end
51
+ end
52
+
53
+ # Run the system command +cmd+.
54
+ def run(cmd)
55
+ log cmd
56
+ system(cmd) or fail "Command Failed: [#{cmd}]"
57
+ end
58
+
59
+ # Run a Ruby interpreter with the given arguments.
60
+ def ruby(*args)
61
+ run "#{RUBY} #{args.join(' ')}"
62
+ end
63
+
64
+ # Copy a single file from +file_name+ to +dest_file+.
65
+ def copy(file_name, dest_file)
66
+ log "Copying file #{file_name} to #{dest_file}"
67
+ File.copy(file_name, dest_file)
68
+ end
69
+
70
+ # Copy all files matching +wildcard+ into the directory +dest_dir+.
71
+ def copy_files(wildcard, dest_dir)
72
+ for_matching_files(wildcard, dest_dir) { |from, to| copy(from, to) }
73
+ end
74
+
75
+ # Link +file_name+ to +dest_file+.
76
+ def link(file_name, dest_file)
77
+ log "Linking file #{file_name} to #{dest_file}"
78
+ File.link(file_name, dest_file)
79
+ end
80
+
81
+ # Link all files matching +wildcard+ into the directory +dest_dir+.
82
+ def link_files(wildcard, dest_dir)
83
+ for_matching_files(wildcard, dest_dir) { |from, to| link(from, to) }
84
+ end
85
+
86
+ # Symlink +file_name+ to +dest_file+.
87
+ def symlink(file_name, dest_file)
88
+ log "Symlinking file #{file_name} to #{dest_file}"
89
+ File.symlink(file_name, dest_file)
90
+ end
91
+
92
+ # Symlink all files matching +wildcard+ into the directory +dest_dir+.
93
+ def symlink_files(wildcard, dest_dir)
94
+ for_matching_files(wildcard, dest_dir) { |from, to| link(from, to) }
95
+ end
96
+
97
+ # Remove all files matching +wildcard+. If a matching file is a
98
+ # directory, it must be empty to be removed. used +delete_all+ to
99
+ # recursively delete directories.
100
+ def delete(*wildcards)
101
+ wildcards.each do |wildcard|
102
+ Dir[wildcard].each do |fn|
103
+ if File.directory?(fn)
104
+ log "Deleting directory #{fn}"
105
+ Dir.delete(fn)
106
+ else
107
+ log "Deleting file #{fn}"
108
+ File.delete(fn)
109
+ end
110
+ end
111
+ end
112
+ end
113
+
114
+ # Recursively delete all files and directories matching +wildcard+.
115
+ def delete_all(*wildcards)
116
+ wildcards.each do |wildcard|
117
+ Dir[wildcard].each do |fn|
118
+ next if ! File.exist?(fn)
119
+ if File.directory?(fn)
120
+ Dir["#{fn}/*"].each do |subfn|
121
+ next if subfn=='.' || subfn=='..'
122
+ delete_all(subfn)
123
+ end
124
+ log "Deleting directory #{fn}"
125
+ Dir.delete(fn)
126
+ else
127
+ log "Deleting file #{fn}"
128
+ File.delete(fn)
129
+ end
130
+ end
131
+ end
132
+ end
133
+
134
+ # Make the directories given in +dirs+.
135
+ def makedirs(*dirs)
136
+ dirs.each do |fn|
137
+ log "Making directory #{fn}"
138
+ File.makedirs(fn)
139
+ end
140
+ end
141
+
142
+ # Make +dir+ the current working directory for the duration of
143
+ # executing the given block.
144
+ def indir(dir)
145
+ olddir = Dir.pwd
146
+ Dir.chdir(dir)
147
+ yield
148
+ ensure
149
+ Dir.chdir(olddir)
150
+ end
151
+
152
+ # Split a file path into individual directory names.
153
+ #
154
+ # For example:
155
+ # split_all("a/b/c") => ['a', 'b', 'c']
156
+ def split_all(path)
157
+ head, tail = File.split(path)
158
+ return [tail] if head == '.' || tail == '/'
159
+ return [head, tail] if head == '/'
160
+ return split_all(head) + [tail]
161
+ end
162
+
163
+ # Write a message to standard out if $verbose is enabled.
164
+ def log(msg)
165
+ print " " if $trace && $verbose
166
+ puts msg if $verbose
167
+ end
168
+
169
+ # Perform a block with $verbose disabled.
170
+ def quiet(&block)
171
+ with_verbose(false, &block)
172
+ end
173
+
174
+ # Perform a block with $verbose enabled.
175
+ def verbose(&block)
176
+ with_verbose(true, &block)
177
+ end
178
+
179
+ # Perform a block with each file matching a set of wildcards.
180
+ def for_files(*wildcards)
181
+ wildcards.each do |wildcard|
182
+ Dir[wildcard].each do |fn|
183
+ yield(fn)
184
+ end
185
+ end
186
+ end
187
+
188
+ extend(self)
189
+
190
+ private # ----------------------------------------------------------
191
+
192
+ def for_matching_files(wildcard, dest_dir)
193
+ Dir[wildcard].each do |fn|
194
+ dest_file = File.join(dest_dir, fn)
195
+ parent = File.dirname(dest_file)
196
+ makedirs(parent) if ! File.directory?(parent)
197
+ yield(fn, dest_file)
198
+ end
199
+ end
200
+
201
+ def with_verbose(v)
202
+ oldverbose = $verbose
203
+ $verbose = v
204
+ yield
205
+ ensure
206
+ $verbose = oldverbose
207
+ end
208
+
209
+ end
@@ -0,0 +1,103 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Define a package task library to aid in the definition of GEM
4
+ # packages.
5
+
6
+ require 'rubygems'
7
+ require 'rake'
8
+ require 'rake/packagetask'
9
+ require 'rubygems/user_interaction'
10
+ require 'rubygems/builder'
11
+
12
+ begin
13
+ Gem.manage_gems
14
+ rescue NoMethodError => ex
15
+ # Using rubygems prior to 0.6.1
16
+ end
17
+
18
+ module Rake
19
+
20
+ # Create a package based upon a Gem spec. Gem packages, as well as
21
+ # zip files and tar/gzipped packages can be produced by this task.
22
+ #
23
+ # In addition to the Rake targets generated by PackageTask, a
24
+ # GemPackageTask will also generate the following tasks:
25
+ #
26
+ # [<b>"<em>package_dir</em>/<em>name</em>-<em>version</em>.gem"</b>]
27
+ # Create a Ruby GEM package with the given name and version.
28
+ #
29
+ # Example using a Ruby GEM spec:
30
+ #
31
+ # require 'rubygems'
32
+ #
33
+ # spec = Gem::Specification.new do |s|
34
+ # s.platform = Gem::Platform::RUBY
35
+ # s.summary = "Ruby based make-like utility."
36
+ # s.name = 'rake'
37
+ # s.version = PKG_VERSION
38
+ # s.requirements << 'none'
39
+ # s.require_path = 'lib'
40
+ # s.autorequire = 'rake'
41
+ # s.files = PKG_FILES
42
+ # s.description = <<EOF
43
+ # Rake is a Make-like program implemented in Ruby. Tasks
44
+ # and dependencies are specified in standard Ruby syntax.
45
+ # EOF
46
+ # end
47
+ #
48
+ # Rake::GemPackageTask.new(spec) do |pkg|
49
+ # pkg.need_zip = true
50
+ # pkg.need_tar = true
51
+ # end
52
+ #
53
+ class GemPackageTask < PackageTask
54
+ # Ruby GEM spec containing the metadata for this package. The
55
+ # name, version and package_files are automatically determined
56
+ # from the GEM spec and don't need to be explicitly provided.
57
+ attr_accessor :gem_spec
58
+
59
+ # Create a GEM Package task library. Automatically define the gem
60
+ # if a block is given. If no block is supplied, then +define+
61
+ # needs to be called to define the task.
62
+ def initialize(gem_spec)
63
+ init(gem_spec)
64
+ yield self if block_given?
65
+ define if block_given?
66
+ end
67
+
68
+ # Initialization tasks without the "yield self" or define
69
+ # operations.
70
+ def init(gem)
71
+ super(gem.name, gem.version)
72
+ @gem_spec = gem
73
+ @package_files += gem_spec.files if gem_spec.files
74
+ end
75
+
76
+ # Create the Rake tasks and actions specified by this
77
+ # GemPackageTask. (+define+ is automatically called if a block is
78
+ # given to +new+).
79
+ def define
80
+ super
81
+ task :package => [:gem]
82
+ desc "Build the gem file #{gem_file}"
83
+ task :gem => ["#{package_dir}/#{gem_file}"]
84
+ file "#{package_dir}/#{gem_file}" => [package_dir] + @gem_spec.files do
85
+ when_writing("Creating GEM") {
86
+ Gem::Builder.new(gem_spec).build
87
+ verbose(true) {
88
+ mv gem_file, "#{package_dir}/#{gem_file}"
89
+ }
90
+ }
91
+ end
92
+ end
93
+
94
+ def gem_file
95
+ if @gem_spec.platform == Gem::Platform::RUBY
96
+ "#{package_name}.gem"
97
+ else
98
+ "#{package_name}-#{@gem_spec.platform}.gem"
99
+ end
100
+ end
101
+
102
+ end
103
+ end
@@ -0,0 +1,40 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ module Rake
4
+
5
+ # Makefile loader to be used with the import file loader.
6
+ class MakefileLoader
7
+
8
+ # Load the makefile dependencies in +fn+.
9
+ def load(fn)
10
+ buffer = ''
11
+ open(fn) do |mf|
12
+ mf.each do |line|
13
+ next if line =~ /^\s*#/
14
+ buffer << line
15
+ if buffer =~ /\\$/
16
+ buffer.sub!(/\\\n/, ' ')
17
+ state = :append
18
+ else
19
+ process_line(buffer)
20
+ buffer = ''
21
+ end
22
+ end
23
+ end
24
+ process_line(buffer) if buffer != ''
25
+ end
26
+
27
+ private
28
+
29
+ # Process one logical line of makefile data.
30
+ def process_line(line)
31
+ file_task, args = line.split(':')
32
+ return if args.nil?
33
+ dependents = args.split
34
+ file file_task => dependents
35
+ end
36
+ end
37
+
38
+ # Install the handler
39
+ Rake.application.add_loader('mf', MakefileLoader.new)
40
+ end
@@ -0,0 +1,184 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Define a package task libarary to aid in the definition of
4
+ # redistributable package files.
5
+
6
+ require 'rake'
7
+ require 'rake/tasklib'
8
+
9
+ module Rake
10
+
11
+ # Create a packaging task that will package the project into
12
+ # distributable files (e.g zip archive or tar files).
13
+ #
14
+ # The PackageTask will create the following targets:
15
+ #
16
+ # [<b>:package</b>]
17
+ # Create all the requested package files.
18
+ #
19
+ # [<b>:clobber_package</b>]
20
+ # Delete all the package files. This target is automatically
21
+ # added to the main clobber target.
22
+ #
23
+ # [<b>:repackage</b>]
24
+ # Rebuild the package files from scratch, even if they are not out
25
+ # of date.
26
+ #
27
+ # [<b>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tgz"</b>]
28
+ # Create a gzipped tar package (if <em>need_tar</em> is true).
29
+ #
30
+ # [<b>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tar.gz"</b>]
31
+ # Create a gzipped tar package (if <em>need_tar_gz</em> is true).
32
+ #
33
+ # [<b>"<em>package_dir</em>/<em>name</em>-<em>version</em>.tar.bz2"</b>]
34
+ # Create a bzip2'd tar package (if <em>need_tar_bz2</em> is true).
35
+ #
36
+ # [<b>"<em>package_dir</em>/<em>name</em>-<em>version</em>.zip"</b>]
37
+ # Create a zip package archive (if <em>need_zip</em> is true).
38
+ #
39
+ # Example:
40
+ #
41
+ # Rake::PackageTask.new("rake", "1.2.3") do |p|
42
+ # p.need_tar = true
43
+ # p.package_files.include("lib/**/*.rb")
44
+ # end
45
+ #
46
+ class PackageTask < TaskLib
47
+ # Name of the package (from the GEM Spec).
48
+ attr_accessor :name
49
+
50
+ # Version of the package (e.g. '1.3.2').
51
+ attr_accessor :version
52
+
53
+ # Directory used to store the package files (default is 'pkg').
54
+ attr_accessor :package_dir
55
+
56
+ # True if a gzipped tar file (tgz) should be produced (default is false).
57
+ attr_accessor :need_tar
58
+
59
+ # True if a gzipped tar file (tar.gz) should be produced (default is false).
60
+ attr_accessor :need_tar_gz
61
+
62
+ # True if a bzip2'd tar file (tar.bz2) should be produced (default is false).
63
+ attr_accessor :need_tar_bz2
64
+
65
+ # True if a zip file should be produced (default is false)
66
+ attr_accessor :need_zip
67
+
68
+ # List of files to be included in the package.
69
+ attr_accessor :package_files
70
+
71
+ # Tar command for gzipped or bzip2ed archives. The default is 'tar'.
72
+ attr_accessor :tar_command
73
+
74
+ # Zip command for zipped archives. The default is 'zip'.
75
+ attr_accessor :zip_command
76
+
77
+ # Create a Package Task with the given name and version.
78
+ def initialize(name=nil, version=nil)
79
+ init(name, version)
80
+ yield self if block_given?
81
+ define unless name.nil?
82
+ end
83
+
84
+ # Initialization that bypasses the "yield self" and "define" step.
85
+ def init(name, version)
86
+ @name = name
87
+ @version = version
88
+ @package_files = Rake::FileList.new
89
+ @package_dir = 'pkg'
90
+ @need_tar = false
91
+ @need_tar_gz = false
92
+ @need_tar_bz2 = false
93
+ @need_zip = false
94
+ @tar_command = 'tar'
95
+ @zip_command = 'zip'
96
+ end
97
+
98
+ # Create the tasks defined by this task library.
99
+ def define
100
+ fail "Version required (or :noversion)" if @version.nil?
101
+ @version = nil if :noversion == @version
102
+
103
+ desc "Build all the packages"
104
+ task :package
105
+
106
+ desc "Force a rebuild of the package files"
107
+ task :repackage => [:clobber_package, :package]
108
+
109
+ desc "Remove package products"
110
+ task :clobber_package do
111
+ rm_r package_dir rescue nil
112
+ end
113
+
114
+ task :clobber => [:clobber_package]
115
+
116
+ [
117
+ [need_tar, tgz_file, "z"],
118
+ [need_tar_gz, tar_gz_file, "z"],
119
+ [need_tar_bz2, tar_bz2_file, "j"]
120
+ ].each do |(need, file, flag)|
121
+ if need
122
+ task :package => ["#{package_dir}/#{file}"]
123
+ file "#{package_dir}/#{file}" => [package_dir_path] + package_files do
124
+ chdir(package_dir) do
125
+ sh %{#{@tar_command} #{flag}cvf #{file} #{package_name}}
126
+ end
127
+ end
128
+ end
129
+ end
130
+
131
+ if need_zip
132
+ task :package => ["#{package_dir}/#{zip_file}"]
133
+ file "#{package_dir}/#{zip_file}" => [package_dir_path] + package_files do
134
+ chdir(package_dir) do
135
+ sh %{#{@zip_command} -r #{zip_file} #{package_name}}
136
+ end
137
+ end
138
+ end
139
+
140
+ directory package_dir
141
+
142
+ file package_dir_path => @package_files do
143
+ mkdir_p package_dir rescue nil
144
+ @package_files.each do |fn|
145
+ f = File.join(package_dir_path, fn)
146
+ fdir = File.dirname(f)
147
+ mkdir_p(fdir) if !File.exist?(fdir)
148
+ if File.directory?(fn)
149
+ mkdir_p(f)
150
+ else
151
+ rm_f f
152
+ safe_ln(fn, f)
153
+ end
154
+ end
155
+ end
156
+ self
157
+ end
158
+
159
+ def package_name
160
+ @version ? "#{@name}-#{@version}" : @name
161
+ end
162
+
163
+ def package_dir_path
164
+ "#{package_dir}/#{package_name}"
165
+ end
166
+
167
+ def tgz_file
168
+ "#{package_name}.tgz"
169
+ end
170
+
171
+ def tar_gz_file
172
+ "#{package_name}.tar.gz"
173
+ end
174
+
175
+ def tar_bz2_file
176
+ "#{package_name}.tar.bz2"
177
+ end
178
+
179
+ def zip_file
180
+ "#{package_name}.zip"
181
+ end
182
+ end
183
+
184
+ end
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Load the test files from the command line.
4
+
5
+ ARGV.each { |f| load f unless f =~ /^-/ }
@@ -0,0 +1,147 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'rake'
4
+ require 'rake/tasklib'
5
+
6
+ module Rake
7
+
8
+ # Create a documentation task that will generate the RDoc files for
9
+ # a project.
10
+ #
11
+ # The RDocTask will create the following targets:
12
+ #
13
+ # [<b><em>rdoc</em></b>]
14
+ # Main task for this RDOC task.
15
+ #
16
+ # [<b>:clobber_<em>rdoc</em></b>]
17
+ # Delete all the rdoc files. This target is automatically
18
+ # added to the main clobber target.
19
+ #
20
+ # [<b>:re<em>rdoc</em></b>]
21
+ # Rebuild the rdoc files from scratch, even if they are not out
22
+ # of date.
23
+ #
24
+ # Simple Example:
25
+ #
26
+ # Rake::RDocTask.new do |rd|
27
+ # rd.main = "README.rdoc"
28
+ # rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
29
+ # end
30
+ #
31
+ # You may wish to give the task a different name, such as if you are
32
+ # generating two sets of documentation. For instance, if you want to have a
33
+ # development set of documentation including private methods:
34
+ #
35
+ # Rake::RDocTask.new(:rdoc_dev) do |rd|
36
+ # rd.main = "README.doc"
37
+ # rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
38
+ # rd.options << "--all"
39
+ # end
40
+ #
41
+ # The tasks would then be named :<em>rdoc_dev</em>, :clobber_<em>rdoc_dev</em>, and
42
+ # :re<em>rdoc_dev</em>.
43
+ #
44
+ class RDocTask < TaskLib
45
+ # Name of the main, top level task. (default is :rdoc)
46
+ attr_accessor :name
47
+
48
+ # Name of directory to receive the html output files. (default is "html")
49
+ attr_accessor :rdoc_dir
50
+
51
+ # Title of RDoc documentation. (default is none)
52
+ attr_accessor :title
53
+
54
+ # Name of file to be used as the main, top level file of the
55
+ # RDoc. (default is none)
56
+ attr_accessor :main
57
+
58
+ # Name of template to be used by rdoc. (default is 'html')
59
+ attr_accessor :template
60
+
61
+ # List of files to be included in the rdoc generation. (default is [])
62
+ attr_accessor :rdoc_files
63
+
64
+ # List of options to be passed rdoc. (default is [])
65
+ attr_accessor :options
66
+
67
+ # Run the rdoc process as an external shell (default is false)
68
+ attr_accessor :external
69
+
70
+ # Create an RDoc task named <em>rdoc</em>. Default task name is +rdoc+.
71
+ def initialize(name=:rdoc) # :yield: self
72
+ @name = name
73
+ @rdoc_files = Rake::FileList.new
74
+ @rdoc_dir = 'html'
75
+ @main = nil
76
+ @title = nil
77
+ @template = 'html'
78
+ @external = false
79
+ @options = []
80
+ yield self if block_given?
81
+ define
82
+ end
83
+
84
+ # Create the tasks defined by this task lib.
85
+ def define
86
+ if name.to_s != "rdoc"
87
+ desc "Build the RDOC HTML Files"
88
+ end
89
+
90
+ desc "Build the #{name} HTML Files"
91
+ task name
92
+
93
+ desc "Force a rebuild of the RDOC files"
94
+ task paste("re", name) => [paste("clobber_", name), name]
95
+
96
+ desc "Remove rdoc products"
97
+ task paste("clobber_", name) do
98
+ rm_r rdoc_dir rescue nil
99
+ end
100
+
101
+ task :clobber => [paste("clobber_", name)]
102
+
103
+ directory @rdoc_dir
104
+ task name => [rdoc_target]
105
+ file rdoc_target => @rdoc_files + [$rakefile] do
106
+ rm_r @rdoc_dir rescue nil
107
+ args = option_list + @rdoc_files
108
+ if @external
109
+ argstring = args.join(' ')
110
+ sh %{ruby -Ivendor vender/rd #{argstring}}
111
+ else
112
+ require 'rdoc/rdoc'
113
+ RDoc::RDoc.new.document(args)
114
+ end
115
+ end
116
+ self
117
+ end
118
+
119
+ def option_list
120
+ result = @options.dup
121
+ result << "-o" << @rdoc_dir
122
+ result << "--main" << quote(main) if main
123
+ result << "--title" << quote(title) if title
124
+ result << "-T" << quote(template) if template
125
+ result
126
+ end
127
+
128
+ def quote(str)
129
+ if @external
130
+ "'#{str}'"
131
+ else
132
+ str
133
+ end
134
+ end
135
+
136
+ def option_string
137
+ option_list.join(' ')
138
+ end
139
+
140
+ private
141
+
142
+ def rdoc_target
143
+ "#{rdoc_dir}/index.html"
144
+ end
145
+
146
+ end
147
+ end