Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rant(1) [debian man page]

RANT(1) 						      General Commands Manual							   RANT(1)

NAME
rant - A flexible and portable build tool. SYNOPSIS
rant [OPTION] ... [TARGET] ... DESCRIPTION
Striking features * Defining custom tasks. * Automated packaging, testing and RDoc generation for Ruby applications and libraries. * Creation of a monolithic script tailored to the needs of a specific project which can be used instead of an Rant installation - users don't need to install Rant. [See man rant-import] * Creating gzipped tar and zip archives -- without installing additional software. * Optional recognition of file changes based on MD5 checksums instead of file modification times. * Dependency checking for C/C++ source files (integrated makedepend replacement). * Primitive support for compiling C# sources with csc, cscc and mcs. Startup On startup, rant will look for a file called Rantfile , rantfile or root.rant which contains the build specification (which in fact is valid Ruby code). After reading the Rantfile(s), rant will execute the following tasks: If at least one target was given on the commandline: rant will execute all tasks necessary to build all targets given on the commandline. else: rant tries to build the target called "default". If no task with this name exists, rant invokes the first defined task. If you want to know which task(s) will be invoked when no target is given on the commandline, run rant with the -T option. Example: $ rant -T rant # => test rant package # Create packages for distribution. rant doc # Generate documentation. rant publish-docs # Publish html docs on make.rubyfore.org. # Note: scp will prompt for rubyforge password. rant test # Run basic tests. The first line always shows the target that will be built if no target argument is given. In this case, it would be the test target. OPTIONS
--help -h Print a help message and exit. --version -V Print version of Rant and exit. --verbose -v Print more messages to stderr. --quiet -q Don't print commands. --err-commands Print failed commands and their exit status. --directory DIRECTORY -C DIRECTORY Run rant in DIRECTORY. --cd-parent -c With this option, Rant starts to search for an Rantfile in the current working directory as usual, but if it doesn't find one, it changes to the parent directory and looks there for an Rantfile. This is repeated until an Rantfile is found or the working directory is the root directory of the filesystem. --look-up -u Look in parent directories for root Rantfile. --rantfile RANTFILE -f RANTFILE Process RANTFILE instead of standard rantfiles. Multiple files may be specified by repeating this option. --force-run TARGET -a TARGET Force rebuild of TARGET and all dependencies. --dry-run -n Print the names of the tasks that would be executed instead of actually executing task actions. --tasks -T Show a list of all described tasks and exit. HOMEPAGE
<http://rant.rubyforge.org/> AUTHOR
rant developed by Stefan Lang <langstefan@gmx.at> COPYRIGHT
Copyright (C) 2005 Stefan Lang <langstefan@gmx.at> SEE ALSO
rant-import(1) September 17, 2006 RANT(1)

Check Out this Related Man Page

LN(1)									FSF								     LN(1)

NAME
ln - make links between files SYNOPSIS
ln [OPTION]... TARGET [LINK_NAME] ln [OPTION]... TARGET... DIRECTORY ln [OPTION]... --target-directory=DIRECTORY TARGET... DESCRIPTION
Create a link to the specified TARGET with optional LINK_NAME. If LINK_NAME is omitted, a link with the same basename as the TARGET is created in the current directory. When using the second form with more than one TARGET, the last argument must be a directory; create links in DIRECTORY to each TARGET. Create hard links by default, symbolic links with --symbolic. When creating hard links, each TARGET must exist. Mandatory arguments to long options are mandatory for short options too. --backup[=CONTROL] make a backup of each existing destination file -b like --backup but does not accept an argument -d, -F, --directory hard link directories (super-user only) -f, --force remove existing destination files -n, --no-dereference treat destination that is a symlink to a directory as if it were a normal file -i, --interactive prompt whether to remove destinations -s, --symbolic make symbolic links instead of hard links -S, --suffix=SUFFIX override the usual backup suffix --target-directory=DIRECTORY specify the DIRECTORY in which to create the links -v, --verbose print name of each file before linking --help display this help and exit --version output version information and exit The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX. The version control method may be selected via the --backup option or through the VERSION_CONTROL environment variable. Here are the values: none, off never make backups (even if --backup is given) numbered, t make numbered backups existing, nil numbered if numbered backups exist, simple otherwise simple, never always make simple backups AUTHOR
Written by Mike Parker and David MacKenzie. REPORTING BUGS
Report bugs to <bug-coreutils@gnu.org>. COPYRIGHT
Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. SEE ALSO
The full documentation for ln is maintained as a Texinfo manual. If the info and ln programs are properly installed at your site, the com- mand info ln should give you access to the complete manual. ln (coreutils) 4.5.3 February 2003 LN(1)
Man Page