mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* doc/rake/*: Removed stale Rake static files
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39181 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3952de50bf
commit
20c05cdef0
18 changed files with 4 additions and 2030 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sun Feb 10 12:00:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
||||||
|
|
||||||
|
* doc/rake/*: Removed stale Rake static files
|
||||||
|
|
||||||
Sun Feb 10 09:10:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
Sun Feb 10 09:10:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
||||||
|
|
||||||
* lib/pp.rb, lib/prettyprint.rb: Documentation for PP and PrettyPrint
|
* lib/pp.rb, lib/prettyprint.rb: Documentation for PP and PrettyPrint
|
||||||
|
|
440
doc/rake/CHANGES
440
doc/rake/CHANGES
|
@ -1,440 +0,0 @@
|
||||||
|
|
||||||
= Rake Changelog
|
|
||||||
|
|
||||||
== Version 0.8.7
|
|
||||||
|
|
||||||
* Fixed EXEEXT for JRuby on windows.
|
|
||||||
|
|
||||||
== Version 0.8.6
|
|
||||||
|
|
||||||
* Minor fixes to the RDoc generation (removed dependency on darkfish
|
|
||||||
and removed inline source option).
|
|
||||||
|
|
||||||
== Version 0.8.5
|
|
||||||
|
|
||||||
* Better support for the system command on Windows.
|
|
||||||
|
|
||||||
== Version 0.8.4
|
|
||||||
|
|
||||||
* Preserve case when locating rakefiles (patch from James
|
|
||||||
M. Lawrence/quix)
|
|
||||||
|
|
||||||
* Better support for windows paths in the test task (patch from Simon
|
|
||||||
Chiang/bahuvrihi)
|
|
||||||
|
|
||||||
* Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
|
|
||||||
APPDATA, USERPROFILE (patch from Luis Lavena)
|
|
||||||
|
|
||||||
* MingGW is now recognized as a windows platform. (patch from Luis
|
|
||||||
Lavena)
|
|
||||||
|
|
||||||
* Numerous fixes to the windows test suite (patch from Luis Lavena).
|
|
||||||
|
|
||||||
* Improved Rakefile case insensitivity testing (patch from Luis
|
|
||||||
Lavena).
|
|
||||||
|
|
||||||
* Fixed stray ARGV option problem that was interfering with
|
|
||||||
Test::Unit::Runner.
|
|
||||||
|
|
||||||
* Fixed default verbose mode (was accidently changed to false).
|
|
||||||
|
|
||||||
* Removed reference to manage_gem to fix the warning produced by the
|
|
||||||
gem package task.
|
|
||||||
|
|
||||||
== Version 0.8.3
|
|
||||||
|
|
||||||
* Enhanced the system directory detection in windows. We now check
|
|
||||||
HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
|
|
||||||
supplied by James Tucker). Rake no long aborts if it can't find the
|
|
||||||
directory.
|
|
||||||
|
|
||||||
* Added fix to handle ruby installations in directories with spaces in
|
|
||||||
their name.
|
|
||||||
|
|
||||||
== Version 0.8.2
|
|
||||||
|
|
||||||
* Fixed bug in package task so that it will include the subdir
|
|
||||||
directory in the package for testing. (Bug found by Adam Majer)
|
|
||||||
|
|
||||||
* Added ENV var to rakefile to prevent OS X from including extended
|
|
||||||
attribute junk in a tar file. (Bug found by Adam Majer)
|
|
||||||
|
|
||||||
* Fixed filename dependency order bug in test_inspect_pending and
|
|
||||||
test_to_s_pending. (Bug found by Adam Majer)
|
|
||||||
|
|
||||||
* Fixed check for file utils options to make them immune to the
|
|
||||||
symbol/string differences. (Patch supplied by Edwin Pratomo)
|
|
||||||
|
|
||||||
* Fixed bug with rules involving multiple source (Patch supplied by
|
|
||||||
Emanuel Indermühle)
|
|
||||||
|
|
||||||
* Switched from getoptlong to optparse (patches supplied by Edwin
|
|
||||||
Pratomo)
|
|
||||||
|
|
||||||
* The -T option will now attempt to dynamically sense the size of the
|
|
||||||
terminal. RAKE_COLUMNS will override any dynamic sensing.
|
|
||||||
|
|
||||||
* FileList#clone and FileList#dup have better sematics w.r.t. taint
|
|
||||||
and freeze.
|
|
||||||
|
|
||||||
* Added ability clear prerequisites, and/or actions from an existing
|
|
||||||
task.
|
|
||||||
|
|
||||||
* Added the ability to reenable a task to be invoked a second time.
|
|
||||||
|
|
||||||
* Changed RDoc test task to have no default template. This makes it
|
|
||||||
easier for the tempate to pick up the template from the environment.
|
|
||||||
|
|
||||||
* Changed from using Mutex to Monitor. Evidently Mutex causes thread
|
|
||||||
join errors when Ruby is compiled with -disable-pthreads. (Patch
|
|
||||||
supplied by Ittay Dror)
|
|
||||||
|
|
||||||
* Fixed bug in makefile parser that had problems with extra spaces in
|
|
||||||
file task names. (Patch supplied by Ittay Dror)
|
|
||||||
|
|
||||||
* Added a performance patch for reading large makefile dependency
|
|
||||||
files. (Patch supplied by Ittay Dror)
|
|
||||||
|
|
||||||
* Default values for task arguments can easily be specified with the
|
|
||||||
:with_defaults method. (Idea for default argument merging supplied
|
|
||||||
by (Adam Q. Salter)
|
|
||||||
|
|
||||||
* The -T output will only self-truncate if the output is a tty.
|
|
||||||
However, if RAKE_COLUMNS is explicitly set, it will be honored in
|
|
||||||
any case. (Patch provided by Gavin Stark).
|
|
||||||
|
|
||||||
* Numerous fixes for running under windows. A big thanks to Bheeshmar
|
|
||||||
Redheendran for spending a good part of the afternoon at the
|
|
||||||
Lonestar Ruby Conference to help me work out these issues.
|
|
||||||
|
|
||||||
== Version 0.8.1
|
|
||||||
|
|
||||||
* Removed requires on parsedate.rb (in Ftptools)
|
|
||||||
* Removed ftools from rake.rb. Made it options in sys.rb
|
|
||||||
|
|
||||||
== Version 0.8.0
|
|
||||||
|
|
||||||
* Added task parameters (e.g. "rake build[version7]")
|
|
||||||
* Made task parameters passable to prerequisites.
|
|
||||||
* Comments are limited to 80 columns or so (suggested by Jamis Buck).
|
|
||||||
* Added -D to display full comments (suggested by Jamis Buck).
|
|
||||||
* The rake program will set the status value used in any explicit
|
|
||||||
exit(n) calls. (patch provided by Stephen Touset)
|
|
||||||
* Fixed error in functional tests that were not including session (and
|
|
||||||
silently skipping the functionl tests.
|
|
||||||
* Removed --usage and make -h the same as -H.
|
|
||||||
* Make a prettier inspect for tasks.
|
|
||||||
|
|
||||||
== Version 0.7.3
|
|
||||||
|
|
||||||
* Added existing and existing! methods to FileList
|
|
||||||
* FileLists now claim to be Arrays (via is_a?) to get better support
|
|
||||||
from the FileUtil module.
|
|
||||||
* Added init and top_level for custom rake applications.
|
|
||||||
|
|
||||||
== Version 0.7.2
|
|
||||||
|
|
||||||
* Error messages are now send to stderr rather than stdout (from
|
|
||||||
Payton Quackenbush).
|
|
||||||
* Better error handling on invalid command line arguments (from Payton
|
|
||||||
Quackenbush).
|
|
||||||
* Added rcov task and updated unit testing for better code coverage.
|
|
||||||
* Fixed some bugs where the application object was going to the global
|
|
||||||
appliation instead of using its own data.
|
|
||||||
* Added square and curly bracket patterns to FileList#include (Tilman
|
|
||||||
Sauerbeck).
|
|
||||||
* Added plain filename support to rule dependents (suggested by Nobu
|
|
||||||
Nakada).
|
|
||||||
* Added pathmap support to rule dependents.
|
|
||||||
* Added a 'tasks' method to a namespace to get a list of tasks
|
|
||||||
associated with the namespace.
|
|
||||||
* Fixed the method name leak from FileUtils (bug found by Glenn
|
|
||||||
Vanderburg).
|
|
||||||
* Added rake_extension to handle detection of extension collisions.
|
|
||||||
* Added test for noop, bad_option and verbose flags to sh command.
|
|
||||||
* Removed dependency on internal fu_xxx functions from FileUtils.
|
|
||||||
* Added a 'shame' task to the Rakefile.
|
|
||||||
* Added tar_command and zip_command options to the Package task.
|
|
||||||
* Added a description to the gem task in GemPackageTask.
|
|
||||||
* Fixed a bug when rules have multiple prerequisites (patch by Joel
|
|
||||||
VanderWerf)
|
|
||||||
* Added a protected 'require "rubygems"' to test/test_application to
|
|
||||||
unbreak cruisecontrol.rb.
|
|
||||||
* Added the handful of RakeFileUtils to the private method as well.
|
|
||||||
* Added block based exclusion.
|
|
||||||
* The clean task will no longer delete 'core' if it is a directory.
|
|
||||||
* Removed rake_dup. Now we just simply rescue a bad dup.
|
|
||||||
* Refactored the FileList reject logic to remove duplication.
|
|
||||||
* Removed if __FILE__ at the end of the rake.rb file.
|
|
||||||
|
|
||||||
== Version 0.7.1
|
|
||||||
|
|
||||||
* Added optional filter parameter to the --tasks command line option.
|
|
||||||
* Added flatten to allow rule transform procs to return lists of
|
|
||||||
prereqs (Joel VanderWerf provided patch).
|
|
||||||
* Added pathmap to String and FileList.
|
|
||||||
* The -r option will now load .rake files (but a straight require
|
|
||||||
doesn't yet). NOTE: This is experimental ... it may be
|
|
||||||
discontinued.
|
|
||||||
* The -f option without a value will disable the search for a
|
|
||||||
Rakefile. The assumption is that the -r files are adequate.
|
|
||||||
* Fixed the safe_ln function to fall back to cp in more error
|
|
||||||
scenarios.
|
|
||||||
|
|
||||||
== Version 0.7.0
|
|
||||||
|
|
||||||
* Added Rake.original_dir to return the original starting directory of
|
|
||||||
the rake application.
|
|
||||||
* Added safe_ln support for openAFS (from Ludvig Omholt).
|
|
||||||
* Added --trace reminder on short exception messages (David Heinemeier
|
|
||||||
Hansson suggestion).
|
|
||||||
* Added multitask declaration that executes prerequisites in
|
|
||||||
parallel. (Doug Young providied an initial implementation).
|
|
||||||
* Fixed missing_const hack to be compatible with Rails. (Jamis Buck
|
|
||||||
supplied test case).
|
|
||||||
* Made the RDoc task default to internal (in-process) RDoc formatting.
|
|
||||||
The old behavior is still available by setting the +external+ flag
|
|
||||||
to true.
|
|
||||||
* Rakefiles are now loaded with the expanded path to prevent
|
|
||||||
accidental polution from the Ruby load path.
|
|
||||||
* The +namespace+ command now returns a NameSpace object that can be
|
|
||||||
used to lookup tasks defined in that namespace. This allows for
|
|
||||||
better anonymous namespace behavior.
|
|
||||||
* Task objects my now be used in prerequisite lists directly.
|
|
||||||
|
|
||||||
== Version 0.6.1
|
|
||||||
|
|
||||||
* Rebuilt 0.6.0 gem without signing.
|
|
||||||
|
|
||||||
== Version 0.6.0
|
|
||||||
|
|
||||||
* Fixed file creation bug in the unit tests (caused infinite loop on
|
|
||||||
windows).
|
|
||||||
* Fixed bug where session based functional tests were run under
|
|
||||||
windows.
|
|
||||||
* Fixed bug in directory tasks so that updating a directory will not
|
|
||||||
retrigger file tasks depending on the directory (see
|
|
||||||
FileCreationTask and EarlyTime).
|
|
||||||
* Added egrep to FileList
|
|
||||||
* ruby command now runs same ruby version as rake.
|
|
||||||
* Added investigation to task object. (suggested by Martin Fowler)
|
|
||||||
* Added ruby_opts to the test task to allow arbitrary ruby options to
|
|
||||||
be passed to the test script. (Greg Fast)
|
|
||||||
* Fixed the test loader to ignore options. (Greg Fast)
|
|
||||||
* Moved Task, FileTask, FileCreationTask and RakeApp into the Rake
|
|
||||||
module namespace. Old style namespace behavior can be invoked via
|
|
||||||
the --classic-namespace option. (requested by Kelly Felkins).
|
|
||||||
* GemTask is now sensitive to the gem platform (Masao Mutoh).
|
|
||||||
* A non-existing file prerequisite will no longer cause an exception
|
|
||||||
(Philipp Neubeck).
|
|
||||||
* Multiple prerequisites on Rake rules now allowed (initial patch
|
|
||||||
supplied by Stuart Jansen).
|
|
||||||
|
|
||||||
== Version 0.5.4
|
|
||||||
|
|
||||||
* Added double quotes to the test runner.
|
|
||||||
* Added .svn to default ignore list.
|
|
||||||
* Updated FileList#include to support nested arrays and filelists.
|
|
||||||
|
|
||||||
== Version 0.5.3
|
|
||||||
|
|
||||||
* Added support for importing Rakefile and other dependencies.
|
|
||||||
* Fixed bug so that now rules can chain off of existing tasks as well
|
|
||||||
as existing files.
|
|
||||||
* Fixed verbose flag bug in the testing task. Shortened some failure
|
|
||||||
messages.
|
|
||||||
* Make FileUtils methods private at the top level module to avoid
|
|
||||||
accidental method leaking into other objects.
|
|
||||||
* Added test loader option to test task. "testrb" is no longer the
|
|
||||||
default test loader. It is now eating syntax errors that should
|
|
||||||
halt the unit tests.
|
|
||||||
* Revamped FileList so that it works more like and array (addressed
|
|
||||||
flatten bug). Added many tests around file list.
|
|
||||||
* Added +ext+ method to both String and FileList.
|
|
||||||
|
|
||||||
== Version 0.5.0
|
|
||||||
|
|
||||||
* Fixed documentation that was lacking the Rake module name (Tilman
|
|
||||||
Sauerbeck).
|
|
||||||
* Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
|
|
||||||
* Recursive rules are now supported (Tilman Sauerbeck).
|
|
||||||
* Added warning option for the Test Task (requested by Eric Hodel).
|
|
||||||
* The jamis rdoc template is only used if it exists.
|
|
||||||
* Added fix for Ruby 1.8.2 test/unit and rails problem.
|
|
||||||
* Added contributed rake man file (Jani Monoses).
|
|
||||||
* Added Brian Candler's fix for problems in --trace and --dry-run
|
|
||||||
mode.
|
|
||||||
|
|
||||||
== Version 0.4.15
|
|
||||||
|
|
||||||
* Fixed a bug that prevented the TESTOPTS flag from working with the
|
|
||||||
revised for 1.8.2 test task.
|
|
||||||
* Updated the docs on --trace to indicate that it also enables a full
|
|
||||||
backtrace on errors.
|
|
||||||
|
|
||||||
== Version 0.4.14
|
|
||||||
|
|
||||||
* Modified the TestTask to workaround the Ruby 1.8.2 change in
|
|
||||||
autoexecuting unit tests.
|
|
||||||
|
|
||||||
== Version 0.4.13
|
|
||||||
|
|
||||||
* Fixed the dry-run flag so it is operating again.
|
|
||||||
* Multiple arguments to sh and ruby commands will not be interpreted
|
|
||||||
by the shell (patch provided by Jonathan Paisley).
|
|
||||||
|
|
||||||
== Version 0.4.12
|
|
||||||
|
|
||||||
* Added --silent (-s) to suppress the (in directory) rake message.
|
|
||||||
|
|
||||||
== Version 0.4.11
|
|
||||||
|
|
||||||
* Changed the "don't know how to rake" message (finally)
|
|
||||||
* Changes references to a literal "Rakefile" to reference the global
|
|
||||||
variable $rakefile (which contains the actual name of the rakefile).
|
|
||||||
|
|
||||||
== Version 0.4.10
|
|
||||||
|
|
||||||
* Added block support to the "sh" command, allowing users to take
|
|
||||||
special actions on the result of the system call. E.g.
|
|
||||||
|
|
||||||
sh "shell_command" do |ok, res|
|
|
||||||
puts "Program returned #{res.exitstatus}" if ! ok
|
|
||||||
end
|
|
||||||
|
|
||||||
== Version 0.4.9
|
|
||||||
|
|
||||||
* Switched to Jamis Buck's RDoc template.
|
|
||||||
* Removed autorequire from Rake's gem spec. This prevents the Rake
|
|
||||||
libraries from loading while using rails.
|
|
||||||
|
|
||||||
== Version 0.4.8
|
|
||||||
|
|
||||||
* Added support for .rb versions of Rakefile.
|
|
||||||
* Removed \\\n's from test task.
|
|
||||||
* Fixed Ruby 1.9 compatibility issue with FileList.
|
|
||||||
|
|
||||||
== Version 0.4.7
|
|
||||||
|
|
||||||
* Fixed problem in FileList that caused Ruby 1.9 to go into infinite
|
|
||||||
recursion. Since to_a was removed from Object, it does not need to
|
|
||||||
added back into the list of methods to rewrite in FileList. (Thanks
|
|
||||||
to Kent Sibilev for pointing this out).
|
|
||||||
|
|
||||||
== Version 0.4.6
|
|
||||||
* Removed test version of ln in FileUtils that prevented safe_ln from
|
|
||||||
using ln.
|
|
||||||
|
|
||||||
== Version 0.4.5
|
|
||||||
* Upgraded comments in TestTask.
|
|
||||||
* FileList to_s and inspect now automatically resolve pending changes.
|
|
||||||
* FileList#exclude properly returns the FileList.
|
|
||||||
|
|
||||||
== Version 0.4.4
|
|
||||||
* Fixed initialization problem with @comment.
|
|
||||||
* Now using multi -r technique in TestTask. Switch Rakefile back to
|
|
||||||
using the built-in test task macros because the rake runtime is no
|
|
||||||
longer needed.
|
|
||||||
* Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
|
|
||||||
macros.
|
|
||||||
* Allow a +test_files+ attribute in test tasks. This allows more
|
|
||||||
flexibility in specifying test files.
|
|
||||||
|
|
||||||
== Version 0.4.3
|
|
||||||
* Fixed Comment leakage.
|
|
||||||
|
|
||||||
== Version 0.4.2
|
|
||||||
* Added safe_ln that falls back to a copy if a file link is not supported.
|
|
||||||
* Package builder now uses safe_ln.
|
|
||||||
|
|
||||||
== Version 0.4.1
|
|
||||||
* Task comments are now additive, combined with "/".
|
|
||||||
* Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
|
|
||||||
|
|
||||||
== Version 0.4.0
|
|
||||||
* FileList now uses deferred loading. The file system is not searched
|
|
||||||
until the first call that needs the file names.
|
|
||||||
* VAR=VALUE options are now accepted on the command line and are
|
|
||||||
treated like environment variables. The values may be tested in a
|
|
||||||
Rakefile by referencing ENV['VAR'].
|
|
||||||
* File.mtime is now used (instead of File.new().mtime).
|
|
||||||
|
|
||||||
== Version 0.3.2.x
|
|
||||||
|
|
||||||
* Removed some hidden dependencies on rubygems. Tests now will test
|
|
||||||
gems only if they are installed.
|
|
||||||
* Removed Sys from some example files. I believe that is that last
|
|
||||||
reference to Sys outside of the contrib area.
|
|
||||||
* Updated all copyright notices to include 2004.
|
|
||||||
|
|
||||||
== Version 0.3.2
|
|
||||||
|
|
||||||
* GEM Installation now works with the application stub.
|
|
||||||
|
|
||||||
== Version 0.3.1
|
|
||||||
|
|
||||||
* FileLists now automatically ignore CVS, .bak, !
|
|
||||||
* GEM Installation now works.
|
|
||||||
|
|
||||||
== Version 0.3.0
|
|
||||||
|
|
||||||
Promoted 0.2.10.
|
|
||||||
|
|
||||||
== Version 0.2.10
|
|
||||||
General
|
|
||||||
|
|
||||||
* Added title to Rake's rdocs
|
|
||||||
* Contrib packages are no longer included in the documentation.
|
|
||||||
|
|
||||||
RDoc Issues
|
|
||||||
|
|
||||||
* Removed default for the '--main' option
|
|
||||||
* Fixed rendering of the rdoc options
|
|
||||||
* Fixed clean/clobber confusion with rerdoc
|
|
||||||
* 'title' attribute added
|
|
||||||
|
|
||||||
Package Task Library Issues
|
|
||||||
|
|
||||||
* Version (or explicit :noversion) is required.
|
|
||||||
* +package_file+ attribute is now writable
|
|
||||||
|
|
||||||
FileList Issues
|
|
||||||
|
|
||||||
* Dropped bang version of exclude. Now using ant-like include/exclude semantics.
|
|
||||||
* Enabled the "yield self" idiom in FileList#initialize.
|
|
||||||
|
|
||||||
== Version 0.2.9
|
|
||||||
|
|
||||||
This version contains numerous changes as the RubyConf.new(2003)
|
|
||||||
presentation was being prepared. The changes include:
|
|
||||||
|
|
||||||
* The monolithic rubyapp task library is in the process of being
|
|
||||||
dropped in favor of lighter weight task libraries.
|
|
||||||
|
|
||||||
== Version 0.2.7
|
|
||||||
|
|
||||||
* Added "desc" for task descriptions.
|
|
||||||
* -T will now display tasks with descriptions.
|
|
||||||
* -P will display tasks and prerequisites.
|
|
||||||
* Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
|
|
||||||
is still supported in the contrib area.
|
|
||||||
|
|
||||||
== Version 0.2.6
|
|
||||||
|
|
||||||
* Moved to RubyForge
|
|
||||||
|
|
||||||
== Version 0.2.5
|
|
||||||
|
|
||||||
* Switched to standard ruby app builder.
|
|
||||||
* Added no_match option to file matcher.
|
|
||||||
|
|
||||||
== Version 0.2.4
|
|
||||||
|
|
||||||
* Fixed indir, which neglected to actually change directories.
|
|
||||||
|
|
||||||
== Version 0.2.3
|
|
||||||
|
|
||||||
* Added rake module for a help target
|
|
||||||
* Added 'for_files' to Sys
|
|
||||||
* Added a $rakefile constant
|
|
||||||
* Added test for selecting proper rule with multiple targets.
|
|
|
@ -1,38 +0,0 @@
|
||||||
# Example Rakefile -*- ruby -*-
|
|
||||||
|
|
||||||
task :default => [:main]
|
|
||||||
|
|
||||||
file "a.o" => ["a.c"] do |t|
|
|
||||||
src = t.name.sub(/\.o$/, '.c')
|
|
||||||
sh "gcc #{src} -c -o #{t.name}"
|
|
||||||
end
|
|
||||||
|
|
||||||
file "b.o" => ["b.c"] do |t|
|
|
||||||
src = t.name.sub(/\.o$/, '.c')
|
|
||||||
sh "gcc #{src} -c -o #{t.name}"
|
|
||||||
end
|
|
||||||
|
|
||||||
file "main.o" => ["main.c"] do |t|
|
|
||||||
src = t.name.sub(/\.o$/, '.c')
|
|
||||||
sh "gcc #{src} -c -o #{t.name}"
|
|
||||||
end
|
|
||||||
|
|
||||||
OBJFILES = ["a.o", "b.o", "main.o"]
|
|
||||||
task :obj => OBJFILES
|
|
||||||
|
|
||||||
file "main" => OBJFILES do |t|
|
|
||||||
sh "gcc -o #{t.name} main.o a.o b.o"
|
|
||||||
end
|
|
||||||
|
|
||||||
task :clean do
|
|
||||||
rm_f FileList['*.o']
|
|
||||||
Dir['*~'].each { |fn| rm_f fn }
|
|
||||||
end
|
|
||||||
|
|
||||||
task :clobber => [:clean] do
|
|
||||||
rm_f "main"
|
|
||||||
end
|
|
||||||
|
|
||||||
task :run => ["main"] do
|
|
||||||
sh "./main"
|
|
||||||
end
|
|
|
@ -1,35 +0,0 @@
|
||||||
# Example Rakefile -*- ruby -*-
|
|
||||||
# Using the power of Ruby
|
|
||||||
|
|
||||||
task :default => [:main]
|
|
||||||
|
|
||||||
def ext(fn, newext)
|
|
||||||
fn.sub(/\.[^.]+$/, newext)
|
|
||||||
end
|
|
||||||
|
|
||||||
SRCFILES = Dir['*.c']
|
|
||||||
OBJFILES = SRCFILES.collect { |fn| ext(fn,".o") }
|
|
||||||
|
|
||||||
OBJFILES.each do |objfile|
|
|
||||||
srcfile = ext(objfile, ".c")
|
|
||||||
file objfile => [srcfile] do |t|
|
|
||||||
sh "gcc #{srcfile} -c -o #{t.name}"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
file "main" => OBJFILES do |t|
|
|
||||||
sh "gcc -o #{t.name} main.o a.o b.o"
|
|
||||||
end
|
|
||||||
|
|
||||||
task :clean do
|
|
||||||
rm_f FileList['*.o']
|
|
||||||
Dir['*~'].each { |fn| rm_f fn }
|
|
||||||
end
|
|
||||||
|
|
||||||
task :clobber => [:clean] do
|
|
||||||
rm_f "main"
|
|
||||||
end
|
|
||||||
|
|
||||||
task :run => ["main"] do
|
|
||||||
sh "./main"
|
|
||||||
end
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
void a()
|
|
||||||
{
|
|
||||||
printf ("In function a\n");
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
void b()
|
|
||||||
{
|
|
||||||
printf ("In function b\n");
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
extern void a();
|
|
||||||
extern void b();
|
|
||||||
|
|
||||||
int main ()
|
|
||||||
{
|
|
||||||
a();
|
|
||||||
b();
|
|
||||||
return 0;
|
|
||||||
}
|
|
|
@ -1,591 +0,0 @@
|
||||||
module RDoc
|
|
||||||
module Page
|
|
||||||
|
|
||||||
FONTS = "\"Bitstream Vera Sans\", Verdana, Arial, Helvetica, sans-serif"
|
|
||||||
|
|
||||||
STYLE = <<CSS
|
|
||||||
a {
|
|
||||||
color: #00F;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
color: #77F;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
body, td, p {
|
|
||||||
font-family: %fonts%;
|
|
||||||
background: #FFF;
|
|
||||||
color: #000;
|
|
||||||
margin: 0px;
|
|
||||||
font-size: small;
|
|
||||||
}
|
|
||||||
|
|
||||||
#content {
|
|
||||||
margin: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#description p {
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sectiontitle {
|
|
||||||
margin-top: 1em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
padding: 0.5em;
|
|
||||||
padding-left: 2em;
|
|
||||||
background: #005;
|
|
||||||
color: #FFF;
|
|
||||||
font-weight: bold;
|
|
||||||
border: 1px dotted black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attr-rw {
|
|
||||||
padding-left: 1em;
|
|
||||||
padding-right: 1em;
|
|
||||||
text-align: center;
|
|
||||||
color: #055;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attr-name {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.attr-desc {
|
|
||||||
}
|
|
||||||
|
|
||||||
.attr-value {
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-title-prefix {
|
|
||||||
font-size: large;
|
|
||||||
}
|
|
||||||
|
|
||||||
.file-title {
|
|
||||||
font-size: large;
|
|
||||||
font-weight: bold;
|
|
||||||
background: #005;
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner {
|
|
||||||
background: #005;
|
|
||||||
color: #FFF;
|
|
||||||
border: 1px solid black;
|
|
||||||
padding: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner td {
|
|
||||||
background: transparent;
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 a, h2 a, .sectiontitle a, .banner a {
|
|
||||||
color: #FF0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 a:hover, h2 a:hover, .sectiontitle a:hover, .banner a:hover {
|
|
||||||
color: #FF7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dyn-source {
|
|
||||||
display: none;
|
|
||||||
background: #FFE;
|
|
||||||
color: #000;
|
|
||||||
border: 1px dotted black;
|
|
||||||
margin: 0.5em 2em 0.5em 2em;
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dyn-source .cmt {
|
|
||||||
color: #00F;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dyn-source .kw {
|
|
||||||
color: #070;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.method {
|
|
||||||
margin-left: 1em;
|
|
||||||
margin-right: 1em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description pre {
|
|
||||||
padding: 0.5em;
|
|
||||||
border: 1px dotted black;
|
|
||||||
background: #FFE;
|
|
||||||
}
|
|
||||||
|
|
||||||
.method .title {
|
|
||||||
font-family: monospace;
|
|
||||||
font-size: large;
|
|
||||||
border-bottom: 1px dashed black;
|
|
||||||
margin-bottom: 0.3em;
|
|
||||||
padding-bottom: 0.1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.method .description, .method .sourcecode {
|
|
||||||
margin-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description p, .sourcecode p {
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.method .sourcecode p.source-link {
|
|
||||||
text-indent: 0em;
|
|
||||||
margin-top: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.method .aka {
|
|
||||||
margin-top: 0.3em;
|
|
||||||
margin-left: 1em;
|
|
||||||
font-style: italic;
|
|
||||||
text-indent: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
padding: 1em;
|
|
||||||
border: 1px solid black;
|
|
||||||
font-size: x-large;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #FFF;
|
|
||||||
background: #007;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
padding: 0.5em 1em 0.5em 1em;
|
|
||||||
border: 1px solid black;
|
|
||||||
font-size: large;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #FFF;
|
|
||||||
background: #009;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3, h4, h5, h6 {
|
|
||||||
padding: 0.2em 1em 0.2em 1em;
|
|
||||||
border: 1px dashed black;
|
|
||||||
color: #000;
|
|
||||||
background: #AAF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sourcecode > pre {
|
|
||||||
padding: 0.5em;
|
|
||||||
border: 1px dotted black;
|
|
||||||
background: #FFE;
|
|
||||||
}
|
|
||||||
|
|
||||||
CSS
|
|
||||||
|
|
||||||
XHTML_PREAMBLE = %{<?xml version="1.0" encoding="%charset%"?>
|
|
||||||
<!DOCTYPE html
|
|
||||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
||||||
}
|
|
||||||
|
|
||||||
HEADER = XHTML_PREAMBLE + <<ENDHEADER
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>%title%</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=%charset%" />
|
|
||||||
<link rel="stylesheet" href="%style_url%" type="text/css" media="screen" />
|
|
||||||
|
|
||||||
<script language="JavaScript" type="text/javascript">
|
|
||||||
// <![CDATA[
|
|
||||||
|
|
||||||
function toggleSource( id )
|
|
||||||
{
|
|
||||||
var elem
|
|
||||||
var link
|
|
||||||
|
|
||||||
if( document.getElementById )
|
|
||||||
{
|
|
||||||
elem = document.getElementById( id )
|
|
||||||
link = document.getElementById( "l_" + id )
|
|
||||||
}
|
|
||||||
else if ( document.all )
|
|
||||||
{
|
|
||||||
elem = eval( "document.all." + id )
|
|
||||||
link = eval( "document.all.l_" + id )
|
|
||||||
}
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if( elem.style.display == "block" )
|
|
||||||
{
|
|
||||||
elem.style.display = "none"
|
|
||||||
link.innerHTML = "show source"
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
elem.style.display = "block"
|
|
||||||
link.innerHTML = "hide source"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function openCode( url )
|
|
||||||
{
|
|
||||||
window.open( url, "SOURCE_CODE", "width=400,height=400,scrollbars=yes" )
|
|
||||||
}
|
|
||||||
// ]]>
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
ENDHEADER
|
|
||||||
|
|
||||||
FILE_PAGE = <<HTML
|
|
||||||
<table border='0' cellpadding='0' cellspacing='0' width="100%" class='banner'>
|
|
||||||
<tr><td>
|
|
||||||
<table width="100%" border='0' cellpadding='0' cellspacing='0'><tr>
|
|
||||||
<td class="file-title" colspan="2"><span class="file-title-prefix">File</span><br />%short_name%</td>
|
|
||||||
<td align="right">
|
|
||||||
<table border='0' cellspacing="0" cellpadding="2">
|
|
||||||
<tr>
|
|
||||||
<td>Path:</td>
|
|
||||||
<td>%full_path%
|
|
||||||
IF:cvsurl
|
|
||||||
(<a href="%cvsurl%">CVS</a>)
|
|
||||||
ENDIF:cvsurl
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Modified:</td>
|
|
||||||
<td>%dtm_modified%</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</td></tr>
|
|
||||||
</table>
|
|
||||||
</td></tr>
|
|
||||||
</table><br>
|
|
||||||
HTML
|
|
||||||
|
|
||||||
###################################################################
|
|
||||||
|
|
||||||
CLASS_PAGE = <<HTML
|
|
||||||
<table width="100%" border='0' cellpadding='0' cellspacing='0' class='banner'><tr>
|
|
||||||
<td class="file-title"><span class="file-title-prefix">%classmod%</span><br />%full_name%</td>
|
|
||||||
<td align="right">
|
|
||||||
<table cellspacing=0 cellpadding=2>
|
|
||||||
<tr valign="top">
|
|
||||||
<td>In:</td>
|
|
||||||
<td>
|
|
||||||
START:infiles
|
|
||||||
HREF:full_path_url:full_path:
|
|
||||||
IF:cvsurl
|
|
||||||
(<a href="%cvsurl%">CVS</a>)
|
|
||||||
ENDIF:cvsurl
|
|
||||||
END:infiles
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
IF:parent
|
|
||||||
<tr>
|
|
||||||
<td>Parent:</td>
|
|
||||||
<td>
|
|
||||||
IF:par_url
|
|
||||||
<a href="%par_url%">
|
|
||||||
ENDIF:par_url
|
|
||||||
%parent%
|
|
||||||
IF:par_url
|
|
||||||
</a>
|
|
||||||
ENDIF:par_url
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
ENDIF:parent
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
HTML
|
|
||||||
|
|
||||||
###################################################################
|
|
||||||
|
|
||||||
METHOD_LIST = <<HTML
|
|
||||||
<div id="content">
|
|
||||||
IF:diagram
|
|
||||||
<table cellpadding='0' cellspacing='0' border='0' width="100%"><tr><td align="center">
|
|
||||||
%diagram%
|
|
||||||
</td></tr></table>
|
|
||||||
ENDIF:diagram
|
|
||||||
|
|
||||||
IF:description
|
|
||||||
<div class="description">%description%</div>
|
|
||||||
ENDIF:description
|
|
||||||
|
|
||||||
IF:requires
|
|
||||||
<div class="sectiontitle">Required Files</div>
|
|
||||||
<ul>
|
|
||||||
START:requires
|
|
||||||
<li>HREF:aref:name:</li>
|
|
||||||
END:requires
|
|
||||||
</ul>
|
|
||||||
ENDIF:requires
|
|
||||||
|
|
||||||
IF:toc
|
|
||||||
<div class="sectiontitle">Contents</div>
|
|
||||||
<ul>
|
|
||||||
START:toc
|
|
||||||
<li><a href="#%href%">%secname%</a></li>
|
|
||||||
END:toc
|
|
||||||
</ul>
|
|
||||||
ENDIF:toc
|
|
||||||
|
|
||||||
IF:methods
|
|
||||||
<div class="sectiontitle">Methods</div>
|
|
||||||
<ul>
|
|
||||||
START:methods
|
|
||||||
<li>HREF:aref:name:</li>
|
|
||||||
END:methods
|
|
||||||
</ul>
|
|
||||||
ENDIF:methods
|
|
||||||
|
|
||||||
IF:includes
|
|
||||||
<div class="sectiontitle">Included Modules</div>
|
|
||||||
<ul>
|
|
||||||
START:includes
|
|
||||||
<li>HREF:aref:name:</li>
|
|
||||||
END:includes
|
|
||||||
</ul>
|
|
||||||
ENDIF:includes
|
|
||||||
|
|
||||||
START:sections
|
|
||||||
IF:sectitle
|
|
||||||
<div class="sectiontitle"><a nem="%secsequence%">%sectitle%</a></div>
|
|
||||||
IF:seccomment
|
|
||||||
<div class="description">
|
|
||||||
%seccomment%
|
|
||||||
</div>
|
|
||||||
ENDIF:seccomment
|
|
||||||
ENDIF:sectitle
|
|
||||||
|
|
||||||
IF:classlist
|
|
||||||
<div class="sectiontitle">Classes and Modules</div>
|
|
||||||
%classlist%
|
|
||||||
ENDIF:classlist
|
|
||||||
|
|
||||||
IF:constants
|
|
||||||
<div class="sectiontitle">Constants</div>
|
|
||||||
<table border='0' cellpadding='5'>
|
|
||||||
START:constants
|
|
||||||
<tr valign='top'>
|
|
||||||
<td class="attr-name">%name%</td>
|
|
||||||
<td>=</td>
|
|
||||||
<td class="attr-value">%value%</td>
|
|
||||||
</tr>
|
|
||||||
IF:desc
|
|
||||||
<tr valign='top'>
|
|
||||||
<td> </td>
|
|
||||||
<td colspan="2" class="attr-desc">%desc%</td>
|
|
||||||
</tr>
|
|
||||||
ENDIF:desc
|
|
||||||
END:constants
|
|
||||||
</table>
|
|
||||||
ENDIF:constants
|
|
||||||
|
|
||||||
IF:attributes
|
|
||||||
<div class="sectiontitle">Attributes</div>
|
|
||||||
<table border='0' cellpadding='5'>
|
|
||||||
START:attributes
|
|
||||||
<tr valign='top'>
|
|
||||||
<td class='attr-rw'>
|
|
||||||
IF:rw
|
|
||||||
[%rw%]
|
|
||||||
ENDIF:rw
|
|
||||||
</td>
|
|
||||||
<td class='attr-name'>%name%</td>
|
|
||||||
<td class='attr-desc'>%a_desc%</td>
|
|
||||||
</tr>
|
|
||||||
END:attributes
|
|
||||||
</table>
|
|
||||||
ENDIF:attributes
|
|
||||||
|
|
||||||
IF:method_list
|
|
||||||
START:method_list
|
|
||||||
IF:methods
|
|
||||||
<div class="sectiontitle">%type% %category% methods</div>
|
|
||||||
START:methods
|
|
||||||
<div class="method">
|
|
||||||
<div class="title">
|
|
||||||
IF:callseq
|
|
||||||
<a name="%aref%"></a><b>%callseq%</b>
|
|
||||||
ENDIF:callseq
|
|
||||||
IFNOT:callseq
|
|
||||||
<a name="%aref%"></a><b>%name%</b>%params%
|
|
||||||
ENDIF:callseq
|
|
||||||
IF:codeurl
|
|
||||||
[ <a href="javascript:openCode('%codeurl%')">source</a> ]
|
|
||||||
ENDIF:codeurl
|
|
||||||
</div>
|
|
||||||
IF:m_desc
|
|
||||||
<div class="description">
|
|
||||||
%m_desc%
|
|
||||||
</div>
|
|
||||||
ENDIF:m_desc
|
|
||||||
IF:aka
|
|
||||||
<div class="aka">
|
|
||||||
This method is also aliased as
|
|
||||||
START:aka
|
|
||||||
<a href="%aref%">%name%</a>
|
|
||||||
END:aka
|
|
||||||
</div>
|
|
||||||
ENDIF:aka
|
|
||||||
IF:sourcecode
|
|
||||||
<div class="sourcecode">
|
|
||||||
<p class="source-link">[ <a href="javascript:toggleSource('%aref%_source')" id="l_%aref%_source">show source</a> ]</p>
|
|
||||||
<div id="%aref%_source" class="dyn-source">
|
|
||||||
<pre>
|
|
||||||
%sourcecode%
|
|
||||||
</pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
ENDIF:sourcecode
|
|
||||||
</div>
|
|
||||||
END:methods
|
|
||||||
ENDIF:methods
|
|
||||||
END:method_list
|
|
||||||
ENDIF:method_list
|
|
||||||
END:sections
|
|
||||||
</div>
|
|
||||||
HTML
|
|
||||||
|
|
||||||
FOOTER = <<ENDFOOTER
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
ENDFOOTER
|
|
||||||
|
|
||||||
BODY = HEADER + <<ENDBODY
|
|
||||||
!INCLUDE! <!-- banner header -->
|
|
||||||
|
|
||||||
<div id="bodyContent">
|
|
||||||
#{METHOD_LIST}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
#{FOOTER}
|
|
||||||
ENDBODY
|
|
||||||
|
|
||||||
########################## Source code ##########################
|
|
||||||
|
|
||||||
SRC_PAGE = XHTML_PREAMBLE + <<HTML
|
|
||||||
<html>
|
|
||||||
<head><title>%title%</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=%charset%">
|
|
||||||
<style>
|
|
||||||
.ruby-comment { color: green; font-style: italic }
|
|
||||||
.ruby-constant { color: #4433aa; font-weight: bold; }
|
|
||||||
.ruby-identifier { color: #222222; }
|
|
||||||
.ruby-ivar { color: #2233dd; }
|
|
||||||
.ruby-keyword { color: #3333FF; font-weight: bold }
|
|
||||||
.ruby-node { color: #777777; }
|
|
||||||
.ruby-operator { color: #111111; }
|
|
||||||
.ruby-regexp { color: #662222; }
|
|
||||||
.ruby-value { color: #662222; font-style: italic }
|
|
||||||
.kw { color: #3333FF; font-weight: bold }
|
|
||||||
.cmt { color: green; font-style: italic }
|
|
||||||
.str { color: #662222; font-style: italic }
|
|
||||||
.re { color: #662222; }
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body bgcolor="white">
|
|
||||||
<pre>%code%</pre>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
HTML
|
|
||||||
|
|
||||||
########################## Index ################################
|
|
||||||
|
|
||||||
FR_INDEX_BODY = <<HTML
|
|
||||||
!INCLUDE!
|
|
||||||
HTML
|
|
||||||
|
|
||||||
FILE_INDEX = XHTML_PREAMBLE + <<HTML
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=%charset%">
|
|
||||||
<style>
|
|
||||||
<!--
|
|
||||||
body {
|
|
||||||
background-color: #EEE;
|
|
||||||
font-family: #{FONTS};
|
|
||||||
color: #000;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
.banner {
|
|
||||||
background: #005;
|
|
||||||
color: #FFF;
|
|
||||||
padding: 0.2em;
|
|
||||||
font-size: small;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.entries {
|
|
||||||
margin: 0.25em 1em 0 1em;
|
|
||||||
font-size: x-small;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color: #00F;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #77F;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
-->
|
|
||||||
</style>
|
|
||||||
<base target="docwin">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="banner">%list_title%</div>
|
|
||||||
<div class="entries">
|
|
||||||
START:entries
|
|
||||||
<a href="%href%">%name%</a><br>
|
|
||||||
END:entries
|
|
||||||
</div>
|
|
||||||
</body></html>
|
|
||||||
HTML
|
|
||||||
|
|
||||||
CLASS_INDEX = FILE_INDEX
|
|
||||||
METHOD_INDEX = FILE_INDEX
|
|
||||||
|
|
||||||
INDEX = XHTML_PREAMBLE + <<HTML
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<head>
|
|
||||||
<title>%title%</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=%charset%">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<frameset cols="20%,*">
|
|
||||||
<frameset rows="15%,35%,50%">
|
|
||||||
<frame src="fr_file_index.html" title="Files" name="Files" />
|
|
||||||
<frame src="fr_class_index.html" name="Classes" />
|
|
||||||
<frame src="fr_method_index.html" name="Methods" />
|
|
||||||
</frameset>
|
|
||||||
IF:inline_source
|
|
||||||
<frame src="%initial_page%" name="docwin">
|
|
||||||
ENDIF:inline_source
|
|
||||||
IFNOT:inline_source
|
|
||||||
<frameset rows="80%,20%">
|
|
||||||
<frame src="%initial_page%" name="docwin">
|
|
||||||
<frame src="blank.html" name="source">
|
|
||||||
</frameset>
|
|
||||||
ENDIF:inline_source
|
|
||||||
<noframes>
|
|
||||||
<body bgcolor="white">
|
|
||||||
Click <a href="html/index.html">here</a> for a non-frames
|
|
||||||
version of this page.
|
|
||||||
</body>
|
|
||||||
</noframes>
|
|
||||||
</frameset>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
HTML
|
|
||||||
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
|
@ -1,127 +0,0 @@
|
||||||
= Original Prototype Rake
|
|
||||||
|
|
||||||
This is the original 100 line prototype rake program.
|
|
||||||
|
|
||||||
---
|
|
||||||
#!/usr/bin/env ruby
|
|
||||||
|
|
||||||
require 'ftools'
|
|
||||||
|
|
||||||
class Task
|
|
||||||
TASKS = Hash.new
|
|
||||||
|
|
||||||
attr_reader :prerequisites
|
|
||||||
|
|
||||||
def initialize(task_name)
|
|
||||||
@name = task_name
|
|
||||||
@prerequisites = []
|
|
||||||
@actions = []
|
|
||||||
end
|
|
||||||
|
|
||||||
def enhance(deps=nil, &block)
|
|
||||||
@prerequisites |= deps if deps
|
|
||||||
@actions << block if block_given?
|
|
||||||
self
|
|
||||||
end
|
|
||||||
|
|
||||||
def name
|
|
||||||
@name.to_s
|
|
||||||
end
|
|
||||||
|
|
||||||
def invoke
|
|
||||||
@prerequisites.each { |n| Task[n].invoke }
|
|
||||||
execute if needed?
|
|
||||||
end
|
|
||||||
|
|
||||||
def execute
|
|
||||||
return if @triggered
|
|
||||||
@triggered = true
|
|
||||||
@actions.collect { |act| result = act.call(self) }.last
|
|
||||||
end
|
|
||||||
|
|
||||||
def needed?
|
|
||||||
true
|
|
||||||
end
|
|
||||||
|
|
||||||
def timestamp
|
|
||||||
Time.now
|
|
||||||
end
|
|
||||||
|
|
||||||
class << self
|
|
||||||
def [](task_name)
|
|
||||||
TASKS[intern(task_name)] or fail "Don't know how to rake #{task_name}"
|
|
||||||
end
|
|
||||||
|
|
||||||
def define_task(args, &block)
|
|
||||||
case args
|
|
||||||
when Hash
|
|
||||||
fail "Too Many Target Names: #{args.keys.join(' ')}" if args.size > 1
|
|
||||||
fail "No Task Name Given" if args.size < 1
|
|
||||||
task_name = args.keys[0]
|
|
||||||
deps = args[task_name]
|
|
||||||
else
|
|
||||||
task_name = args
|
|
||||||
deps = []
|
|
||||||
end
|
|
||||||
deps = deps.collect {|d| intern(d) }
|
|
||||||
get(task_name).enhance(deps, &block)
|
|
||||||
end
|
|
||||||
|
|
||||||
def get(task_name)
|
|
||||||
name = intern(task_name)
|
|
||||||
TASKS[name] ||= self.new(name)
|
|
||||||
end
|
|
||||||
|
|
||||||
def intern(task_name)
|
|
||||||
(Symbol === task_name) ? task_name : task_name.intern
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
class FileTask < Task
|
|
||||||
def needed?
|
|
||||||
return true unless File.exist?(name)
|
|
||||||
latest_prereq = @prerequisites.collect{|n| Task[n].timestamp}.max
|
|
||||||
return false if latest_prereq.nil?
|
|
||||||
timestamp < latest_prereq
|
|
||||||
end
|
|
||||||
|
|
||||||
def timestamp
|
|
||||||
File.new(name.to_s).mtime
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def task(args, &block)
|
|
||||||
Task.define_task(args, &block)
|
|
||||||
end
|
|
||||||
|
|
||||||
def file(args, &block)
|
|
||||||
FileTask.define_task(args, &block)
|
|
||||||
end
|
|
||||||
|
|
||||||
def sys(cmd)
|
|
||||||
puts cmd
|
|
||||||
system(cmd) or fail "Command Failed: [#{cmd}]"
|
|
||||||
end
|
|
||||||
|
|
||||||
def rake
|
|
||||||
begin
|
|
||||||
here = Dir.pwd
|
|
||||||
while ! File.exist?("Rakefile")
|
|
||||||
Dir.chdir("..")
|
|
||||||
fail "No Rakefile found" if Dir.pwd == here
|
|
||||||
here = Dir.pwd
|
|
||||||
end
|
|
||||||
puts "(in #{Dir.pwd})"
|
|
||||||
load "./Rakefile"
|
|
||||||
ARGV.push("default") if ARGV.size == 0
|
|
||||||
ARGV.each { |task_name| Task[task_name].invoke }
|
|
||||||
rescue Exception => ex
|
|
||||||
puts "rake aborted ... #{ex.message}"
|
|
||||||
puts ex.backtrace.find {|str| str =~ /Rakefile/ } || ""
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if __FILE__ == $0 then
|
|
||||||
rake
|
|
||||||
end
|
|
|
@ -1,55 +0,0 @@
|
||||||
= Rake 0.8.7 Released
|
|
||||||
|
|
||||||
Rake version 0.8.5 introduced greatly improved support for executing
|
|
||||||
commands on Windows. The "sh" command now has the same semantics on
|
|
||||||
Windows that it has on Unix based platforms.
|
|
||||||
|
|
||||||
Rake version 0.8.6 includes minor fixes the the RDoc generation.
|
|
||||||
Rake version 0.8.7 includes a minor fix for JRuby running on windows.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
=== New Features / Enhancements in Version 0.8.5
|
|
||||||
|
|
||||||
* Improved implementation of the Rake system command for Windows.
|
|
||||||
(patch from James M. Lawrence/quix)
|
|
||||||
|
|
||||||
* Support for Ruby 1.9's improved system command. (patch from James
|
|
||||||
M. Lawrence/quix)
|
|
||||||
|
|
||||||
* Rake now includes the configured extension when invoking an
|
|
||||||
executable (Config::CONFIG['EXEEXT])
|
|
||||||
|
|
||||||
=== Bug Fixes in Version 0.8.5
|
|
||||||
|
|
||||||
* Environment variable keys are now correctly cased (it matters in
|
|
||||||
some implementations).
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://rake.rubyforge.org/
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* Charles Nutter
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,112 +0,0 @@
|
||||||
= Rake 0.9.0 Released
|
|
||||||
|
|
||||||
Rake version 0.9.0 has a number of bug fixes and enhancments (see
|
|
||||||
below for more details). Additionally, the internals have be slightly
|
|
||||||
restructured and improved.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
=== New Features / Enhancements / Bug Fixes in Version 0.9.0
|
|
||||||
|
|
||||||
* Rake now warns when the deprecated :needs syntax used (and suggests
|
|
||||||
the proper syntax in the warning).
|
|
||||||
|
|
||||||
* Moved Rake DSL commands to top level ruby object 'main'. Rake DSL
|
|
||||||
commands are no longer private methods in Object. (Suggested by
|
|
||||||
James M. Lawrence/quix)
|
|
||||||
|
|
||||||
* Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
|
|
||||||
Based on patch by Roger Pack.
|
|
||||||
|
|
||||||
* Rake now requires (instead of loads) files in the test task. Patch by Cezary
|
|
||||||
Baginski.
|
|
||||||
|
|
||||||
* Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
|
|
||||||
|
|
||||||
* Rake now prints the Rakefile directory only when it's different from the
|
|
||||||
current directory. Patch by Alex Chaffee.
|
|
||||||
|
|
||||||
* Improved rakefile_location discovery on Windows. Patch by James Tucker.
|
|
||||||
|
|
||||||
* Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
|
|
||||||
Lüdtke
|
|
||||||
|
|
||||||
* Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
|
|
||||||
'rdoc/task')
|
|
||||||
|
|
||||||
* Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
|
|
||||||
'rubygems/package_task')
|
|
||||||
|
|
||||||
* Rake now outputs various messages to $stderr instead of $stdout.
|
|
||||||
|
|
||||||
* Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
|
|
||||||
|
|
||||||
* Removed Rake's DSL methods from the top level scope. If you need to
|
|
||||||
call 'task :xzy' in your code, include Rake::DSL into your class, or
|
|
||||||
put the code in a Rake::DSL.environment do ... end block.
|
|
||||||
|
|
||||||
* Split rake.rb into individual files.
|
|
||||||
|
|
||||||
* Support for the --where (-W) flag for showing where a task is defined.
|
|
||||||
|
|
||||||
* Fixed quoting in test task.
|
|
||||||
(http://onestepback.org/redmine/issues/show/44,
|
|
||||||
http://www.pivotaltracker.com/story/show/1223138)
|
|
||||||
|
|
||||||
* Fixed the silent option parsing problem.
|
|
||||||
(http://onestepback.org/redmine/issues/show/47)
|
|
||||||
|
|
||||||
* Fixed :verbose=>false flag on sh and ruby commands.
|
|
||||||
|
|
||||||
* Rake command line options may be given by default in a RAKEOPT
|
|
||||||
environment variable.
|
|
||||||
|
|
||||||
* Errors in Rake will now display the task invocation chain in effect
|
|
||||||
at the time of the error.
|
|
||||||
|
|
||||||
* Accepted change by warnickr to not expand test patterns in shell
|
|
||||||
(allowing more files in the test suite).
|
|
||||||
|
|
||||||
* Fixed that file tasks did not perform prereq lookups in scope
|
|
||||||
(Redmine #57).
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://rake.rubyforge.org/
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* James M. Lawrence (quix)
|
|
||||||
* Roger Pack
|
|
||||||
* Cezary Baginski
|
|
||||||
* Sean Scot August Moon
|
|
||||||
* R.T. Lechow
|
|
||||||
* Alex Chaffee
|
|
||||||
* James Tucker
|
|
||||||
* Matthias Lüdtke
|
|
||||||
* Santiago Pastorino
|
|
||||||
|
|
||||||
Also, bit thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door (where "assisting" includes, but is not by any means
|
|
||||||
limited to, "pushing" me to get it done).
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,52 +0,0 @@
|
||||||
= Rake 0.9.1 Released
|
|
||||||
|
|
||||||
Rake version 0.9.1 has a number of bug fixes and enhancments (see
|
|
||||||
below for more details). Additionally, the internals have be slightly
|
|
||||||
restructured and improved.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
Rake 0.9.1 adds back the global DSL methods, but with deprecation
|
|
||||||
messages. This allows Rake 0.9.1 to be used with older rakefiles with
|
|
||||||
warning messages.
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://rake.rubyforge.org/
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* James M. Lawrence (quix)
|
|
||||||
* Roger Pack
|
|
||||||
* Cezary Baginski
|
|
||||||
* Sean Scot August Moon
|
|
||||||
* R.T. Lechow
|
|
||||||
* Alex Chaffee
|
|
||||||
* James Tucker
|
|
||||||
* Matthias Lüdtke
|
|
||||||
* Santiago Pastorino
|
|
||||||
|
|
||||||
Also, bit thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door (where "assisting" includes, but is not by any means
|
|
||||||
limited to, "pushing" me to get it done).
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,55 +0,0 @@
|
||||||
= Rake 0.9.3 Released
|
|
||||||
|
|
||||||
Rake version 0.9.3 is mainly bug fixes.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
* The rake test loader now removes arguments it has processed. Issue #51
|
|
||||||
* Rake::TaskArguments now responds to #values_at
|
|
||||||
* RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
|
|
||||||
* Rake tests are now directory-independent
|
|
||||||
* Rake tests are no longer require flexmock
|
|
||||||
* Commands constant is no longer polluting top level namespace.
|
|
||||||
* Show only the interesting portion of the backtrace by default (James M. Lawrence).
|
|
||||||
* Added --reduce-compat option to remove backward compatible DSL hacks (James M. Lawrence).
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://rake.rubyforge.org/
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* James M. Lawrence (quix)
|
|
||||||
* Roger Pack
|
|
||||||
* Cezary Baginski
|
|
||||||
* Sean Scot August Moon
|
|
||||||
* R.T. Lechow
|
|
||||||
* Alex Chaffee
|
|
||||||
* James Tucker
|
|
||||||
* Matthias Lüdtke
|
|
||||||
* Santiago Pastorino
|
|
||||||
|
|
||||||
Also, bit thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door (where "assisting" includes, but is not by any means
|
|
||||||
limited to, "pushing" me to get it done).
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,49 +0,0 @@
|
||||||
= Rake 0.9.2 Released
|
|
||||||
|
|
||||||
Rake version 0.9.2 has a few small fixes. See below for details.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
* Support for Ruby 1.8.6 was fixed.
|
|
||||||
* Global DSL warnings now honor --no-deprecate
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://rake.rubyforge.org/
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* James M. Lawrence (quix)
|
|
||||||
* Roger Pack
|
|
||||||
* Cezary Baginski
|
|
||||||
* Sean Scot August Moon
|
|
||||||
* R.T. Lechow
|
|
||||||
* Alex Chaffee
|
|
||||||
* James Tucker
|
|
||||||
* Matthias Lüdtke
|
|
||||||
* Santiago Pastorino
|
|
||||||
|
|
||||||
Also, bit thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door (where "assisting" includes, but is not by any means
|
|
||||||
limited to, "pushing" me to get it done).
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,102 +0,0 @@
|
||||||
= Rake 0.9.3 Released
|
|
||||||
|
|
||||||
Rake version 0.9.3 contains some new, backwards compatible features and
|
|
||||||
a number of bug fixes.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
=== New Features
|
|
||||||
|
|
||||||
* Multitask tasks now use a thread pool. Use -j to limit the number of
|
|
||||||
available threads.
|
|
||||||
|
|
||||||
* Use -m to turn regular tasks into multitasks (use at your own risk).
|
|
||||||
|
|
||||||
* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
|
|
||||||
programatically add rake task libraries.
|
|
||||||
|
|
||||||
* You can specific backtrace suppression patterns (see
|
|
||||||
--supress-backtrace)
|
|
||||||
|
|
||||||
* Directory tasks can now take prerequisites and actions
|
|
||||||
|
|
||||||
* Use --backtrace to request a full backtrace without the task trace.
|
|
||||||
|
|
||||||
* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
|
|
||||||
output to standard output rather than standard error.
|
|
||||||
|
|
||||||
* Optional 'phony' target (enable with 'require 'rake/phony'") for
|
|
||||||
special purpose builds.
|
|
||||||
|
|
||||||
* Task#clear now clears task comments as well as actions and
|
|
||||||
prerequisites. Task#clear_comment will specifically target comments.
|
|
||||||
|
|
||||||
* The --all option will force -T and -D to consider all the tasks,
|
|
||||||
with and without descriptions.
|
|
||||||
|
|
||||||
=== Bug Fixes
|
|
||||||
|
|
||||||
* Semi-colons in windows rakefile paths now work.
|
|
||||||
|
|
||||||
* Improved Control-C support when invoking multiple test suites.
|
|
||||||
|
|
||||||
* egrep method now reads files in text mode (better support for
|
|
||||||
Windows)
|
|
||||||
|
|
||||||
* Better deprecation line number reporting.
|
|
||||||
|
|
||||||
* The -W option now works with all tasks, whether they have a
|
|
||||||
description or not.
|
|
||||||
|
|
||||||
* File globs in rake should not be sorted alphabetically, independent
|
|
||||||
of file system and platform.
|
|
||||||
|
|
||||||
* Numerous internal improvements.
|
|
||||||
|
|
||||||
* Documentation typos and fixes.
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://github.com/jimweirich/rake
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* Aaron Patterson
|
|
||||||
* Dylan Smith
|
|
||||||
* Jo Liss
|
|
||||||
* Jonas Pfenniger
|
|
||||||
* Kazuki Tsujimoto
|
|
||||||
* Michael Bishop
|
|
||||||
* Michael Elufimov
|
|
||||||
* NAKAMURA Usaku
|
|
||||||
* Ryan Davis
|
|
||||||
* Sam Grönblom
|
|
||||||
* Sam Phippen
|
|
||||||
* Sergio Wong
|
|
||||||
* Tay Ray Chuan
|
|
||||||
* grosser
|
|
||||||
* quix
|
|
||||||
|
|
||||||
Also, many thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door.
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,110 +0,0 @@
|
||||||
= Rake 0.9.4 Released
|
|
||||||
|
|
||||||
Rake version 0.9.4 contains a number of bug fixes.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
=== New Features (in 0.9.3)
|
|
||||||
|
|
||||||
* Multitask tasks now use a thread pool. Use -j to limit the number of
|
|
||||||
available threads.
|
|
||||||
|
|
||||||
* Use -m to turn regular tasks into multitasks (use at your own risk).
|
|
||||||
|
|
||||||
* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
|
|
||||||
programatically add rake task libraries.
|
|
||||||
|
|
||||||
* You can specific backtrace suppression patterns (see
|
|
||||||
--supress-backtrace)
|
|
||||||
|
|
||||||
* Directory tasks can now take prerequisites and actions
|
|
||||||
|
|
||||||
* Use --backtrace to request a full backtrace without the task trace.
|
|
||||||
|
|
||||||
* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
|
|
||||||
output to standard output rather than standard error.
|
|
||||||
|
|
||||||
* Optional 'phony' target (enable with 'require 'rake/phony'") for
|
|
||||||
special purpose builds.
|
|
||||||
|
|
||||||
* Task#clear now clears task comments as well as actions and
|
|
||||||
prerequisites. Task#clear_comment will specifically target comments.
|
|
||||||
|
|
||||||
* The --all option will force -T and -D to consider all the tasks,
|
|
||||||
with and without descriptions.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.3)
|
|
||||||
|
|
||||||
* Semi-colons in windows rakefile paths now work.
|
|
||||||
|
|
||||||
* Improved Control-C support when invoking multiple test suites.
|
|
||||||
|
|
||||||
* egrep method now reads files in text mode (better support for
|
|
||||||
Windows)
|
|
||||||
|
|
||||||
* Better deprecation line number reporting.
|
|
||||||
|
|
||||||
* The -W option now works with all tasks, whether they have a
|
|
||||||
description or not.
|
|
||||||
|
|
||||||
* File globs in rake should not be sorted alphabetically, independent
|
|
||||||
of file system and platform.
|
|
||||||
|
|
||||||
* Numerous internal improvements.
|
|
||||||
|
|
||||||
* Documentation typos and fixes.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.4)
|
|
||||||
|
|
||||||
* Exit status with failing tests is not correctly set to non-zero.
|
|
||||||
|
|
||||||
* Simplified syntax for phony task (for older versions of RDoc).
|
|
||||||
|
|
||||||
* Stand alone FileList usage gets glob function (without loading in
|
|
||||||
extra dependencies)
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://github.com/jimweirich/rake
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* Aaron Patterson
|
|
||||||
* Dylan Smith
|
|
||||||
* Jo Liss
|
|
||||||
* Jonas Pfenniger
|
|
||||||
* Kazuki Tsujimoto
|
|
||||||
* Michael Bishop
|
|
||||||
* Michael Elufimov
|
|
||||||
* NAKAMURA Usaku
|
|
||||||
* Ryan Davis
|
|
||||||
* Sam Grönblom
|
|
||||||
* Sam Phippen
|
|
||||||
* Sergio Wong
|
|
||||||
* Tay Ray Chuan
|
|
||||||
* grosser
|
|
||||||
* quix
|
|
||||||
|
|
||||||
Also, many thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door.
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,114 +0,0 @@
|
||||||
= Rake 0.9.5 Released
|
|
||||||
|
|
||||||
Rake version 0.9.5 contains a number of bug fixes.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
=== New Features (in 0.9.3)
|
|
||||||
|
|
||||||
* Multitask tasks now use a thread pool. Use -j to limit the number of
|
|
||||||
available threads.
|
|
||||||
|
|
||||||
* Use -m to turn regular tasks into multitasks (use at your own risk).
|
|
||||||
|
|
||||||
* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
|
|
||||||
programatically add rake task libraries.
|
|
||||||
|
|
||||||
* You can specific backtrace suppression patterns (see
|
|
||||||
--supress-backtrace)
|
|
||||||
|
|
||||||
* Directory tasks can now take prerequisites and actions
|
|
||||||
|
|
||||||
* Use --backtrace to request a full backtrace without the task trace.
|
|
||||||
|
|
||||||
* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
|
|
||||||
output to standard output rather than standard error.
|
|
||||||
|
|
||||||
* Optional 'phony' target (enable with 'require 'rake/phony'") for
|
|
||||||
special purpose builds.
|
|
||||||
|
|
||||||
* Task#clear now clears task comments as well as actions and
|
|
||||||
prerequisites. Task#clear_comment will specifically target comments.
|
|
||||||
|
|
||||||
* The --all option will force -T and -D to consider all the tasks,
|
|
||||||
with and without descriptions.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.3)
|
|
||||||
|
|
||||||
* Semi-colons in windows rakefile paths now work.
|
|
||||||
|
|
||||||
* Improved Control-C support when invoking multiple test suites.
|
|
||||||
|
|
||||||
* egrep method now reads files in text mode (better support for
|
|
||||||
Windows)
|
|
||||||
|
|
||||||
* Better deprecation line number reporting.
|
|
||||||
|
|
||||||
* The -W option now works with all tasks, whether they have a
|
|
||||||
description or not.
|
|
||||||
|
|
||||||
* File globs in rake should not be sorted alphabetically, independent
|
|
||||||
of file system and platform.
|
|
||||||
|
|
||||||
* Numerous internal improvements.
|
|
||||||
|
|
||||||
* Documentation typos and fixes.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.4)
|
|
||||||
|
|
||||||
* Exit status with failing tests is not correctly set to non-zero.
|
|
||||||
|
|
||||||
* Simplified syntax for phony task (for older versions of RDoc).
|
|
||||||
|
|
||||||
* Stand alone FileList usage gets glob function (without loading in
|
|
||||||
extra dependencies)
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.5)
|
|
||||||
|
|
||||||
* --trace and --backtrace no longer swallow following task names.
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://github.com/jimweirich/rake
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* Aaron Patterson
|
|
||||||
* Dylan Smith
|
|
||||||
* Jo Liss
|
|
||||||
* Jonas Pfenniger
|
|
||||||
* Kazuki Tsujimoto
|
|
||||||
* Michael Bishop
|
|
||||||
* Michael Elufimov
|
|
||||||
* NAKAMURA Usaku
|
|
||||||
* Ryan Davis
|
|
||||||
* Sam Grönblom
|
|
||||||
* Sam Phippen
|
|
||||||
* Sergio Wong
|
|
||||||
* Tay Ray Chuan
|
|
||||||
* grosser
|
|
||||||
* quix
|
|
||||||
|
|
||||||
Also, many thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door.
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
|
@ -1,127 +0,0 @@
|
||||||
= Rake 0.9.6 Released
|
|
||||||
|
|
||||||
Rake version 0.9.6 contains a number of fixes mainly for merging
|
|
||||||
Rake into the Ruby source tree and fixing tests.
|
|
||||||
|
|
||||||
== Changes
|
|
||||||
|
|
||||||
=== New Features (in 0.9.3)
|
|
||||||
|
|
||||||
* Multitask tasks now use a thread pool. Use -j to limit the number of
|
|
||||||
available threads.
|
|
||||||
|
|
||||||
* Use -m to turn regular tasks into multitasks (use at your own risk).
|
|
||||||
|
|
||||||
* You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
|
|
||||||
programatically add rake task libraries.
|
|
||||||
|
|
||||||
* You can specific backtrace suppression patterns (see
|
|
||||||
--supress-backtrace)
|
|
||||||
|
|
||||||
* Directory tasks can now take prerequisites and actions
|
|
||||||
|
|
||||||
* Use --backtrace to request a full backtrace without the task trace.
|
|
||||||
|
|
||||||
* You can say "--backtrace=stdout" and "--trace=stdout" to route trace
|
|
||||||
output to standard output rather than standard error.
|
|
||||||
|
|
||||||
* Optional 'phony' target (enable with 'require 'rake/phony'") for
|
|
||||||
special purpose builds.
|
|
||||||
|
|
||||||
* Task#clear now clears task comments as well as actions and
|
|
||||||
prerequisites. Task#clear_comment will specifically target comments.
|
|
||||||
|
|
||||||
* The --all option will force -T and -D to consider all the tasks,
|
|
||||||
with and without descriptions.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.3)
|
|
||||||
|
|
||||||
* Semi-colons in windows rakefile paths now work.
|
|
||||||
|
|
||||||
* Improved Control-C support when invoking multiple test suites.
|
|
||||||
|
|
||||||
* egrep method now reads files in text mode (better support for
|
|
||||||
Windows)
|
|
||||||
|
|
||||||
* Better deprecation line number reporting.
|
|
||||||
|
|
||||||
* The -W option now works with all tasks, whether they have a
|
|
||||||
description or not.
|
|
||||||
|
|
||||||
* File globs in rake should not be sorted alphabetically, independent
|
|
||||||
of file system and platform.
|
|
||||||
|
|
||||||
* Numerous internal improvements.
|
|
||||||
|
|
||||||
* Documentation typos and fixes.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.4)
|
|
||||||
|
|
||||||
* Exit status with failing tests is not correctly set to non-zero.
|
|
||||||
|
|
||||||
* Simplified syntax for phony task (for older versions of RDoc).
|
|
||||||
|
|
||||||
* Stand alone FileList usage gets glob function (without loading in
|
|
||||||
extra dependencies)
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.5)
|
|
||||||
|
|
||||||
* --trace and --backtrace no longer swallow following task names.
|
|
||||||
|
|
||||||
=== Bug Fixes (0.9.6)
|
|
||||||
|
|
||||||
* Better trace output when using a multi-threaded Rakefile.
|
|
||||||
* Arg parsing is now consistent for tasks and multitasks.
|
|
||||||
* Skip exit code test in versions of Ruby that don't support it well.
|
|
||||||
|
|
||||||
Changes for better integration with the Ruby source tree:
|
|
||||||
|
|
||||||
* Fix version literal for Ruby source tree build.
|
|
||||||
* Better loading of libraries for testing in Ruby build.
|
|
||||||
* Use the ruby version provided by Ruby's tests.
|
|
||||||
|
|
||||||
== What is Rake
|
|
||||||
|
|
||||||
Rake is a build tool similar to the make program in many ways. But
|
|
||||||
instead of cryptic make recipes, Rake uses standard Ruby code to
|
|
||||||
declare tasks and dependencies. You have the full power of a modern
|
|
||||||
scripting language built right into your build tool.
|
|
||||||
|
|
||||||
== Availability
|
|
||||||
|
|
||||||
The easiest way to get and install rake is via RubyGems ...
|
|
||||||
|
|
||||||
gem install rake (you may need root/admin privileges)
|
|
||||||
|
|
||||||
Otherwise, you can get it from the more traditional places:
|
|
||||||
|
|
||||||
Home Page:: http://github.com/jimweirich/rake
|
|
||||||
Download:: http://rubyforge.org/project/showfiles.php?group_id=50
|
|
||||||
GitHub:: git://github.com/jimweirich/rake.git
|
|
||||||
|
|
||||||
== Thanks
|
|
||||||
|
|
||||||
As usual, it was input from users that drove a alot of these changes. The
|
|
||||||
following people either contributed patches, made suggestions or made
|
|
||||||
otherwise helpful comments. Thanks to ...
|
|
||||||
|
|
||||||
* Aaron Patterson
|
|
||||||
* Dylan Smith
|
|
||||||
* Jo Liss
|
|
||||||
* Jonas Pfenniger
|
|
||||||
* Kazuki Tsujimoto
|
|
||||||
* Michael Bishop
|
|
||||||
* Michael Elufimov
|
|
||||||
* NAKAMURA Usaku
|
|
||||||
* Ryan Davis
|
|
||||||
* Sam Grönblom
|
|
||||||
* Sam Phippen
|
|
||||||
* Sergio Wong
|
|
||||||
* Tay Ray Chuan
|
|
||||||
* grosser
|
|
||||||
* quix
|
|
||||||
|
|
||||||
Also, many thanks to Eric Hodel for assisting with getting this release
|
|
||||||
out the door.
|
|
||||||
|
|
||||||
-- Jim Weirich
|
|
Loading…
Add table
Reference in a new issue