inochi 5.0.1 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CREDITS +1 -0
- data/lib/inochi/inochi.rb +2 -2
- data/lib/inochi/tasks/{2-man.rake.css → 2-man.css} +0 -0
- data/lib/inochi/tasks/2-man.rake +23 -11
- data/lib/inochi/tasks/3-ann.rake +2 -2
- data/lib/inochi/templates/BEYOND.rbs +4 -7
- data/man/man1/inochi.1 +191 -61
- metadata +4 -4
data/CREDITS
CHANGED
data/lib/inochi/inochi.rb
CHANGED
@@ -18,12 +18,12 @@ module Inochi
|
|
18
18
|
##
|
19
19
|
# Number of this release of this project.
|
20
20
|
#
|
21
|
-
VERSION = '5.0.
|
21
|
+
VERSION = '5.0.2'
|
22
22
|
|
23
23
|
##
|
24
24
|
# Date of this release of this project.
|
25
25
|
#
|
26
|
-
RELDATE = '2010-08-
|
26
|
+
RELDATE = '2010-08-10'
|
27
27
|
|
28
28
|
##
|
29
29
|
# Description of this release of this project.
|
File without changes
|
data/lib/inochi/tasks/2-man.rake
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
|
4
4
|
@man_html_dst = 'man.html'
|
5
5
|
@man_roff_dst = "man/man1/#{@project_package_name}.1"
|
6
|
+
@man_docbook_dst = @man_roff_dst + '.xml'
|
6
7
|
|
7
8
|
desc 'Build the help manual.'
|
8
9
|
task :man => [@man_html_dst, @man_roff_dst]
|
@@ -37,26 +38,37 @@ CLEAN.include @man_asciidoc_dst
|
|
37
38
|
|
38
39
|
#-----------------------------------------------------------------------------
|
39
40
|
|
40
|
-
build_asciidoc_args =
|
41
|
-
|
42
|
-
|
41
|
+
build_asciidoc_args = proc do |*atts|
|
42
|
+
atts.concat Array(@project_config[:man_asciidoc_attributes])
|
43
|
+
args = atts.map {|a| ['-a', a] }.flatten
|
43
44
|
|
44
|
-
|
45
|
-
|
46
|
-
Array(@project_config[:man_asciidoc_attributes])
|
45
|
+
args.push '-v' if Rake.application.options.trace
|
46
|
+
args.push @man_asciidoc_dst
|
47
47
|
|
48
|
-
|
49
|
-
|
48
|
+
args
|
49
|
+
end
|
50
50
|
|
51
|
+
file @man_html_dst => @man_asciidoc_dst do
|
52
|
+
args = build_asciidoc_args.call(
|
53
|
+
'data-uri', 'toc', 'stylesheet=' + __FILE__.ext('css')
|
54
|
+
)
|
51
55
|
sh 'asciidoc', '-o', @man_html_dst, *args
|
52
56
|
end
|
53
57
|
|
54
58
|
CLOBBER.include @man_html_dst
|
55
59
|
|
56
|
-
file @
|
60
|
+
file @man_docbook_dst => @man_asciidoc_dst do
|
57
61
|
args = build_asciidoc_args.call
|
58
|
-
mkdir_p
|
59
|
-
sh '
|
62
|
+
mkdir_p File.dirname(@man_docbook_dst)
|
63
|
+
sh 'asciidoc', '-o', @man_docbook_dst, '-d', 'manpage', '-b', 'docbook', *args
|
64
|
+
end
|
65
|
+
|
66
|
+
CLOBBER.include @man_docbook_dst
|
67
|
+
|
68
|
+
file @man_roff_dst => @man_docbook_dst do
|
69
|
+
sh 'xsltproc', '-o', @man_roff_dst, '--nonet',
|
70
|
+
'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl',
|
71
|
+
@man_docbook_dst
|
60
72
|
end
|
61
73
|
|
62
74
|
CLOBBER.include @man_roff_dst
|
data/lib/inochi/tasks/3-ann.rake
CHANGED
@@ -213,9 +213,9 @@ def convert_html_to_text html
|
|
213
213
|
begin
|
214
214
|
File.write tmp_file, html.to_s.
|
215
215
|
#
|
216
|
-
# add space between
|
216
|
+
# add space between list items to improve readability
|
217
217
|
#
|
218
|
-
gsub(/(?=<
|
218
|
+
gsub(/(?=<li>)/, '<p> </p>')
|
219
219
|
|
220
220
|
`lynx -dump #{tmp_file} -width 70`
|
221
221
|
ensure
|
@@ -1,6 +1,6 @@
|
|
1
1
|
== SEE ALSO
|
2
2
|
|
3
|
-
// TODO: list related UNIX man pages
|
3
|
+
// TODO: list related UNIX man pages here
|
4
4
|
|
5
5
|
some_command(1), another_command(5), yet_another_command(7)
|
6
6
|
|
@@ -8,11 +8,8 @@ some_command(1), another_command(5), yet_another_command(7)
|
|
8
8
|
=== References
|
9
9
|
|
10
10
|
[horizontal]
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
[[Inochi]] Inochi:: <%= Inochi::WEBSITE %>
|
15
|
-
[[RubyGems]] RubyGems:: http://rubygems.org
|
16
|
-
[[Ruby]] Ruby:: http://ruby-lang.org
|
11
|
+
[[[Inochi]]]:: <%= Inochi::WEBSITE %>
|
12
|
+
[[[RubyGems]]]:: http://rubygems.org
|
13
|
+
[[[Ruby]]]:: http://ruby-lang.org
|
17
14
|
|
18
15
|
// TODO: list additional links here
|
data/man/man1/inochi.1
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
.\" Title: inochi
|
3
3
|
.\" Author: [see the "AUTHORS" section]
|
4
4
|
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
5
|
-
.\" Date: 08/
|
5
|
+
.\" Date: 08/10/2010
|
6
6
|
.\" Manual: \ \&
|
7
|
-
.\" Source: \ \& 5.0.
|
7
|
+
.\" Source: \ \& 5.0.2
|
8
8
|
.\" Language: English
|
9
9
|
.\"
|
10
|
-
.TH "INOCHI" "1" "08/
|
10
|
+
.TH "INOCHI" "1" "08/10/2010" "\ \& 5\&.0\&.2" "\ \&"
|
11
11
|
.\" -----------------------------------------------------------------
|
12
12
|
.\" * set default formatting
|
13
13
|
.\" -----------------------------------------------------------------
|
@@ -106,31 +106,31 @@ Stores project information in a single Ruby source file\&.
|
|
106
106
|
Project website
|
107
107
|
.RS 4
|
108
108
|
|
109
|
-
|
109
|
+
\m[blue]\fBhttp://snk\&.tuxfamily\&.org/lib/inochi/\fR\m[]
|
110
110
|
.RE
|
111
111
|
.PP
|
112
112
|
Announcements feed
|
113
113
|
.RS 4
|
114
114
|
|
115
|
-
|
115
|
+
\m[blue]\fBhttp://snk\&.tuxfamily\&.org/lib/inochi/ann\&.xml\fR\m[]
|
116
116
|
.RE
|
117
117
|
.PP
|
118
118
|
API documentation
|
119
119
|
.RS 4
|
120
120
|
|
121
|
-
|
121
|
+
\m[blue]\fBhttp://snk\&.tuxfamily\&.org/lib/inochi/api/\fR\m[]
|
122
122
|
.RE
|
123
123
|
.PP
|
124
124
|
Source code (browse online, download, or checkout)
|
125
125
|
.RS 4
|
126
126
|
|
127
|
-
|
127
|
+
\m[blue]\fBhttp://github\&.com/sunaku/inochi\fR\m[]
|
128
128
|
.RE
|
129
129
|
.PP
|
130
130
|
Issue tracker (report bugs, request features, get help)
|
131
131
|
.RS 4
|
132
132
|
|
133
|
-
|
133
|
+
\m[blue]\fBhttp://github\&.com/sunaku/inochi/issues\fR\m[]
|
134
134
|
.RE
|
135
135
|
.SH "INSTALL"
|
136
136
|
.SS "Prerequisites"
|
@@ -811,7 +811,7 @@ A project\(cqs configuration file is a [YAML] document named inochi\&.conf that
|
|
811
811
|
:man_asciidoc_attributes
|
812
812
|
.RS 4
|
813
813
|
Attributes to pass to AsciiDoc when rendering the HTML manual page\&. See
|
814
|
-
"Backend Attributes" in the AsciiDoc manual
|
814
|
+
\m[blue]\fB"Backend Attributes" in the AsciiDoc manual\fR\m[]\&\s-2\u[1]\d\s+2
|
815
815
|
for a list of all attributes\&.
|
816
816
|
.RE
|
817
817
|
.PP
|
@@ -1051,7 +1051,7 @@ irb \-r inochi
|
|
1051
1051
|
.RE
|
1052
1052
|
.\}
|
1053
1053
|
.sp
|
1054
|
-
Or by running Ruby through the
|
1054
|
+
Or by running Ruby through the \m[blue]\fBruby\-wrapper\fR\m[]\&\s-2\u[2]\d\s+2 tool\&.
|
1055
1055
|
.SS "RubyGems setup"
|
1056
1056
|
.sp
|
1057
1057
|
If you use Ruby 1\&.8 or older, then ensure that RubyGems is activated before you use any libraries in the lib/ directory or run any executables in the bin/ directory\&.
|
@@ -1099,9 +1099,68 @@ ruby test/runner
|
|
1099
1099
|
Its exit status will indicate whether all tests have passed\&. It may also print additional pass/fail information depending on the testing library used in the test/helper\&.rb file\&.
|
1100
1100
|
.SS "Contributing"
|
1101
1101
|
.sp
|
1102
|
-
|
1102
|
+
\m[blue]\fBFork this project on GitHub\fR\m[] and send a pull request\&.
|
1103
1103
|
.SH "HISTORY"
|
1104
|
+
.SS "Version 5\&.0\&.2 (2010\-08\-10)"
|
1105
|
+
.sp
|
1106
|
+
This release emits hyperlink URLs in the generated UNIX manpage, beautifies the plain\-text release announcement, and fixes incorrect AsciiDoc usage\&.
|
1107
|
+
.PP
|
1108
|
+
\fBBug fixes\fR
|
1109
|
+
.sp
|
1110
|
+
.RS 4
|
1111
|
+
.ie n \{\
|
1112
|
+
\h'-04'\(bu\h'+03'\c
|
1113
|
+
.\}
|
1114
|
+
.el \{\
|
1115
|
+
.sp -1
|
1116
|
+
.IP \(bu 2.3
|
1117
|
+
.\}
|
1118
|
+
Emit hyperlink URLs when rendering the help manual into UNIX manpage format by using xsltproc(1) instead of a2x(1)\&. Thanks to Rainer Müller on the
|
1119
|
+
[AsciiDoc]
|
1120
|
+
mailing list for
|
1121
|
+
\m[blue]\fBhelping me find the solution\fR\m[]\&\s-2\u[3]\d\s+2
|
1122
|
+
to this problem\&.
|
1123
|
+
.RE
|
1124
|
+
.sp
|
1125
|
+
.RS 4
|
1126
|
+
.ie n \{\
|
1127
|
+
\h'-04'\(bu\h'+03'\c
|
1128
|
+
.\}
|
1129
|
+
.el \{\
|
1130
|
+
.sp -1
|
1131
|
+
.IP \(bu 2.3
|
1132
|
+
.\}
|
1133
|
+
Do not add space before paragraph titles in plain\-text announcement\&.
|
1134
|
+
.RE
|
1135
|
+
.sp
|
1136
|
+
.RS 4
|
1137
|
+
.ie n \{\
|
1138
|
+
\h'-04'\(bu\h'+03'\c
|
1139
|
+
.\}
|
1140
|
+
.el \{\
|
1141
|
+
.sp -1
|
1142
|
+
.IP \(bu 2.3
|
1143
|
+
.\}
|
1144
|
+
Use proper AsciiDoc bibliography syntax in the
|
1145
|
+
BEYOND
|
1146
|
+
file\&.
|
1147
|
+
.RE
|
1148
|
+
.PP
|
1149
|
+
\fBHousekeeping\fR
|
1150
|
+
.sp
|
1151
|
+
.RS 4
|
1152
|
+
.ie n \{\
|
1153
|
+
\h'-04'\(bu\h'+03'\c
|
1154
|
+
.\}
|
1155
|
+
.el \{\
|
1156
|
+
.sp -1
|
1157
|
+
.IP \(bu 2.3
|
1158
|
+
.\}
|
1159
|
+
Only list related UNIX manpages in the "SEE ALSO" section\&.
|
1160
|
+
.RE
|
1104
1161
|
.SS "Version 5\&.0\&.1 (2010\-08\-09)"
|
1162
|
+
.sp
|
1163
|
+
This release restores missing metadata in generated gem packages\&.
|
1105
1164
|
.PP
|
1106
1165
|
\fBBug fixes\fR
|
1107
1166
|
.sp
|
@@ -1291,7 +1350,7 @@ This release fixes a bug in gem version dependency establishment\&.
|
|
1291
1350
|
.\}
|
1292
1351
|
Gem version dependencies were not being established in Ruby 1\&.8\&.7 and 1\&.9\&.2 because
|
1293
1352
|
Kernel#gem
|
1294
|
-
|
1353
|
+
\m[blue]\fBis a private method\fR\m[]\&\s-2\u[4]\d\s+2
|
1295
1354
|
in those Ruby versions\&.
|
1296
1355
|
.sp
|
1297
1356
|
To propagate this fix into your projects, please reinitialize them with this version of Inochi\&.
|
@@ -1859,8 +1918,8 @@ Add instructions for building gems without Inochi as a runtime dependency\&.
|
|
1859
1918
|
.IP \(bu 2.3
|
1860
1919
|
.\}
|
1861
1920
|
Put release notes in "description" field of gemspec, as
|
1862
|
-
|
1863
|
-
|
1921
|
+
\m[blue]\fBsuggested by Eric Hodel\fR\m[]\&\s-2\u[5]\d\s+2, so that subscribers of
|
1922
|
+
\m[blue]\fBthe RubyForge gems feed\fR\m[]\&\s-2\u[6]\d\s+2
|
1864
1923
|
are aware of the changes in a published gem\&.
|
1865
1924
|
.RE
|
1866
1925
|
.sp
|
@@ -2053,9 +2112,9 @@ ERBook 7\&.1\&.0 is now used for generating the user manual\&. This is a major s
|
|
2053
2112
|
.IP \(bu 2.3
|
2054
2113
|
.\}
|
2055
2114
|
|
2056
|
-
|
2115
|
+
\m[blue]\fBSDoc\fR\m[]\&\s-2\u[7]\d\s+2
|
2057
2116
|
is now used to generate API documentation instead of
|
2058
|
-
|
2117
|
+
\m[blue]\fBYARD\fR\m[]\&\s-2\u[8]\d\s+2\&. If you link to particular classes or methods in the generated API documentation, be sure to update your link addresses!
|
2059
2118
|
.RE
|
2060
2119
|
.sp
|
2061
2120
|
.RS 4
|
@@ -2134,7 +2193,7 @@ option\&.
|
|
2134
2193
|
.IP \(bu 2.3
|
2135
2194
|
.\}
|
2136
2195
|
Add "lint" rake task which reports
|
2137
|
-
|
2196
|
+
\m[blue]\fBcode quality statistics\fR\m[]\&\s-2\u[9]\d\s+2\&.
|
2138
2197
|
.RE
|
2139
2198
|
.sp
|
2140
2199
|
.RS 4
|
@@ -2157,7 +2216,7 @@ Add "test:cov" rake task which reports code coverage statistics\&.
|
|
2157
2216
|
.IP \(bu 2.3
|
2158
2217
|
.\}
|
2159
2218
|
Add "test:ruby" task which runs all tests with
|
2160
|
-
|
2219
|
+
\m[blue]\fBmultiruby\fR\m[]\&\s-2\u[10]\d\s+2\&.
|
2161
2220
|
.RE
|
2162
2221
|
.sp
|
2163
2222
|
.RS 4
|
@@ -2461,7 +2520,7 @@ This release adds support for unit testing, improves the portability of Inochi a
|
|
2461
2520
|
.IP \(bu 2.3
|
2462
2521
|
.\}
|
2463
2522
|
Added support for unit testing via the
|
2464
|
-
|
2523
|
+
\m[blue]\fBminitest\fR\m[]\&\s-2\u[11]\d\s+2
|
2465
2524
|
library\&.
|
2466
2525
|
.RE
|
2467
2526
|
.sp
|
@@ -2581,7 +2640,7 @@ module: project name calculation and CamelCase to snake_case conversion\&.
|
|
2581
2640
|
.RE
|
2582
2641
|
.SS "Version 0\&.1\&.0 (2009\-01\-13)"
|
2583
2642
|
.sp
|
2584
|
-
This release reattempts to fix the
|
2643
|
+
This release reattempts to fix the \m[blue]\fBcircular dependency problem\fR\m[]\&\s-2\u[12]\d\s+2 that occurred when installing either Inochi or ERBook\&.
|
2585
2644
|
.PP
|
2586
2645
|
\fBNew features\fR
|
2587
2646
|
.sp
|
@@ -2649,7 +2708,7 @@ This release fixes some show\-stopper bugs\&.
|
|
2649
2708
|
.IP \(bu 2.3
|
2650
2709
|
.\}
|
2651
2710
|
The name of the project library was
|
2652
|
-
|
2711
|
+
\m[blue]\fBbeing determined incorrectly\fR\m[]\&\s-2\u[13]\d\s+2\&. (thanks to Florian Gilcher)
|
2653
2712
|
.RE
|
2654
2713
|
.sp
|
2655
2714
|
.RS 4
|
@@ -2661,7 +2720,7 @@ being determined incorrectly\&. (thanks to Florian Gilcher)
|
|
2661
2720
|
.IP \(bu 2.3
|
2662
2721
|
.\}
|
2663
2722
|
There was a
|
2664
|
-
|
2723
|
+
\m[blue]\fBcircular dependency problem\fR\m[]\&\s-2\u[12]\d\s+2
|
2665
2724
|
when installing the
|
2666
2725
|
Inochi
|
2667
2726
|
gem\&. (thanks to Florian Gilcher)
|
@@ -2704,7 +2763,7 @@ This is the first release of Inochi\&. Enjoy!
|
|
2704
2763
|
Suraj N\&. Kurapati
|
2705
2764
|
.SS "Credits"
|
2706
2765
|
.sp
|
2707
|
-
Florian Gilcher, Peileppe Production
|
2766
|
+
Florian Gilcher, Peileppe Production Rainer Müller
|
2708
2767
|
.sp
|
2709
2768
|
The "inochi\&.png" image and its "inochi\&.svg" source utilize the "3 flowers" graphic[1], which was created and released into the public domain by Peileppe Production[2] on June 25, 2008\&.
|
2710
2769
|
.sp
|
@@ -2717,7 +2776,7 @@ The "inochi\&.png" image and its "inochi\&.svg" source utilize the "3 flowers" g
|
|
2717
2776
|
.IP " 1." 4.2
|
2718
2777
|
.\}
|
2719
2778
|
|
2720
|
-
|
2779
|
+
\m[blue]\fBhttp://www\&.openclipart\&.org/detail/17456\fR\m[]
|
2721
2780
|
.RE
|
2722
2781
|
.sp
|
2723
2782
|
.RS 4
|
@@ -2729,20 +2788,20 @@ http://www\&.openclipart\&.org/detail/17456
|
|
2729
2788
|
.IP " 2." 4.2
|
2730
2789
|
.\}
|
2731
2790
|
|
2732
|
-
|
2791
|
+
\m[blue]\fBhttp://www\&.openclipart\&.org/user\-detail/Peileppe\fR\m[]
|
2733
2792
|
.RE
|
2734
2793
|
.SS "License"
|
2735
2794
|
.sp
|
2736
2795
|
(the ISC license)
|
2737
2796
|
.sp
|
2738
|
-
Copyright 2008 Suraj N\&. Kurapati
|
2797
|
+
Copyright 2008 Suraj N\&. Kurapati <\m[blue]\fBsunaku@gmail\&.com\fR\m[]\&\s-2\u[14]\d\s+2>
|
2739
2798
|
.sp
|
2740
2799
|
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies\&.
|
2741
2800
|
.sp
|
2742
2801
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\&. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE\&.
|
2743
2802
|
.SH "SEE ALSO"
|
2744
2803
|
.sp
|
2745
|
-
|
2804
|
+
rsync(1), asciidoc(1), xsltproc(1), lynx(1)
|
2746
2805
|
.SS "References"
|
2747
2806
|
.TS
|
2748
2807
|
tab(:);
|
@@ -2765,122 +2824,193 @@ lt lt
|
|
2765
2824
|
lt lt.
|
2766
2825
|
T{
|
2767
2826
|
.sp
|
2768
|
-
AsciiDoc
|
2827
|
+
[AsciiDoc]
|
2769
2828
|
T}:T{
|
2770
2829
|
.sp
|
2771
|
-
|
2830
|
+
\m[blue]\fBhttp://www\&.methods\&.co\&.nz/asciidoc/\fR\m[]
|
2772
2831
|
T}
|
2773
2832
|
T{
|
2774
2833
|
.sp
|
2775
|
-
Ember
|
2834
|
+
[Ember]
|
2776
2835
|
T}:T{
|
2777
2836
|
.sp
|
2778
|
-
|
2837
|
+
\m[blue]\fBhttp://snk\&.tuxfamily\&.org/lib/ember/\fR\m[]
|
2779
2838
|
T}
|
2780
2839
|
T{
|
2781
2840
|
.sp
|
2782
|
-
ERBook
|
2841
|
+
[ERBook]
|
2783
2842
|
T}:T{
|
2784
2843
|
.sp
|
2785
|
-
|
2844
|
+
\m[blue]\fBhttp://snk\&.tuxfamily\&.org/lib/erbook/\fR\m[]
|
2786
2845
|
T}
|
2787
2846
|
T{
|
2788
2847
|
.sp
|
2789
|
-
eRuby
|
2848
|
+
[eRuby]
|
2790
2849
|
T}:T{
|
2791
2850
|
.sp
|
2792
|
-
|
2851
|
+
\m[blue]\fBhttp://en\&.wikipedia\&.org/wiki/ERuby\fR\m[]
|
2793
2852
|
T}
|
2794
2853
|
T{
|
2795
2854
|
.sp
|
2796
|
-
Inochi
|
2855
|
+
[Inochi]
|
2797
2856
|
T}:T{
|
2798
2857
|
.sp
|
2799
|
-
|
2858
|
+
\m[blue]\fBhttp://snk\&.tuxfamily\&.org/lib/inochi/\fR\m[]
|
2800
2859
|
T}
|
2801
2860
|
T{
|
2802
2861
|
.sp
|
2803
|
-
kdiff3
|
2862
|
+
[kdiff3]
|
2804
2863
|
T}:T{
|
2805
2864
|
.sp
|
2806
|
-
|
2865
|
+
\m[blue]\fBhttp://kdiff3\&.sourceforge\&.net\fR\m[]
|
2807
2866
|
T}
|
2808
2867
|
T{
|
2809
2868
|
.sp
|
2810
|
-
Lynx
|
2869
|
+
[Lynx]
|
2811
2870
|
T}:T{
|
2812
2871
|
.sp
|
2813
|
-
|
2872
|
+
\m[blue]\fBhttp://lynx\&.isc\&.org\fR\m[]
|
2814
2873
|
T}
|
2815
2874
|
T{
|
2816
2875
|
.sp
|
2817
|
-
Markdown
|
2876
|
+
[Markdown]
|
2818
2877
|
T}:T{
|
2819
2878
|
.sp
|
2820
|
-
|
2879
|
+
\m[blue]\fBhttp://daringfireball\&.net/projects/markdown\fR\m[]
|
2821
2880
|
T}
|
2822
2881
|
T{
|
2823
2882
|
.sp
|
2824
|
-
meld
|
2883
|
+
[meld]
|
2825
2884
|
T}:T{
|
2826
2885
|
.sp
|
2827
|
-
|
2886
|
+
\m[blue]\fBhttp://meld\&.sourceforge\&.net\fR\m[]
|
2828
2887
|
T}
|
2829
2888
|
T{
|
2830
2889
|
.sp
|
2831
|
-
RAA
|
2890
|
+
[RAA]
|
2832
2891
|
T}:T{
|
2833
2892
|
.sp
|
2834
|
-
|
2893
|
+
\m[blue]\fBhttp://raa\&.ruby\-lang\&.org\fR\m[]
|
2835
2894
|
T}
|
2836
2895
|
T{
|
2837
2896
|
.sp
|
2838
|
-
Ronn
|
2897
|
+
[Ronn]
|
2839
2898
|
T}:T{
|
2840
2899
|
.sp
|
2841
|
-
|
2900
|
+
\m[blue]\fBhttp://github\&.com/rtomayko/ronn\fR\m[]
|
2842
2901
|
T}
|
2843
2902
|
T{
|
2844
2903
|
.sp
|
2845
|
-
RubyGems
|
2904
|
+
[RubyGems]
|
2846
2905
|
T}:T{
|
2847
2906
|
.sp
|
2848
|
-
|
2907
|
+
\m[blue]\fBhttp://rubygems\&.org\fR\m[]
|
2849
2908
|
T}
|
2850
2909
|
T{
|
2851
2910
|
.sp
|
2852
|
-
Ruby
|
2911
|
+
[Ruby]
|
2853
2912
|
T}:T{
|
2854
2913
|
.sp
|
2855
|
-
|
2914
|
+
\m[blue]\fBhttp://ruby\-lang\&.org\fR\m[]
|
2856
2915
|
T}
|
2857
2916
|
T{
|
2858
2917
|
.sp
|
2859
|
-
ruby\-talk
|
2918
|
+
[ruby\-talk]
|
2860
2919
|
T}:T{
|
2861
2920
|
.sp
|
2862
|
-
|
2921
|
+
\m[blue]\fBhttp://www\&.ruby\-lang\&.org/en/community/mailing\-lists/\fR\m[]
|
2863
2922
|
T}
|
2864
2923
|
T{
|
2865
2924
|
.sp
|
2866
|
-
tkdiff
|
2925
|
+
[tkdiff]
|
2867
2926
|
T}:T{
|
2868
2927
|
.sp
|
2869
|
-
|
2928
|
+
\m[blue]\fBhttp://tkdiff\&.sourceforge\&.net\fR\m[]
|
2870
2929
|
T}
|
2871
2930
|
T{
|
2872
2931
|
.sp
|
2873
|
-
YAML
|
2932
|
+
[YAML]
|
2874
2933
|
T}:T{
|
2875
2934
|
.sp
|
2876
|
-
|
2935
|
+
\m[blue]\fBhttp://www\&.yaml\&.org/YAML_for_ruby\&.html\fR\m[]
|
2877
2936
|
T}
|
2878
2937
|
T{
|
2879
2938
|
.sp
|
2880
|
-
YARD
|
2939
|
+
[YARD]
|
2881
2940
|
T}:T{
|
2882
2941
|
.sp
|
2883
|
-
|
2942
|
+
\m[blue]\fBhttp://yardoc\&.org/more\fR\m[]
|
2884
2943
|
T}
|
2885
2944
|
.TE
|
2886
2945
|
.sp 1
|
2946
|
+
.SH "NOTES"
|
2947
|
+
.IP " 1." 4
|
2948
|
+
"Backend Attributes" in the AsciiDoc manual
|
2949
|
+
.RS 4
|
2950
|
+
\%http://www.methods.co.nz/asciidoc/chunked/aph.html
|
2951
|
+
.RE
|
2952
|
+
.IP " 2." 4
|
2953
|
+
ruby-wrapper
|
2954
|
+
.RS 4
|
2955
|
+
\%http://github.com/chneukirchen/rup/blob/master/ruby-wrapper
|
2956
|
+
.RE
|
2957
|
+
.IP " 3." 4
|
2958
|
+
helping me find the solution
|
2959
|
+
.RS 4
|
2960
|
+
\%http://groups.google.com/group/asciidoc/msg/949fae9deb9f86b8
|
2961
|
+
.RE
|
2962
|
+
.IP " 4." 4
|
2963
|
+
is a private method
|
2964
|
+
.RS 4
|
2965
|
+
\%http://redmine.ruby-lang.org/issues/show/3617
|
2966
|
+
.RE
|
2967
|
+
.IP " 5." 4
|
2968
|
+
suggested by Eric Hodel
|
2969
|
+
.RS 4
|
2970
|
+
\%http://www.ruby-forum.com/topic/190220#830072
|
2971
|
+
.RE
|
2972
|
+
.IP " 6." 4
|
2973
|
+
the RubyForge gems feed
|
2974
|
+
.RS 4
|
2975
|
+
\%http://gems.rubyforge.org/index.rss
|
2976
|
+
.RE
|
2977
|
+
.IP " 7." 4
|
2978
|
+
SDoc
|
2979
|
+
.RS 4
|
2980
|
+
\%http://github.com/voloko/sdoc/tree/master
|
2981
|
+
.RE
|
2982
|
+
.IP " 8." 4
|
2983
|
+
YARD
|
2984
|
+
.RS 4
|
2985
|
+
\%http://yard.rubyforge.org
|
2986
|
+
.RE
|
2987
|
+
.IP " 9." 4
|
2988
|
+
code quality statistics
|
2989
|
+
.RS 4
|
2990
|
+
\%http://www.infoq.com/news/2008/11/static-analysis-tool-roundup
|
2991
|
+
.RE
|
2992
|
+
.IP "10." 4
|
2993
|
+
multiruby
|
2994
|
+
.RS 4
|
2995
|
+
\%http://www.infoq.com/news/2008/02/multiruby-testing
|
2996
|
+
.RE
|
2997
|
+
.IP "11." 4
|
2998
|
+
minitest
|
2999
|
+
.RS 4
|
3000
|
+
\%http://rubyforge.org/projects/bfts/
|
3001
|
+
.RE
|
3002
|
+
.IP "12." 4
|
3003
|
+
circular dependency problem
|
3004
|
+
.RS 4
|
3005
|
+
\%http://www.ruby-forum.com/topic/176173#771281
|
3006
|
+
.RE
|
3007
|
+
.IP "13." 4
|
3008
|
+
being determined incorrectly
|
3009
|
+
.RS 4
|
3010
|
+
\%http://www.ruby-forum.com/topic/176173#771351
|
3011
|
+
.RE
|
3012
|
+
.IP "14." 4
|
3013
|
+
sunaku@gmail.com
|
3014
|
+
.RS 4
|
3015
|
+
\%mailto:sunaku@gmail.com
|
3016
|
+
.RE
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 5
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 5.0.
|
8
|
+
- 2
|
9
|
+
version: 5.0.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Suraj N. Kurapati
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-08-
|
17
|
+
date: 2010-08-10 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -184,11 +184,11 @@ files:
|
|
184
184
|
- lib/inochi/templates/library_test.rb.rbs
|
185
185
|
- lib/inochi/templates/BEYOND.rbs
|
186
186
|
- lib/inochi/templates/MANUAL.rbs
|
187
|
+
- lib/inochi/tasks/2-man.css
|
187
188
|
- lib/inochi/tasks/1-api.rake
|
188
189
|
- lib/inochi/tasks/5-pub.rake
|
189
190
|
- lib/inochi/tasks/3-ann.rake
|
190
191
|
- lib/inochi/tasks/2-man.rake
|
191
|
-
- lib/inochi/tasks/2-man.rake.css
|
192
192
|
- lib/inochi/tasks/4-gem.rake
|
193
193
|
- LICENSE
|
194
194
|
- CREDITS
|