[DRE-commits] [rake-compiler] 02/04: Update manpage

Youhei SASAKI uwabami-guest at moszumanska.debian.org
Thu Feb 26 06:28:46 UTC 2015


This is an automated email from the git hooks/post-receive script.

uwabami-guest pushed a commit to branch master
in repository rake-compiler.

commit 41796366ff66f34a062b3d896c0fac1d3879e910
Author: Youhei SASAKI <uwabami at gfd-dennou.org>
Date:   Thu Feb 26 14:54:50 2015 +0900

    Update manpage
    
    Signed-off-by: Youhei SASAKI <uwabami at gfd-dennou.org>
---
 debian/rake-compiler.1 | 197 ++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 194 insertions(+), 3 deletions(-)

diff --git a/debian/rake-compiler.1 b/debian/rake-compiler.1
index e2527f4..9986c6d 100644
--- a/debian/rake-compiler.1
+++ b/debian/rake-compiler.1
@@ -1,4 +1,4 @@
-.TH RAKE-COMPILER "1" "May 2012" "rake-compiler, version 0.8.1" "User Commands"
+.TH RAKE-COMPILER "1" "February 2015" "rake-compiler, version 0.9.5" "User Commands"
 .SH NAME
 rake-compiler \- Rake-based Ruby Extension (C, Java) task generator
 .SH DESCRIPTION
@@ -9,7 +9,198 @@ It follows *convention over configuration* by advocating a standardized build an
 rake-compiler is the result of many hard-won experiences dealing with several diverse RubyGems that provided native extensions for different platforms and different user configurations in different ways. Details such as differences in code portability, differences in code clarity, and differences in project directory structure often made it very difficult for newcomers to those RubyGems.
 
 .SH USAGE
