rdtool 0.6.31 → 0.6.32
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING.txt +282 -617
- data/Gemfile +1 -7
- data/HISTORY +5 -1
- data/LICENSE.txt +2 -2
- data/README.html +83 -0
- data/README.ja.html +90 -0
- data/README.rd +2 -2
- data/README.rd.ja +1 -1
- data/Rakefile +145 -20
- data/bin/rd2 +1 -1
- data/doc/rd-draft.html +456 -0
- data/doc/rd-draft.ja.html +466 -0
- data/lib/rd/package.rb +2 -2
- data/lib/rd/rd2html-lib.rb +1 -1
- data/lib/rd/rd2man-lib.rb +1 -1
- data/lib/rd/rdblockparser.ry +1 -1
- data/lib/rd/rdblockparser.tab.rb +5 -5
- data/lib/rd/rdinlineparser.ry +1 -1
- data/lib/rd/rdinlineparser.tab.rb +5 -5
- data/lib/rd/tree.rb +1 -1
- data/lib/rd/version.rb +3 -1
- data/lib/rd/visitor.rb +1 -1
- data/makerdtool.rb +3 -3
- data/rdtool.gemspec +112 -125
- data/setup.rb +6 -6
- data/utils/rd-mode.el +41 -0
- metadata +55 -27
- data/MANIFEST +0 -89
- data/VERSION +0 -1
- data/test.rb +0 -33
data/Gemfile
CHANGED
data/HISTORY
CHANGED
@@ -67,10 +67,14 @@ RDtool include files which is copyrighted by somebody elses.
|
|
67
67
|
Please read these files for those lisence info.
|
68
68
|
|
69
69
|
= CHANGES
|
70
|
+
:0.6.32
|
71
|
+
* Fix for Ruby 1.9.1. Thanks to Shin-ya Murakami
|
72
|
+
* Update Rakefile to create gem and .tar.gz, no longer needed jeweler.
|
73
|
+
* Add RD::Version into rd/version.rb
|
70
74
|
:0.6.31
|
71
75
|
* Version bump from 0.6.21
|
72
76
|
* Change Maintainer to Youhei SASAKI
|
73
|
-
* Create gem. Many thanks to Kouhei
|
77
|
+
* Create gem. Many thanks to Kouhei Sutou!!
|
74
78
|
* apply OptionParser Issue, Thanks to Masaki Hasegawa!!
|
75
79
|
:0.6.21
|
76
80
|
* setup.rb version up -> 3.4.1
|
data/LICENSE.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.
|
1
|
+
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
|
2
2
|
You can redistribute it and/or modify it under either the terms of the GPL
|
3
|
-
(see COPYING.txt
|
3
|
+
version 2 (see the file COPYING.txt), or the conditions below:
|
4
4
|
|
5
5
|
1. You may make and give away verbatim copies of the source form of the
|
6
6
|
software without restriction, provided that you duplicate all of the
|
data/README.html
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<head>
|
7
|
+
<title>README.rd</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<h1><a name="label-0" id="label-0">RDtool 0.6.31</a></h1><!-- RDLabel: "RDtool 0.6.31" -->
|
11
|
+
<h2><a name="label-1" id="label-1">What is RDtool</a></h2><!-- RDLabel: "What is RDtool" -->
|
12
|
+
<p>RD is Ruby's POD. RDtool is formatter for RD.</p>
|
13
|
+
<h2><a name="label-2" id="label-2">What is Changed</a></h2><!-- RDLabel: "What is Changed" -->
|
14
|
+
<p>See HISTORY.</p>
|
15
|
+
<h2><a name="label-3" id="label-3">How to Install</a></h2><!-- RDLabel: "How to Install" -->
|
16
|
+
<ol>
|
17
|
+
<li><kbd>su</kbd> if you install into public directories.</li>
|
18
|
+
<li><kbd>ruby setup.rb</kbd></li>
|
19
|
+
<li>If you want to use , utils/rd-mode.el, install it <em>by hand</em>.</li>
|
20
|
+
</ol>
|
21
|
+
<h2><a name="label-4" id="label-4">How to use</a></h2><!-- RDLabel: "How to use" -->
|
22
|
+
<p>Simply,</p>
|
23
|
+
<pre>% rd2 rdfile.rd > outputfile</pre>
|
24
|
+
<p>If you want to indicate format-library, do</p>
|
25
|
+
<pre>% rd2 -r library rdfile.rd > outputfile</pre>
|
26
|
+
<p>Use <kbd> rd2 --help </kbd> for more options.</p>
|
27
|
+
<p>For options depend on format-library, enter <kbd>--help</kbd> after
|
28
|
+
the indication of format-library. For example,</p>
|
29
|
+
<pre>% rd2 -r rd/rd2html-lib.rb --help</pre>
|
30
|
+
<p>rd2 load "${HOME}/.rd2rc" when it runs.</p>
|
31
|
+
<h2><a name="label-5" id="label-5">How to write RD?</a></h2><!-- RDLabel: "How to write RD?" -->
|
32
|
+
<p>Please read doc/rd-draft.rd.</p>
|
33
|
+
<h2><a name="label-6" id="label-6">About bug report</a></h2><!-- RDLabel: "About bug report" -->
|
34
|
+
<p>If you find a bug in RDtool, please add new
|
35
|
+
<a href="https://github.com/uwabami/rdtool/issues">issues at gihtub</a>,
|
36
|
+
or E-mail me <a href="mailto:uwabami@gfd-dennou.org"><URL:mailto:uwabami@gfd-dennou.org></a>.</p>
|
37
|
+
<h2><a name="label-7" id="label-7">License</a></h2><!-- RDLabel: "License" -->
|
38
|
+
<p>You can use/re-distribute/change RDtool under Ruby's License or GPL-2+,
|
39
|
+
see LICNESE.txt and COPYING.txt. This distribution of RDtool include files
|
40
|
+
that are copyrighted by somebody else, and these files can be
|
41
|
+
re-distributed under those own license. These files include the
|
42
|
+
condition of those licenses in themselves.</p>
|
43
|
+
<p>The license information for every files is as follows.</p>
|
44
|
+
<dl>
|
45
|
+
<dt><a name="label-8" id="label-8">Files: */</a></dt><!-- RDLabel: "Files: */" -->
|
46
|
+
<dd>
|
47
|
+
<ul>
|
48
|
+
<li>Copyright: 2004 MoonWolf <moonwolf@moonwolf.com></li>
|
49
|
+
<li>License: Ruby's License or GPL-2+</li>
|
50
|
+
</ul>
|
51
|
+
</dd>
|
52
|
+
<dt><a name="label-9" id="label-9">Files: bin/rdswap</a></dt><!-- RDLabel: "Files: bin/rdswap" -->
|
53
|
+
<dd>
|
54
|
+
<ul>
|
55
|
+
<li>Copyright: 1999 C.Hintze</li>
|
56
|
+
<li>License: Ruby's License or GPL-2+</li>
|
57
|
+
</ul>
|
58
|
+
</dd>
|
59
|
+
<dt><a name="label-10" id="label-10">Files: lib/rd/rd2man-lib.rb</a></dt><!-- RDLabel: "Files: lib/rd/rd2man-lib.rb" -->
|
60
|
+
<dd>
|
61
|
+
<ul>
|
62
|
+
<li>Copyright: 2000 WATANABE Hirofumi</li>
|
63
|
+
<li>License: Ruby's License or GPL-2+</li>
|
64
|
+
</ul>
|
65
|
+
</dd>
|
66
|
+
<dt><a name="label-11" id="label-11">Files: setup.rb</a></dt><!-- RDLabel: "Files: setup.rb" -->
|
67
|
+
<dd>
|
68
|
+
<ul>
|
69
|
+
<li>Copyright: 2000-2006 Minero Aoki</li>
|
70
|
+
<li>License: LGPL-2.1</li>
|
71
|
+
</ul>
|
72
|
+
</dd>
|
73
|
+
<dt><a name="label-12" id="label-12">Files: utils/rd-mode.el</a></dt><!-- RDLabel: "Files: utils/rd-mode.el" -->
|
74
|
+
<dd>
|
75
|
+
<ul>
|
76
|
+
<li>Copyright: 1999 Koji Arai, Toshiro Kuwabara.</li>
|
77
|
+
<li>License: GPL-2+</li>
|
78
|
+
</ul>
|
79
|
+
</dd>
|
80
|
+
</dl>
|
81
|
+
|
82
|
+
</body>
|
83
|
+
</html>
|
data/README.ja.html
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<head>
|
7
|
+
<title>README.rd.ja</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<h1><a name="label-0" id="label-0">RDtool 0.6.31</a></h1><!-- RDLabel: "RDtool 0.6.31" -->
|
11
|
+
<h2><a name="label-1" id="label-1">RDってなに?</a></h2><!-- RDLabel: "RDってなに?" -->
|
12
|
+
<p>RDはRubyにおけるPOD(Plain Old Documentation)のようなものです。
|
13
|
+
RDtoolはRDのフォーマッタであり、RDをHTMLなどに変換できます。</p>
|
14
|
+
<h2><a name="label-2" id="label-2">何が変わった?</a></h2><!-- RDLabel: "何が変わった?" -->
|
15
|
+
<p>HISTORYを見てください。</p>
|
16
|
+
<h2><a name="label-3" id="label-3">インストールの方法</a></h2><!-- RDLabel: "インストールの方法" -->
|
17
|
+
<ol>
|
18
|
+
<li>必要なら、<kbd>su</kbd></li>
|
19
|
+
<li><kbd>ruby setup.rb</kbd></li>
|
20
|
+
<li>utils/rd-mode.elを使いたいならば
|
21
|
+
それらを<em>手で</em>インストールします。</li>
|
22
|
+
</ol>
|
23
|
+
<h2><a name="label-4" id="label-4">どうやって使うか。</a></h2><!-- RDLabel: "どうやって使うか。" -->
|
24
|
+
<p>基本的には、こんな感じ。</p>
|
25
|
+
<pre>% rd2 rdfile.rd > outputfile</pre>
|
26
|
+
<p>フォーマットライブラリを指定したい時は、こう。</p>
|
27
|
+
<pre>% rd2 -r library rdfile.rd > outputfile</pre>
|
28
|
+
<p><kbd> rd2 --help </kbd>でオプションの詳細がでます。</p>
|
29
|
+
<p>フォーマットライブラリ依存のオプションは先にフォーマットライブラリの
|
30
|
+
指定をしてから<kbd>--help</kbd>。例えば、</p>
|
31
|
+
<pre>% rd2 -r rd/rd2html-lib.rb --help</pre>
|
32
|
+
<p>rd2はホームディレクトリにある".rd2rc"というファイルを読み込みます。
|
33
|
+
これはRubyスクリプトです。</p>
|
34
|
+
<h2><a name="label-5" id="label-5">RDの書き方</a></h2><!-- RDLabel: "RDの書き方" -->
|
35
|
+
<p>doc/rd-draft.rdを読んでください。</p>
|
36
|
+
<h2><a name="label-6" id="label-6">バグ報告</a></h2><!-- RDLabel: "バグ報告" -->
|
37
|
+
<p>If you find a bug in RDtool, please add new
|
38
|
+
<a href="https://github.com/uwabami/rdtool/issues">issues at gihtub</a>,
|
39
|
+
or E-mail me <a href="mailto:uwabami@gfd-dennou.org"><URL:mailto:uwabami@gfd-dennou.org></a>.</p>
|
40
|
+
<p>バグを見付けた時は、
|
41
|
+
<a href="https://github.com/uwabami/rdtool/issues">github の issues</a>
|
42
|
+
に報告するか、
|
43
|
+
次のアドレスまでメールを下さると幸いです:
|
44
|
+
<a href="mailto:uwabami@gfd-dennou.org"><URL:mailto:uwabami@gfd-dennou.org></a></p>
|
45
|
+
<h2><a name="label-7" id="label-7">ライセンス</a></h2><!-- RDLabel: "ライセンス" -->
|
46
|
+
<p>RDtoolはRuby's LicenseかGPL-2+の下で使用/配布/改造してください。
|
47
|
+
RDtoolのパッケージにはTosh以外の人が著作権を持つファイルが含まれています。
|
48
|
+
それらのファイルについての配布条件はファイル自体に書かれたライセンスの下で
|
49
|
+
行ってください。</p>
|
50
|
+
<p>ファイル毎のライセンス表記は以下の通りです。</p>
|
51
|
+
<dl>
|
52
|
+
<dt><a name="label-8" id="label-8">Files: */</a></dt><!-- RDLabel: "Files: */" -->
|
53
|
+
<dd>
|
54
|
+
<ul>
|
55
|
+
<li>Copyright: 2004 MoonWolf</li>
|
56
|
+
<li>License: Ruby's License or GPL-2+</li>
|
57
|
+
</ul>
|
58
|
+
</dd>
|
59
|
+
<dt><a name="label-9" id="label-9">Files: bin/rdswap</a></dt><!-- RDLabel: "Files: bin/rdswap" -->
|
60
|
+
<dd>
|
61
|
+
<ul>
|
62
|
+
<li>Copyright: 1999 C.Hintze</li>
|
63
|
+
<li>License: Ruby's License or GPL-2+</li>
|
64
|
+
</ul>
|
65
|
+
</dd>
|
66
|
+
<dt><a name="label-10" id="label-10">Files: lib/rd/rd2man-lib.rb</a></dt><!-- RDLabel: "Files: lib/rd/rd2man-lib.rb" -->
|
67
|
+
<dd>
|
68
|
+
<ul>
|
69
|
+
<li>Copyright: 2000 WATANABE Hirofumi</li>
|
70
|
+
<li>License: Ruby's License or GPL-2+</li>
|
71
|
+
</ul>
|
72
|
+
</dd>
|
73
|
+
<dt><a name="label-11" id="label-11">Files: setup.rb</a></dt><!-- RDLabel: "Files: setup.rb" -->
|
74
|
+
<dd>
|
75
|
+
<ul>
|
76
|
+
<li>Copyright: 2000-2006 Minero Aoki</li>
|
77
|
+
<li>License: LGPL-2.1</li>
|
78
|
+
</ul>
|
79
|
+
</dd>
|
80
|
+
<dt><a name="label-12" id="label-12">Files: utils/rd-mode.el</a></dt><!-- RDLabel: "Files: utils/rd-mode.el" -->
|
81
|
+
<dd>
|
82
|
+
<ul>
|
83
|
+
<li>Copyright: 1999 Koji Arai, Toshiro Kuwabara.</li>
|
84
|
+
<li>License: GPL-2+</li>
|
85
|
+
</ul>
|
86
|
+
</dd>
|
87
|
+
</dl>
|
88
|
+
|
89
|
+
</body>
|
90
|
+
</html>
|
data/README.rd
CHANGED
@@ -44,8 +44,8 @@ or E-mail me ((<URL:mailto:uwabami@gfd-dennou.org>)).
|
|
44
44
|
|
45
45
|
== License
|
46
46
|
|
47
|
-
You can use/re-distribute/change RDtool under Ruby's License or GPL
|
48
|
-
LICNESE.txt and COPYING.txt. This distribution of RDtool include files
|
47
|
+
You can use/re-distribute/change RDtool under Ruby's License or GPL-2+,
|
48
|
+
see LICNESE.txt and COPYING.txt. This distribution of RDtool include files
|
49
49
|
that are copyrighted by somebody else, and these files can be
|
50
50
|
re-distributed under those own license. These files include the
|
51
51
|
condition of those licenses in themselves.
|
data/README.rd.ja
CHANGED
@@ -54,7 +54,7 @@ or E-mail me ((<URL:mailto:uwabami@gfd-dennou.org>)).
|
|
54
54
|
|
55
55
|
== ライセンス
|
56
56
|
|
57
|
-
RDtoolはRuby's LicenseかGPL
|
57
|
+
RDtoolはRuby's LicenseかGPL-2+の下で使用/配布/改造してください。
|
58
58
|
RDtoolのパッケージにはTosh以外の人が著作権を持つファイルが含まれています。
|
59
59
|
それらのファイルについての配布条件はファイル自体に書かれたライセンスの下で
|
60
60
|
行ってください。
|
data/Rakefile
CHANGED
@@ -1,26 +1,151 @@
|
|
1
1
|
# -*- mode: ruby; coding: utf-8 -*-
|
2
|
-
|
3
2
|
require 'rubygems'
|
4
3
|
require 'rake'
|
4
|
+
require 'rake/packagetask'
|
5
|
+
require 'rake/testtask'
|
6
|
+
require 'rake/clean'
|
7
|
+
require 'date' unless defined? Date
|
8
|
+
|
9
|
+
#############################################################################
|
10
|
+
# Helper functions
|
11
|
+
#############################################################################
|
12
|
+
def name
|
13
|
+
@name ||= Dir['*.gemspec'].first.split('.').first
|
14
|
+
end
|
15
|
+
|
16
|
+
def version
|
17
|
+
require './lib/rd/version.rb'
|
18
|
+
RD::VERSION
|
19
|
+
end
|
20
|
+
|
21
|
+
def date
|
22
|
+
Date.today.to_s
|
23
|
+
end
|
24
|
+
|
25
|
+
def rubyforge_project
|
26
|
+
name
|
27
|
+
end
|
28
|
+
|
29
|
+
def gemspec_file
|
30
|
+
"#{name}.gemspec"
|
31
|
+
end
|
32
|
+
|
33
|
+
def gem_file
|
34
|
+
"#{name}-#{version}.gem"
|
35
|
+
end
|
36
|
+
|
37
|
+
def replace_header(head, header_name)
|
38
|
+
head.sub!(/(\.#{header_name}\s*= ').*'/) { "#{$1}#{send(header_name)}'"}
|
39
|
+
end
|
40
|
+
|
41
|
+
# src files for parser and html documents
|
42
|
+
RACC_SRC = FileList['lib/rd/*.ry']
|
43
|
+
RACC_GENERATED = RACC_SRC.ext('.tab.rb')
|
44
|
+
HTML_SRC = FileList['**/*.rd'].reject{|f| f =~/pkg/}
|
45
|
+
HTML_GENERATED = HTML_SRC.ext('.html')
|
46
|
+
HTML_JA_SRC = FileList['**/*.rd.ja'].reject{|f| f =~/pkg/}
|
47
|
+
HTML_JA_GENERATED = HTML_JA_SRC.collect{|x| x.gsub(/\.rd\.ja/,'.ja.html')}
|
48
|
+
GENERATED_FILES = RACC_GENERATED + HTML_GENERATED + HTML_JA_GENERATED
|
49
|
+
CLOBBER.push GENERATED_FILES
|
5
50
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
gem.summary = %Q{RDtool is formatter for RD.}
|
13
|
-
gem.description = %Q{RD is multipurpose documentation format created for documentating Ruby and output of Ruby world. You can embed RD into Ruby script. And RD have neat syntax which help you to read document in Ruby script. On the other hand, RD have a feature for class reference.}
|
14
|
-
gem.email = "uwabami@gfd-dennou.org"
|
15
|
-
gem.authors = ["Youhei SASAKI"]
|
16
|
-
gem.extra_rdoc_files = ""
|
17
|
-
# dependencies defined in Gemfile
|
18
|
-
end
|
19
|
-
Jeweler::RubygemsDotOrgTasks.new
|
20
|
-
|
21
|
-
desc "Run tests"
|
22
|
-
task :test do
|
23
|
-
exec_ruby = File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name'])
|
24
|
-
exec("#{exec_ruby} -w -v -Ilib:test test.rb")
|
51
|
+
desc "Update parser"
|
52
|
+
task :racc => RACC_GENERATED
|
53
|
+
RACC_SRC.each do |f|
|
54
|
+
file f.ext('.tab.rb') => f do |t|
|
55
|
+
sh "racc -o #{t.name} #{t.prerequisites[0]}"
|
56
|
+
end
|
25
57
|
end
|
58
|
+
desc "Update html files"
|
59
|
+
task :doc => [:racc, :html, :html_ja]
|
60
|
+
task :html => HTML_GENERATED
|
61
|
+
HTML_SRC.each do |f|
|
62
|
+
file f.ext('.html') => f do |t|
|
63
|
+
sh "ruby -Ilib bin/rd2 #{t.prerequisites[0]} > #{t.name}"
|
64
|
+
end
|
65
|
+
end
|
66
|
+
task :html_ja => HTML_JA_GENERATED
|
67
|
+
HTML_JA_SRC.each do |f|
|
68
|
+
file f.gsub(/\.rd\.ja/,'.ja.html') => f do |t|
|
69
|
+
sh "ruby -Ilib bin/rd2 #{t.prerequisites[0]} > #{t.name}"
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
26
73
|
task :default => :test
|
74
|
+
desc "=> clobber"
|
75
|
+
task :distclean => :clobber
|
76
|
+
|
77
|
+
task :test => :racc
|
78
|
+
Rake::TestTask.new do |t|
|
79
|
+
t.libs << "test"
|
80
|
+
t.test_files = FileList['test/test-*.rb']
|
81
|
+
t.verbose = true
|
82
|
+
end
|
83
|
+
|
84
|
+
desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
|
85
|
+
task :release => :build do
|
86
|
+
unless `git branch` =~ /^\* master$/
|
87
|
+
puts "You must be on the master branch to release!"
|
88
|
+
exit!
|
89
|
+
end
|
90
|
+
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
91
|
+
sh "git tag v#{version}"
|
92
|
+
sh "git push origin master"
|
93
|
+
sh "git push origin v#{version}"
|
94
|
+
sh "gem push pkg/#{name}-#{version}.gem"
|
95
|
+
end
|
96
|
+
|
97
|
+
desc "Generate #{gem_file}"
|
98
|
+
task :build => [:gemspec, :package] do
|
99
|
+
sh "mkdir -p pkg"
|
100
|
+
sh "gem build #{gemspec_file}"
|
101
|
+
sh "mv #{gem_file} pkg/"
|
102
|
+
end
|
103
|
+
|
104
|
+
desc "Update #{gemspec_file}"
|
105
|
+
task :gemspec => [:racc, :doc] do
|
106
|
+
unless File.read('HISTORY') =~ /#{version}/
|
107
|
+
puts "Update HISTORY!!"
|
108
|
+
exit!
|
109
|
+
end
|
110
|
+
spec = File.read(gemspec_file)
|
111
|
+
head, manifest, tail = spec.split(" # = MANIFEST =\n")
|
112
|
+
replace_header(head, :name)
|
113
|
+
replace_header(head, :version)
|
114
|
+
replace_header(head, :date)
|
115
|
+
# replace_header(head, :rubyforge_project)
|
116
|
+
files = (`git ls-files`.split("\n") + GENERATED_FILES.to_a).
|
117
|
+
sort.
|
118
|
+
reject {|file| file =~/^\./}.
|
119
|
+
reject {|file| file =~/^(rdoc|pkg)/}.
|
120
|
+
map {|file| " #{file}" }.
|
121
|
+
join("\n")
|
122
|
+
manifest = " s.files = %w[\n#{files}\n ]\n"
|
123
|
+
spec = [head, manifest, tail].join(" # = MANIFEST =\n")
|
124
|
+
File.open(gemspec_file, 'w'){ |io| io.write(spec)}
|
125
|
+
puts "Update #{gemspec_file}"
|
126
|
+
end
|
127
|
+
|
128
|
+
Rake::PackageTask.new("rdtool", "#{version}") do |t|
|
129
|
+
t.need_tar_gz = true
|
130
|
+
t.package_files.include GENERATED_FILES
|
131
|
+
t.package_files.include('lib/**/*')
|
132
|
+
t.package_files.include('README*')
|
133
|
+
t.package_files.include('bin/*')
|
134
|
+
t.package_files.include('doc/*')
|
135
|
+
t.package_files.include('utils')
|
136
|
+
t.package_files.include('*.txt')
|
137
|
+
t.package_files.include('HISTORY')
|
138
|
+
t.package_files.include('setup.rb')
|
139
|
+
end
|
140
|
+
|
141
|
+
desc "Update/Sync RD::VERSION"
|
142
|
+
task :bump_version do
|
143
|
+
FileList['README*'].each do |path|
|
144
|
+
#path = File.expand_path(path)
|
145
|
+
orig = IO.read(path)
|
146
|
+
after = orig.sub(/(^=\sRDtool\s)\d+\.\d+\.\d+$/, '\1' + version)
|
147
|
+
unless after == orig
|
148
|
+
File.open(path, 'wb'){|f| f.write after }
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
data/bin/rd2
CHANGED
data/doc/rd-draft.html
ADDED
@@ -0,0 +1,456 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<head>
|
7
|
+
<title>doc/rd-draft.rd</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<h1><a name="label-0" id="label-0">RD working draft</a></h1><!-- RDLabel: "RD working draft" -->
|
11
|
+
<p>Japanese version is <a href="http://www.ruby-lang.org/~rubikitch/RDP.cgi?cmd=view&name=RD">here</a>.</p>
|
12
|
+
<h2><a name="label-1" id="label-1">What is RD?</a></h2><!-- RDLabel: "What is RD?" -->
|
13
|
+
<p>RD is Ruby's POD, embeddable documentation format in script file. </p>
|
14
|
+
<p>RD is influenced mainly from plain2, a program to translate from plain text to
|
15
|
+
some mark-up language. So, RD looks like plain text, and its simpleness and
|
16
|
+
neatness make it easy to read and write.</p>
|
17
|
+
<h2><a name="label-2" id="label-2">How does the interpreter work for RD?</a></h2><!-- RDLabel: "How does the interpreter work for RD?" -->
|
18
|
+
<p>Ruby's interpreter, <code>ruby</code>, simply ignores text between a line beginning
|
19
|
+
with "<code>=begin</code>" and one beginning with "<code>=end</code>". So, RD is not only
|
20
|
+
embeddable. You can write anything between <code>=begin</code> and <code>=end</code>. RD is
|
21
|
+
one of them, but RD will be a standard one.<a name="footmark-1" id="footmark-1" href="#foottext-1"><sup><small>*1</small></sup></a></p>
|
22
|
+
<h2><a name="label-3" id="label-3">Concepts and Syntax</a></h2><!-- RDLabel: "Concepts and Syntax" -->
|
23
|
+
<h3><a name="label-4" id="label-4">Element, Block and Inline</a></h3><!-- RDLabel: "Element, Block and Inline" -->
|
24
|
+
<p>We will use the term "Element" for features of RD which add information
|
25
|
+
of document structure to text. In addition, we use a term
|
26
|
+
"<a href="#label-5">Block</a>" for Elements for large and global structures, and a term
|
27
|
+
"<a href="#label-35">Inline</a>" for ones for small and local decorations.</p>
|
28
|
+
<p>Paragraph, headline or list is a kind of Block. RD uses indentation and
|
29
|
+
special characters to describe Blocks. You can also write complicated
|
30
|
+
structure to nested Blocks. And this style of Block looks naturally like
|
31
|
+
plain text format. See <a href="#label-5">Block</a> for details.</p>
|
32
|
+
<p>Emphasis, code or reference is a kind of Inline. Parentheses and special
|
33
|
+
characters, like ((? ... ?)), are used for Inline. Almost all
|
34
|
+
Inline may be nested inside each other. See <a href="#label-35">Inline</a> for more details.</p>
|
35
|
+
<h3><a name="label-5" id="label-5">Block</a></h3><!-- RDLabel: "Block" -->
|
36
|
+
<h4><a name="label-6" id="label-6">Basic Syntax</a></h4><!-- RDLabel: "Basic Syntax" -->
|
37
|
+
<p>Block has line oriented syntax. i.e. each character on the same line belongs to the
|
38
|
+
same Block. And the indentation of the line represents nesting level and type of Block.
|
39
|
+
The first character of the line represents the type of Block.</p>
|
40
|
+
<h5><a name="label-7" id="label-7">Concepts and Terms</a></h5><!-- RDLabel: "Concepts and Terms" -->
|
41
|
+
<dl>
|
42
|
+
<dt><a name="label-8" id="label-8">Baseline</a></dt><!-- RDLabel: "Baseline" -->
|
43
|
+
<dd>
|
44
|
+
Baseline is standard depth of indent. Relative depth between indent of one
|
45
|
+
line and Baseline affects its Block-type.
|
46
|
+
</dd>
|
47
|
+
<dt><a name="label-9" id="label-9">Head Char</a></dt><!-- RDLabel: "Head Char" -->
|
48
|
+
<dd>
|
49
|
+
Head Char is the first character of line, except whitespace.
|
50
|
+
</dd>
|
51
|
+
<dt><a name="label-10" id="label-10">STRINGLINE</a></dt><!-- RDLabel: "STRINGLINE" -->
|
52
|
+
<dd>
|
53
|
+
STRINGLINE is line which consists of strings.
|
54
|
+
STRINGLINE doesn't have "<code>*</code>", "<code>(<var>num</var>)</code>", "<code>:</code>", "<code>=</code>"
|
55
|
+
nor "<code>+</code>" as Head Char. But if the line is indented, "<code>=</code>" and "<code>+</code>"
|
56
|
+
can be Head Char.
|
57
|
+
</dd>
|
58
|
+
<dt><a name="label-11" id="label-11">WHITELINE</a></dt><!-- RDLabel: "WHITELINE" -->
|
59
|
+
<dd>
|
60
|
+
WHITELINE is a line which consists of whitespace, "<code>\s</code>", "<code>\t</code>" and
|
61
|
+
"<code>\n</code>".
|
62
|
+
</dd>
|
63
|
+
<dt><a name="label-12" id="label-12">Comment</a></dt><!-- RDLabel: "Comment" -->
|
64
|
+
<dd>
|
65
|
+
A line which is matched with <code>/^#/</code> is regarded as a comment.
|
66
|
+
</dd>
|
67
|
+
</dl>
|
68
|
+
<h5><a name="label-13" id="label-13">How Baseline is defined and how it works</a></h5><!-- RDLabel: "How Baseline is defined and how it works" -->
|
69
|
+
<p>At the top level, Baseline is at left end, i.e., indent is 0. In List,
|
70
|
+
Baseline is defined by first Block of ListItem. For example,</p>
|
71
|
+
<pre>Example: "|" means Baseline
|
72
|
+
|Regard this line as one of TextBlock's in top level.
|
73
|
+
|<- So this Baseline is at the left-most position.
|
74
|
+
*|it is in List. (1)
|
75
|
+
|<- this Baseline is defined by the marked with a (1).
|
76
|
+
* |Different Item of List can have different Baseline inside.
|
77
|
+
|<- So this Baseline differs from one of this list's first item.</pre>
|
78
|
+
<p>|Regard this line as one of TextBlock's in top level.
|
79
|
+
|<- So this Baseline is at the left-most position.</p>
|
80
|
+
<ul>
|
81
|
+
<li>|it is in List. (1)
|
82
|
+
|<- this Baseline is defined by the marked with a (1).</li>
|
83
|
+
<li>|Different Items in Lists can have different Baselines inside.
|
84
|
+
|<- So this Baseline differs from the one of this list's first item.</li>
|
85
|
+
</ul>
|
86
|
+
<p>If one Block is nested in another Block, the Baseline of the inside Blocks is deeper
|
87
|
+
than the Baseline of outside Blocks.</p>
|
88
|
+
<p>The relative position between Baseline and indent affects the type of Block.
|
89
|
+
If a <a href="#label-10">STRINGLINE</a> has same indent with Baseline, it belongs to
|
90
|
+
<a href="#label-20">TextBlock</a>, otherwise, i.e. it has deeper indent than Baseline,
|
91
|
+
it belongs to <a href="#label-21">Verbatim</a>.</p>
|
92
|
+
<h4><a name="label-14" id="label-14">Types of Block</a></h4><!-- RDLabel: "Types of Block" -->
|
93
|
+
<h5><a name="label-15" id="label-15">Headline</a></h5><!-- RDLabel: "Headline" -->
|
94
|
+
<p>Headline consists of a line which <a href="#label-9">Head Char</a> is "<code>=</code>" or
|
95
|
+
"<code>+</code>". And Headline can't include more than one line. Headline can
|
96
|
+
be on only top level.</p>
|
97
|
+
<pre>Example:
|
98
|
+
|<- Regard this as top level Baseline.
|
99
|
+
= Headline 1.
|
100
|
+
=== Headline 1.1.1.
|
101
|
+
+ Headline 1.1.1.1.1.</pre>
|
102
|
+
<h1><a name="label-16" id="label-16">Headline 1.</a></h1><!-- RDLabel: "Headline 1." -->
|
103
|
+
<h3><a name="label-17" id="label-17">Headline 1.1.1.</a></h3><!-- RDLabel: "Headline 1.1.1." -->
|
104
|
+
<h5><a name="label-18" id="label-18">Headline 1.1.1.1.1.</a></h5><!-- RDLabel: "Headline 1.1.1.1.1." -->
|
105
|
+
<p>Headline Mark represents level of Headline. See following figure. first
|
106
|
+
Mark is biggest one, and last Mark has two parts.</p>
|
107
|
+
<pre>Fig: Headline Marks
|
108
|
+
=
|
109
|
+
==
|
110
|
+
===
|
111
|
+
====
|
112
|
+
+
|
113
|
+
++</pre>
|
114
|
+
<p>Text which follows Mark is title of Headline. It is also used as Label of
|
115
|
+
<a href="#label-46">Reference</a>.</p>
|
116
|
+
<p>Title of Headline can contain <a href="#label-35">Inline</a>s except for <a href="#label-46">Reference</a> and
|
117
|
+
Footnote.</p>
|
118
|
+
<h5><a name="label-19" id="label-19">Include</a></h5><!-- RDLabel: "Include" -->
|
119
|
+
<p>Include is a line that line head "<code><<<</code>" and included file name.
|
120
|
+
You can input from other file text, both RD and target format, with Include.</p>
|
121
|
+
<p>When you include RD file, included file name have to have ".rd" or ".rb" as
|
122
|
+
suffix, like "foo.rd", and write full name (not full path) of file after
|
123
|
+
"<code><<<</code>". For example,</p>
|
124
|
+
<pre><<< foo.rd</pre>
|
125
|
+
<p>When you include target format file, include file name have to have suffix
|
126
|
+
of target format standard one, for example ".html" in the case of outputting
|
127
|
+
HTML, ".texi" in the case of outputting Texinfo, and write base name of file
|
128
|
+
after "<code><<<</code>". For example,</p>
|
129
|
+
<pre><<< foo</pre>
|
130
|
+
<p>RD formatter include "foo.html" to output HTML, and include "foo.texi" to
|
131
|
+
output Texinfo. If you want to use Include for target format, you should
|
132
|
+
prepare plural type of included file. </p>
|
133
|
+
<h5><a name="label-20" id="label-20">TextBlock</a></h5><!-- RDLabel: "TextBlock" -->
|
134
|
+
<p>TextBlock is composed of <a href="#label-10">STRINGLINE</a>s, but the <a href="#label-10">STRINGLINE</a>s
|
135
|
+
must have same indent with <a href="#label-8">Baseline</a>. If its indent is deeper
|
136
|
+
than <a href="#label-8">Baseline</a>, the <a href="#label-10">STRINGLINE</a> belongs to <a href="#label-21">Verbatim</a>.</p>
|
137
|
+
<p>TextBlock can include <a href="#label-35">Inline</a> inside.</p>
|
138
|
+
<pre>Example:
|
139
|
+
|
|
140
|
+
This is TextBlock.
|
141
|
+
Second line of same TextBlock.
|
142
|
+
This line is not TextBlock, but Verbatim.
|
143
|
+
* And this line is List. (But this line is exactly TextBlock in ListItem.)</pre>
|
144
|
+
<p>And this example is formatted such like:</p>
|
145
|
+
<p>This is TextBlock.
|
146
|
+
Second line of same TextBlock.</p>
|
147
|
+
<pre>This line is not TextBlock, but Verbatim.</pre>
|
148
|
+
<ul>
|
149
|
+
<li>And this line is List. (But this line is exactly TextBlock in ListItem.)</li>
|
150
|
+
</ul>
|
151
|
+
<h5><a name="label-21" id="label-21">Verbatim</a></h5><!-- RDLabel: "Verbatim" -->
|
152
|
+
<p>You can use Verbatim to cite Ruby script. Verbatim is composed of
|
153
|
+
<a href="#label-10">STRINGLINE</a>s, and they must be indented deeper than
|
154
|
+
<a href="#label-8">Baseline</a>. Verbatim can also include a line whose <a href="#label-9">Head Char</a> is
|
155
|
+
"<code>*</code>", "<code>(1)</code>" and "<code>:</code>", But it can't be first line of
|
156
|
+
Verbatim, it is regarded as <a href="#label-22">List</a>. Verbatim can't include a line
|
157
|
+
which is indented shallower than first line. Verbatim can include
|
158
|
+
<a href="#label-11">WHITELINE</a>.</p>
|
159
|
+
<p>You can't use <a href="#label-35">Inline</a> in Verbatim.</p>
|
160
|
+
<pre>Example:
|
161
|
+
This is Verbatim.
|
162
|
+
Even if a line is indented deeper than first line, it is also in same
|
163
|
+
Verbatim.
|
164
|
+
* A line seems like list is also included in Verbatim.
|
165
|
+
But if the line is indented shallower, it is not in same Verbatim.
|
166
|
+
It is in other Verbatim.</pre>
|
167
|
+
<p>And this example is formatted such like:</p>
|
168
|
+
<pre>This is Verbatim.
|
169
|
+
Even if a line is indented deeper than first line, it is also in same
|
170
|
+
Verbatim.
|
171
|
+
* A line seems like list is also included in Verbatim.</pre>
|
172
|
+
<pre>But if the line is indented shallower, it is not in same Verbatim.
|
173
|
+
It is in other Verbatim.</pre>
|
174
|
+
<h5><a name="label-22" id="label-22">List</a></h5><!-- RDLabel: "List" -->
|
175
|
+
<p>List is special <a href="#label-5">Block</a>. List is composed of ListItems, and
|
176
|
+
ListItem is composed of Blocks. So List can include Blocks inside,
|
177
|
+
even also List itself.<a name="footmark-2" id="footmark-2" href="#foottext-2"><sup><small>*2</small></sup></a></p>
|
178
|
+
<p>ListItem can include <a href="#label-11">WHITELINE</a>, and <a href="#label-20">TextBlock</a> can't
|
179
|
+
include WHITELINE, so when you want to write 2 TextBlock inside
|
180
|
+
ListItem, put a WHITELINE between TextBlocks.</p>
|
181
|
+
<p>There is 3 type of List, "<a href="#label-23">ItemList</a>", "<a href="#label-24">EnumList</a>",
|
182
|
+
"<a href="#label-25">DescList</a>" and "<a href="#label-28">MethodList</a>.</p>
|
183
|
+
<h6><a name="label-23" id="label-23">ItemList</a></h6><!-- RDLabel: "ItemList" -->
|
184
|
+
<p>ItemList is simple and not numbered List. ItemListItem begins by a line
|
185
|
+
whose <a href="#label-9">Head Char</a> is "<code>*</code>", and first Block of ItemListItem must be
|
186
|
+
<a href="#label-20">TextBlock</a>.</p>
|
187
|
+
<pre>Example:
|
188
|
+
* first item of parent list
|
189
|
+
* first item of sub list
|
190
|
+
* second item of sub list
|
191
|
+
text block ( line of first item of parent list)</pre>
|
192
|
+
<p>And this example is formatted such like:</p>
|
193
|
+
<ul>
|
194
|
+
<li><p>first item of parent list</p>
|
195
|
+
<ul>
|
196
|
+
<li>first item of sub list</li>
|
197
|
+
<li>second item of sub list</li>
|
198
|
+
</ul>
|
199
|
+
<p>text block ( line of first item of parent list)</p></li>
|
200
|
+
</ul>
|
201
|
+
<h6><a name="label-24" id="label-24">EnumList</a></h6><!-- RDLabel: "EnumList" -->
|
202
|
+
<p>EnumList is numbered List. EnumListItem starts with a line whose
|
203
|
+
<a href="#label-9">Head Char</a> is "<code>(<var>num</var>)</code>"(<var>num</var> is integer). EnumList
|
204
|
+
is same as <a href="#label-23">ItemList</a> on other points.</p>
|
205
|
+
<pre>Example:
|
206
|
+
(1) first line of parent list
|
207
|
+
* first line of sub list(ItemList)
|
208
|
+
(2) second list of parent list
|
209
|
+
(10) number is ignored...</pre>
|
210
|
+
<p>And this example is formatted such like:</p>
|
211
|
+
<ol>
|
212
|
+
<li>first line of parent list
|
213
|
+
<ul>
|
214
|
+
<li>first line of sub list(ItemList)</li>
|
215
|
+
</ul></li>
|
216
|
+
<li>second list of parent list</li>
|
217
|
+
<li>number is ignored...</li>
|
218
|
+
</ol>
|
219
|
+
<h6><a name="label-25" id="label-25">DescList</a></h6><!-- RDLabel: "DescList" -->
|
220
|
+
<p>DescList is List for descriptions. DescListItem has 2 part. One is Term part,
|
221
|
+
the other is Description part. Term of DescListItem is also used as Label
|
222
|
+
for <a href="#label-46">Reference</a>.</p>
|
223
|
+
<p>Term part is composed of a line whose <a href="#label-9">Head Char</a> is "<code>:</code>",
|
224
|
+
and Term part is same as <a href="#label-15">Headline</a>, except that a line of Term
|
225
|
+
part can be indented.</p>
|
226
|
+
<p>Description part is starts with next line of Term part. <a href="#label-8">Baseline</a> of
|
227
|
+
Description part must be same or deeper than term of Term part of its pair.
|
228
|
+
For example, following style is illegal.</p>
|
229
|
+
<pre>Example:
|
230
|
+
: |Term
|
231
|
+
|Description.</pre>
|
232
|
+
<p>Description part can include <a href="#label-5">Block</a>s. <a href="#label-22">List</a> can be first
|
233
|
+
Block of Description part. Term part can contain <a href="#label-35">Inline</a>s except
|
234
|
+
for <a href="#label-46">Reference</a> and <!-- Reference, RDLabel "Footnote" doesn't exist --><em class="label-not-found">Footnote</em><!-- Reference end -->.</p>
|
235
|
+
<pre>Example:
|
236
|
+
:Term
|
237
|
+
first line of Description
|
238
|
+
second line of Description
|
239
|
+
:Term2
|
240
|
+
* also include List
|
241
|
+
* ...</pre>
|
242
|
+
<p>And this example is formatted such like:</p>
|
243
|
+
<dl>
|
244
|
+
<dt><a name="label-26" id="label-26">Term</a></dt><!-- RDLabel: "Term" -->
|
245
|
+
<dd>
|
246
|
+
first line of definition.
|
247
|
+
second line of definition
|
248
|
+
</dd>
|
249
|
+
<dt><a name="label-27" id="label-27">Term2</a></dt><!-- RDLabel: "Term2" -->
|
250
|
+
<dd>
|
251
|
+
<ul>
|
252
|
+
<li>also include list</li>
|
253
|
+
<li>...</li>
|
254
|
+
</ul>
|
255
|
+
</dd>
|
256
|
+
</dl>
|
257
|
+
<h6><a name="label-28" id="label-28">MethodList</a></h6><!-- RDLabel: "MethodList" -->
|
258
|
+
<p>MethodList is the special type of <a href="#label-25">DescList</a> for explanation
|
259
|
+
methods of your classes. MethodList is similar with <a href="#label-25">DescList</a> in
|
260
|
+
almost all part, but it is labeled differently. RD formatters know it
|
261
|
+
is some kind of program code, e.g. method or constants of class in
|
262
|
+
Ruby or function prototype in C..., which is on Term part of
|
263
|
+
MethodList. So, MethodList is labeled without the part which seems to
|
264
|
+
be parameters of methods. See <a href="#label-44">Label and Reference</a> for more
|
265
|
+
detail.</p>
|
266
|
+
<p>Each item of MethodList has Term part and Description part like
|
267
|
+
<a href="#label-25">DescList</a>. And its Term part start with its <a href="#label-9">Head Char</a>,
|
268
|
+
"<code>---</code>". Its Description part can contain <a href="#label-20">TextBlock</a>,
|
269
|
+
<a href="#label-21">Verbatim</a> and <a href="#label-22">List</a>. But you shouldn't write MethodList
|
270
|
+
in any kind of <a href="#label-22">List</a>. RD will come to deny it possibly in
|
271
|
+
future.</p>
|
272
|
+
<pre>Example:
|
273
|
+
--- Array#each {|i| ... } # => labeled as "Array#each"
|
274
|
+
yield block for each item.
|
275
|
+
--- Array#index(val) # => labeled as "Array#index"
|
276
|
+
return index of first item which equals with ((|val|)). if it hasn't
|
277
|
+
same item, return (({nil})).</pre>
|
278
|
+
<p>And this example is formatted such like:</p>
|
279
|
+
<dl>
|
280
|
+
<dt><a name="label-29" id="label-29"><code>Array#each {|<var>i</var>| ... }</code></a></dt><!-- RDLabel: "Array#each" -->
|
281
|
+
<dd>
|
282
|
+
yield block for each item.</dd>
|
283
|
+
<dt><a name="label-30" id="label-30"><code>Array#index(<var>val</var>)</code></a></dt><!-- RDLabel: "Array#index" -->
|
284
|
+
<dd>
|
285
|
+
return index of first item which equals with <var>val</var>. if it hasn't
|
286
|
+
same item, return <code>nil</code>.</dd>
|
287
|
+
</dl>
|
288
|
+
<p>Some formatter assumes it is Ruby's methods, constants or etc. which
|
289
|
+
is in Term part of MethodList. it can format term part of MethodList
|
290
|
+
intelligently, but you have to write according as specific formula
|
291
|
+
to make the best of its feature. </p>
|
292
|
+
<p>Standard Ruby class reference formula is suggested such like: </p>
|
293
|
+
<dl>
|
294
|
+
<dt><a name="label-31" id="label-31">instance method</a></dt><!-- RDLabel: "instance method" -->
|
295
|
+
<dd>
|
296
|
+
<p>instance method <var>method</var> of class <var>Class</var></p>
|
297
|
+
<pre>Class#method(its params ...) { parameter block }</pre>
|
298
|
+
</dd>
|
299
|
+
<dt><a name="label-32" id="label-32">class method (class singleton method)</a></dt><!-- RDLabel: "class method (class singleton method)" -->
|
300
|
+
<dd>
|
301
|
+
<p>class method <var>method</var> of class <var>Class</var></p>
|
302
|
+
<pre>Class.method(its params ...) { parameter block }</pre>
|
303
|
+
</dd>
|
304
|
+
<dt><a name="label-33" id="label-33">class constants</a></dt><!-- RDLabel: "class constants" -->
|
305
|
+
<dd>
|
306
|
+
<p>constant <var>Const</var> of class <var>Class</var></p>
|
307
|
+
<pre>Class::Const</pre>
|
308
|
+
</dd>
|
309
|
+
<dt><a name="label-34" id="label-34">functions (private methods on top level)</a></dt><!-- RDLabel: "functions (private methods on top level)" -->
|
310
|
+
<dd>
|
311
|
+
<p>function <var>func</var></p>
|
312
|
+
<pre>function#func(its params ...) { parameter block }</pre>
|
313
|
+
</dd>
|
314
|
+
</dl>
|
315
|
+
<p>Ruby use some symbol characters (e.g. [], []=, +, - or <<) for the names
|
316
|
+
of methods. ruby, Ruby interpreter, parses them with different manner from
|
317
|
+
normal methods, but write them as same as others in this formula.</p>
|
318
|
+
<pre>Example:
|
319
|
+
--- Array#[](key)
|
320
|
+
return value which in at index ((|key|)).
|
321
|
+
--- Array#[]=(key, value)
|
322
|
+
put ((|value|)) into cell of index ((|key|)).
|
323
|
+
--- Array#+(other)
|
324
|
+
return concatenated (({Array})).</pre>
|
325
|
+
<h3><a name="label-35" id="label-35">Inline</a></h3><!-- RDLabel: "Inline" -->
|
326
|
+
<p>You can use Inline in <a href="#label-20">TextBlock</a>, <a href="#label-15">Headline</a> and Term part of
|
327
|
+
<a href="#label-25">DescList</a>. Common style of parentheses is used for Inline. Inline
|
328
|
+
can nest each other.</p>
|
329
|
+
<p>in following list of Inlines, preformatted text is on left hand side
|
330
|
+
and postformatted text is on right hand side.</p>
|
331
|
+
<dl>
|
332
|
+
<dt><a name="label-36" id="label-36">((*Em*)) => <em>Em</em></a></dt><!-- RDLabel: "((*Em*)) => Em" -->
|
333
|
+
<dd>
|
334
|
+
Emphasis.
|
335
|
+
</dd>
|
336
|
+
<dt><a name="label-37" id="label-37">(({while gets...})) => <code>while gets...</code></a></dt><!-- RDLabel: "(({while gets...})) => while gets..." -->
|
337
|
+
<dd>
|
338
|
+
Code.
|
339
|
+
</dd>
|
340
|
+
<dt><a name="label-38" id="label-38">((|var|)) => <var>var</var></a></dt><!-- RDLabel: "((|var|)) => var" -->
|
341
|
+
<dd>
|
342
|
+
Var.<a name="footmark-3" id="footmark-3" href="#foottext-3"><sup><small>*3</small></sup></a>
|
343
|
+
</dd>
|
344
|
+
<dt><a name="label-39" id="label-39">((%ruby -v%)) => <kbd>ruby -v</kbd></a></dt><!-- RDLabel: "((%ruby -v%)) => ruby -v" -->
|
345
|
+
<dd>
|
346
|
+
Keyboard.
|
347
|
+
</dd>
|
348
|
+
<dt><a name="label-40" id="label-40">((:Term:))</a></dt><!-- RDLabel: "((:Term:))" -->
|
349
|
+
<dd>
|
350
|
+
<p>=> <a name="index-0" id="index-0">Term</a></p>
|
351
|
+
<p>Term of Index.</p>
|
352
|
+
</dd>
|
353
|
+
<dt><a name="label-41" id="label-41">((<Identity or URL>))</a></dt><!-- RDLabel: "((<Identity or URL>))" -->
|
354
|
+
<dd>
|
355
|
+
<p>=> <!-- Reference, RDLabel "Identity or URL" doesn't exist --><em class="label-not-found">Identity or URL</em><!-- Reference end --></p>
|
356
|
+
<p>Link, Reference. See <a href="RD">Label and Reference</a> for more detail.</p>
|
357
|
+
</dd>
|
358
|
+
<dt><a name="label-42" id="label-42">((-Footnote-))</a></dt><!-- RDLabel: "((-Footnote-))" -->
|
359
|
+
<dd>
|
360
|
+
<p>=> <a name="footmark-4" id="footmark-4" href="#foottext-4"><sup><small>*4</small></sup></a></p>
|
361
|
+
<p>Footnote.</p>
|
362
|
+
</dd>
|
363
|
+
<dt><a name="label-43" id="label-43">(('verb')) => verb</a></dt><!-- RDLabel: "(('verb')) => verb" -->
|
364
|
+
<dd>
|
365
|
+
Inline Verbatim.
|
366
|
+
</dd>
|
367
|
+
</dl>
|
368
|
+
<h4><a name="label-44" id="label-44">Label and Reference</a></h4><!-- RDLabel: "Label and Reference" -->
|
369
|
+
<p>Reference needs Label. In RD, only title of <a href="#label-15">Headline</a> and Term of
|
370
|
+
<a href="#label-25">DescList</a> and <a href="#label-28">MethodList</a> is regarded as Label. So, you must
|
371
|
+
choose different titles for different <a href="#label-15">Headline</a>s. This problem
|
372
|
+
has not resolved yet.</p>
|
373
|
+
<h5><a name="label-45" id="label-45">How to RD generates Label from Headline, DescList or MethodList</a></h5><!-- RDLabel: "How to RD generates Label from Headline, DescList or MethodList" -->
|
374
|
+
<p>Title of <a href="#label-15">Headline</a> and Term part of <a href="#label-25">DescList</a> and <a href="#label-28">MethodList</a>
|
375
|
+
are regarded as Label. But they can contain <a href="#label-35">Inline</a>s, so the situation
|
376
|
+
isn't so simple.</p>
|
377
|
+
<p>First, <a href="#label-28">MethodList</a> is special in the part of Labeling. Term part of
|
378
|
+
<a href="#label-28">MethodList</a> can't contain <a href="#label-35">Inline</a>s, and RD assumes it is method
|
379
|
+
reference or such thing which is in Term part of <a href="#label-28">MethodList</a>. So
|
380
|
+
it is Labeled under following rules.</p>
|
381
|
+
<ol>
|
382
|
+
<li>It is regarded as Label which is before a character of "<code>(</code>" or
|
383
|
+
"<code>{</code>".<a name="footmark-5" id="footmark-5" href="#foottext-5"><sup><small>*5</small></sup></a></li>
|
384
|
+
</ol>
|
385
|
+
<p>Following example will help you to understand how this rule works. the Label
|
386
|
+
which is generated from the term part of <a href="#label-28">MethodList</a> is after mark of
|
387
|
+
"<code># =></code>".</p>
|
388
|
+
<pre>Example:
|
389
|
+
--- Array.new([size[, val]]) # => Array.new
|
390
|
+
--- Array#[]=(key, val) # => Array#[]=
|
391
|
+
--- Array#each { ... } # => Array#each
|
392
|
+
--- void rb_define_method(VALUE class, ...) # => void rb_define_method</pre>
|
393
|
+
<p>Second, in the case of title of <a href="#label-15">Headline</a> or term part of <a href="#label-25">DescList</a>,
|
394
|
+
there is not such a special rule. But you can use <a href="#label-35">Inline</a>s for text on
|
395
|
+
them, so there are rules to strip <a href="#label-35">Inline</a> mark-ups from text.</p>
|
396
|
+
<ol>
|
397
|
+
<li><p>Any <a href="#label-35">Inline</a> mark-ups makes any difference to Label. So, both</p>
|
398
|
+
<pre>= ((*Headline*))</pre>
|
399
|
+
<p>and</p>
|
400
|
+
<pre>= Headline</pre>
|
401
|
+
<p>are Labeled as "Headline".</p></li>
|
402
|
+
<li><p>But white spaces which is after open parenthesis and before close
|
403
|
+
parenthesis of <a href="#label-35">Inline</a> are striped when RD generates Label from
|
404
|
+
it. So, both</p>
|
405
|
+
<pre>= ((* Headline *))</pre>
|
406
|
+
<p>and</p>
|
407
|
+
<pre>= ((*Headline*))</pre>
|
408
|
+
<p>are Labeled as "Headline".</p></li>
|
409
|
+
</ol>
|
410
|
+
<h5><a name="label-46" id="label-46">Reference</a></h5><!-- RDLabel: "Reference" -->
|
411
|
+
<p>You can refer Labeled element with Reference which is a kind of <a href="#label-35">Inline</a>
|
412
|
+
marked up with ((<...>)).</p>
|
413
|
+
<p>Most simple use of Reference is to write Label inside parenthesis.</p>
|
414
|
+
<pre>((<Label>))</pre>
|
415
|
+
<p>This works as reference to Label of "Label" and text "Label" is used
|
416
|
+
also for display such like: <!-- Reference, RDLabel "Label" doesn't exist --><em class="label-not-found">Label</em><!-- Reference end -->.<a name="footmark-6" id="footmark-6" href="#foottext-6"><sup><small>*6</small></sup></a></p>
|
417
|
+
<p>When you want to refer a resource pointed with URL, write such like:</p>
|
418
|
+
<pre>((<URL:http://www.ruby-lang.org/en/raa.html>))</pre>
|
419
|
+
<p>RD formatter will format it as hyper-link to its URL if possible
|
420
|
+
such like:<a href="http://www.ruby-lang.org/en/raa.html"><URL:http://www.ruby-lang.org/en/raa.html></a>.</p>
|
421
|
+
<p>When you want to use other text than Label for display, write such like:</p>
|
422
|
+
<pre>((<Text for display|Label>))</pre>
|
423
|
+
<p>"Text for display" is used for display and "Label" is used as Label to
|
424
|
+
refer such like: <!-- Reference, RDLabel "Label" doesn't exist --><em class="label-not-found">Text for display</em><!-- Reference end --></p>
|
425
|
+
<p>Text for display can contain some <a href="#label-35">Inline</a>, except for Footnotes and
|
426
|
+
Reference.</p>
|
427
|
+
<p>In Reference, "|" and "/" are syntax keywords. So if you will write them
|
428
|
+
inside Reference, you have to double-quote the part it's inside, such like:</p>
|
429
|
+
<pre>((<"Bar | inside display text"|Label>))</pre>
|
430
|
+
<p><!-- Reference, RDLabel "Label" doesn't exist --><em class="label-not-found">Bar | inside display text</em><!-- Reference end --></p>
|
431
|
+
<p>The situations are same whether you will write them inside Substitution
|
432
|
+
part, Filename part and Label part.</p>
|
433
|
+
<p>Of course, you can use the text for the display for Reference to URL resource.</p>
|
434
|
+
<pre>((<Ruby Application Archive|URL:http://www.ruby-lang.org/en/raa.html>))</pre>
|
435
|
+
<p><a href="http://www.ruby-lang.org/en/raa.html">Ruby Application Archive</a></p>
|
436
|
+
<p>When the text for the display is omitted, you can use <a href="#label-35">Inline</a> for Label.</p>
|
437
|
+
<pre>((<((*Label*))>))</pre>
|
438
|
+
<p><!-- Reference, RDLabel "Label" doesn't exist --><em class="label-not-found"><em>Label</em></em><!-- Reference end --></p>
|
439
|
+
<hr />
|
440
|
+
<p class="foottext">
|
441
|
+
<a name="foottext-1" id="foottext-1" href="#footmark-1"><sup><small>*1</small></sup></a><small> If you are interested in others,
|
442
|
+
see rubyapi2
|
443
|
+
<a href="http://www.ueda.info.waseda.ac.jp/~igarashi/ruby/xml.html#rubyapi2"><URL:http://www.ueda.info.waseda.ac.jp/~igarashi/ruby/xml.html#rubyapi2></a>
|
444
|
+
for example. </small><br />
|
445
|
+
<a name="foottext-2" id="foottext-2" href="#footmark-2"><sup><small>*2</small></sup></a><small> But List can't include <a href="#label-15">Headline</a>
|
446
|
+
nor <a href="#label-19">Include</a>. </small><br />
|
447
|
+
<a name="foottext-3" id="foottext-3" href="#footmark-3"><sup><small>*3</small></sup></a><small> You can read very good explanation about Var in texinfo.info. </small><br />
|
448
|
+
<a name="foottext-4" id="foottext-4" href="#footmark-4"><sup><small>*4</small></sup></a><small>Footnote</small><br />
|
449
|
+
<a name="foottext-5" id="foottext-5" href="#footmark-5"><sup><small>*5</small></sup></a><small> text inside "<code>(...)</code>" is regarded as parameters
|
450
|
+
of method, and text inside "<code>{...}</code>" is regarded as parameter
|
451
|
+
block of methods.</small><br />
|
452
|
+
<a name="foottext-6" id="foottext-6" href="#footmark-6"><sup><small>*6</small></sup></a><small> There is no element Labeled
|
453
|
+
"Label", so it doesn't seems to be Reference probably. </small><br />
|
454
|
+
</p>
|
455
|
+
</body>
|
456
|
+
</html>
|