-Same as Rake. see man (1) rake.
+rake\-compiler [\-f rakefile] {options} targets...
+.PP
+.SH OPTIONS
+.TP
+\fB\-\-backtrace\fR=\fI\,[OUT]\/\fR
+Enable full backtrace.  OUT can be stderr (default) or stdout.
+.TP
+\fB\-\-comments\fR
+Show commented tasks only
+.TP
+\fB\-\-job\-stats\fR [LEVEL]
+Display job statistics. LEVEL=history displays a complete job list
+.TP
+\fB\-\-rules\fR
+Trace the rules resolution.
+.HP
+\fB\-\-suppress\-backtrace\fR PATTERN Suppress backtrace lines matching regexp PATTERN. Ignored if \fB\-\-trace\fR is on.
+.TP
+\fB\-A\fR, \fB\-\-all\fR
+Show all tasks, even uncommented ones (in combination with \fB\-T\fR or \fB\-D\fR)
+.TP
+\fB\-B\fR, \fB\-\-build\-all\fR
+Build all prerequisites, including those which are up\-to\-date.
+.TP
+\fB\-D\fR, \fB\-\-describe\fR [PATTERN]
+Describe the tasks (matching optional PATTERN), then exit.
+.TP
+\fB\-e\fR, \fB\-\-execute\fR CODE
+Execute some Ruby code and exit.
+.TP
+\fB\-E\fR, \fB\-\-execute\-continue\fR CODE
+Execute some Ruby code, then continue with normal task processing.
+.TP
+\fB\-f\fR, \fB\-\-rakefile\fR [FILENAME]
+Use FILENAME as the rakefile to search for.
+.TP
+\fB\-G\fR, \fB\-\-no\-system\fR, \fB\-\-nosystem\fR
+Use standard project Rakefile search paths, ignore system wide rakefiles.
+.TP
+\fB\-g\fR, \fB\-\-system\fR
+Using system wide (global) rakefiles (usually '~/.rake/*.rake').
+.TP
+\fB\-I\fR, \fB\-\-libdir\fR LIBDIR
+Include LIBDIR in the search path for required modules.
+.TP
+\fB\-j\fR, \fB\-\-jobs\fR [NUMBER]
+Specifies the maximum number of tasks to execute in parallel. (default is number of CPU cores + 4)
+.TP
+\fB\-m\fR, \fB\-\-multitask\fR
+Treat all tasks as multitasks.
+.TP
+\fB\-n\fR, \fB\-\-dry\-run\fR
+Do a dry run without executing actions.
+.TP
+\fB\-N\fR, \fB\-\-no\-search\fR, \fB\-\-nosearch\fR
+Do not search parent directories for the Rakefile.
+.TP
+\fB\-P\fR, \fB\-\-prereqs\fR
+Display the tasks and dependencies, then exit.
+.TP
+\fB\-p\fR, \fB\-\-execute\-print\fR CODE
+Execute some Ruby code, print the result, then exit.
+.TP
+\fB\-q\fR, \fB\-\-quiet\fR
+Do not log messages to standard output.
+.TP
+\fB\-r\fR, \fB\-\-require\fR MODULE
+Require MODULE before executing rakefile.
+.TP
+\fB\-R\fR, \fB\-\-rakelibdir\fR RAKELIBDIR,
+Auto\-import any .rake files in RAKELIBDIR. (default is 'rakelib')
+.HP
+\fB\-\-rakelib\fR
+.TP
+\fB\-s\fR, \fB\-\-silent\fR
+Like \fB\-\-quiet\fR, but also suppresses the 'in directory' announcement.
+.TP
+\fB\-t\fR, \fB\-\-trace\fR=\fI\,[OUT]\/\fR
+Turn on invoke/execute tracing, enable full backtrace. OUT can be stderr (default) or stdout.
+.TP
+\fB\-T\fR, \fB\-\-tasks\fR [PATTERN]
+Display the tasks (matching optional PATTERN) with descriptions, then exit.
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+Log message to standard output.
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+Display the program version.
+.TP
+\fB\-W\fR, \fB\-\-where\fR [PATTERN]
+Describe the tasks (matching optional PATTERN), then exit.
+.TP
+\fB\-X\fR, \fB\-\-no\-deprecation\-warnings\fR
+Disable the deprecation warnings.
+.TP
+\fB\-h\fR, \fB\-H\fR, \fB\-\-help\fR
+Display this help message.
+.PP
+Options are ...
+.TP
+\fB\-\-backtrace\fR=\fI\,[OUT]\/\fR
+Enable full backtrace.  OUT can be stderr (default) or stdout.
+.TP
+\fB\-\-comments\fR
+Show commented tasks only
+.TP
+\fB\-\-job\-stats\fR [LEVEL]
+Display job statistics. LEVEL=history displays a complete job list
+.TP
+\fB\-\-rules\fR
+Trace the rules resolution.
+.HP
+\fB\-\-suppress\-backtrace\fR PATTERN Suppress backtrace lines matching regexp PATTERN. Ignored if \fB\-\-trace\fR is on.
+.TP
+\fB\-A\fR, \fB\-\-all\fR
+Show all tasks, even uncommented ones (in combination with \fB\-T\fR or \fB\-D\fR)
+.TP
+\fB\-B\fR, \fB\-\-build\-all\fR
+Build all prerequisites, including those which are up\-to\-date.
+.TP
+\fB\-D\fR, \fB\-\-describe\fR [PATTERN]
+Describe the tasks (matching optional PATTERN), then exit.
+.TP
+\fB\-e\fR, \fB\-\-execute\fR CODE
+Execute some Ruby code and exit.
+.TP
+\fB\-E\fR, \fB\-\-execute\-continue\fR CODE
+Execute some Ruby code, then continue with normal task processing.
+.TP
+\fB\-f\fR, \fB\-\-rakefile\fR [FILENAME]
+Use FILENAME as the rakefile to search for.
+.TP
+\fB\-G\fR, \fB\-\-no\-system\fR, \fB\-\-nosystem\fR
+Use standard project Rakefile search paths, ignore system wide rakefiles.
+.TP
+\fB\-g\fR, \fB\-\-system\fR
+Using system wide (global) rakefiles (usually '~/.rake/*.rake').
+.TP
+\fB\-I\fR, \fB\-\-libdir\fR LIBDIR
+Include LIBDIR in the search path for required modules.
+.TP
+\fB\-j\fR, \fB\-\-jobs\fR [NUMBER]
+Specifies the maximum number of tasks to execute in parallel. (default is number of CPU cores + 4)
+.TP
+\fB\-m\fR, \fB\-\-multitask\fR
+Treat all tasks as multitasks.
+.TP
+\fB\-n\fR, \fB\-\-dry\-run\fR
+Do a dry run without executing actions.
+.TP
+\fB\-N\fR, \fB\-\-no\-search\fR, \fB\-\-nosearch\fR
+Do not search parent directories for the Rakefile.
+.TP
+\fB\-P\fR, \fB\-\-prereqs\fR
+Display the tasks and dependencies, then exit.
+.TP
+\fB\-p\fR, \fB\-\-execute\-print\fR CODE
+Execute some Ruby code, print the result, then exit.
+.TP
+\fB\-q\fR, \fB\-\-quiet\fR
+Do not log messages to standard output.
+.TP
+\fB\-r\fR, \fB\-\-require\fR MODULE
+Require MODULE before executing rakefile.
+.TP
+\fB\-R\fR, \fB\-\-rakelibdir\fR RAKELIBDIR,
+Auto\-import any .rake files in RAKELIBDIR. (default is 'rakelib')
+.HP
+\fB\-\-rakelib\fR
+.TP
+\fB\-s\fR, \fB\-\-silent\fR
+Like \fB\-\-quiet\fR, but also suppresses the 'in directory' announcement.
+.TP
+\fB\-t\fR, \fB\-\-trace\fR=\fI\,[OUT]\/\fR
+Turn on invoke/execute tracing, enable full backtrace. OUT can be stderr (default) or stdout.
+.TP
+\fB\-T\fR, \fB\-\-tasks\fR [PATTERN]
+Display the tasks (matching optional PATTERN) with descriptions, then exit.
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+Log message to standard output.
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+Display the program version.
+.TP
+\fB\-W\fR, \fB\-\-where\fR [PATTERN]
+Describe the tasks (matching optional PATTERN), then exit.
+.TP
+\fB\-X\fR, \fB\-\-no\-deprecation\-warnings\fR
+Disable the deprecation warnings.
+.TP
+\fB\-h\fR, \fB\-H\fR, \fB\-\-help\fR
+Display this help message.
 .SH AUTHOR
 This manual page was written by Youhei SASAKI <uwabami at gfd-dennou.org>, for the Debian GNU/Linux system(but may be used by others).
-

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/rake-compiler.git



More information about the Pkg-ruby-extras-commits mailing list