inochi 6.0.2 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,12 +18,12 @@ module Inochi
18
18
  ##
19
19
  # Number of this release of this project.
20
20
  #
21
- VERSION = '6.0.2'
21
+ VERSION = '6.1.0'
22
22
 
23
23
  ##
24
24
  # Date of this release of this project.
25
25
  #
26
- RELDATE = '2011-04-21'
26
+ RELDATE = '2011-06-29'
27
27
 
28
28
  ##
29
29
  # Description of this release of this project.
@@ -55,10 +55,10 @@ module Inochi
55
55
  # }
56
56
  #
57
57
  GEMDEPS = {
58
- 'ember' => [ '>= 0.3.0' , '< 1' ], # for eRuby templates
59
- 'nokogiri' => [ '>= 1.4' , '< 2' ], # for parsing HTML and XML
60
- 'rake' => [ '>= 0.8.4' , '< 1' ], # for Inochi::Engine
61
- 'yard' => [ '>= 0.5.8' , '< 1' ], # for making API documentation
58
+ 'rake' => [ '>= 0.8.4' , '< 0.9' ], # for Inochi::Engine
59
+ 'ember' => [ '>= 0.3.0' , '< 1' ], # for eRuby templates
60
+ 'nokogiri' => [ '>= 1.4' , '< 2' ], # for parsing HTML and XML
61
+ 'yard' => [ '>= 0.5.8' , '< 1' ], # for making API documentation
62
62
  }
63
63
 
64
64
  end
@@ -1,8 +1,4 @@
1
1
  @media all {
2
- div.sectionbody, body {
3
- font-family: sans-serif;
4
- }
5
-
6
2
  div.sectionbody {
7
3
  line-height: 1.5em;
8
4
  }
@@ -13,30 +9,21 @@
13
9
  }
14
10
 
15
11
  @media screen {
16
- a {
17
- text-decoration: none;
12
+ body {
13
+ max-width: 50em; /* approximately 80 characters wide */
14
+ margin-left: 15em; /* make room for TOC on the left */
18
15
  }
19
16
 
20
- a:hover {
21
- text-decoration: underline;
17
+ body, div.sectionbody {
18
+ font-family: sans-serif;
22
19
  }
23
20
 
24
- body {
25
- max-width: 50em; /* approximately 80 characters wide */
26
- margin-left: 15em;
27
- font-size: 95%;
21
+ a {
22
+ text-decoration: none;
28
23
  }
29
24
 
30
- #toc {
31
- position: fixed;
32
- top: 0;
33
- left: 0;
34
- bottom: 0;
35
- width: 13em;
36
- padding: 0.5em;
37
- padding-bottom: 1.5em;
38
- margin: 0 !important;
39
- overflow: auto;
25
+ a:hover {
26
+ text-decoration: underline;
40
27
  }
41
28
 
42
29
  #toc a {
@@ -46,15 +33,30 @@
46
33
  #toc .toclevel1 {
47
34
  margin-top: 1.25em;
48
35
  }
49
-
50
- #toc .toclevel2 {
51
- margin-top: 0.25em;
52
- display: list-item;
53
- }
54
36
  }
55
37
 
56
38
  @media print {
39
+ body {
40
+ font-family: serif;
41
+ }
42
+
43
+ h1, h2, h3, h4, h5 {
44
+ font-family: sans-serif;
45
+ }
46
+
57
47
  #toc {
58
48
  display: none;
59
49
  }
50
+
51
+ /* blend cross-reference hyperlinks as normal text */
52
+ a[href^="#"] {
53
+ color: inherit;
54
+ text-decoration: none;
55
+ }
56
+
57
+ /* show URL of destination for external hyperlinks */
58
+ a[href]:not([href^="#"]):after {
59
+ content: " " attr(href);
60
+ font-family: monospace;
61
+ }
60
62
  }
@@ -14,9 +14,15 @@ task :man => [@man_html_dst, @man_roff_dst]
14
14
  file @man_asciidoc_dst => @man_asciidoc_src do
15
15
 
16
16
  input = [
17
- # use the default icons that were installed along with AsciiDoc
18
- # see http://groups.google.com/group/asciidoc/msg/adb7cf741147ce38
19
- ':iconsdir: {asciidoc-dir}/{iconsdir}',
17
+ ':pygments:', # for better syntax coloring than GNU Source Highlight
18
+ ':data-uri:', # to ensure the output is a monolithic HTML document
19
+ ':icons:', ':iconsdir: {asciidoc-confdir}/{iconsdir}',
20
+ ':toc2:', ':stylesheet: ' + __FILE__.ext('css'),
21
+
22
+ Array(@project_config[:man_asciidoc_attributes]).map do |attribute|
23
+ name, value = attribute.split('=')
24
+ ":#{name}: #{value}"
25
+ end,
20
26
 
21
27
  ":revdate: #{@project_module::RELDATE}",
22
28
  ":revnumber: #{@project_module::VERSION}",
@@ -27,7 +33,8 @@ file @man_asciidoc_dst => @man_asciidoc_src do
27
33
  "#{@project_package_name} - #{@project_module::TAGLINE}",
28
34
 
29
35
  "%+ #{@man_asciidoc_src.first.inspect}",
30
- ].join("\n\n")
36
+ ].
37
+ flatten.join("\n\n")
31
38
 
32
39
  options = {
33
40
  :shorthand => true,
@@ -45,23 +52,15 @@ CLEAN.include @man_asciidoc_dst
45
52
 
46
53
  #-----------------------------------------------------------------------------
47
54
 
48
- build_asciidoc_args = proc do |*atts|
49
- atts.concat Array(@project_config[:man_asciidoc_attributes])
50
- args = atts.map {|a| ['-a', a] }.flatten
51
-
52
- args.push '-v' if Rake.application.options.trace
53
- args.push @man_asciidoc_dst
54
-
55
+ build_asciidoc_args = lambda do
56
+ args = [@man_asciidoc_dst]
57
+ args.unshift '-v' if Rake.application.options.trace
55
58
  args
56
59
  end
57
60
 
58
61
  file @man_html_dst => @man_asciidoc_dst do
59
- args = build_asciidoc_args.call(
60
- 'pygments', # for better syntax coloring than GNU Source Highlight
61
- 'data-uri', 'icons', # NOTE: iconsdir is defined above in eRuby template
62
- 'toc', 'stylesheet=' + __FILE__.ext('css')
63
- )
64
- sh 'asciidoc', '-o', @man_html_dst, *args
62
+ args = build_asciidoc_args.call
63
+ sh 'asciidoc', '-o', @man_html_dst, '-b', 'html5', *args
65
64
  end
66
65
 
67
66
  CLOBBER.include @man_html_dst
@@ -58,7 +58,7 @@ desc 'Build release package for RubyGems.'
58
58
  task :gem => @project_gem_file
59
59
 
60
60
  file @project_gem_file => @gem_spec_dst do
61
- Gem::Builder.new(@gem_spec).build
61
+ sh 'gem', 'build', @gem_spec_dst
62
62
  end
63
63
 
64
64
  CLOBBER.include @project_gem_file
@@ -18,8 +18,8 @@ packaging, announcing, and publishing new releases. See its help manual and
18
18
  list of tasks to get started:
19
19
 
20
20
  ------------------------------------------------------------------------------
21
- inochi --help # display help manual
22
- inochi --tasks # list available tasks
21
+ bundle exec inochi --help # display help manual
22
+ bundle exec inochi --tasks # list available tasks
23
23
  ------------------------------------------------------------------------------
24
24
 
25
25
  === $LOAD_PATH setup
@@ -30,44 +30,15 @@ use any libraries therein or run any executables in the `bin/` directory.
30
30
  This can be achieved by passing an option to Ruby:
31
31
 
32
32
  ------------------------------------------------------------------------------
33
- ruby -Ilib bin/#{package_name}
34
- irb -Ilib -r #{package_name}
33
+ bundle exec ruby -Ilib bin/#{package_name}
34
+ bundle exec irb -Ilib -r #{package_name}
35
35
  ------------------------------------------------------------------------------
36
36
 
37
37
  Or by setting the `$RUBYLIB` environment variable:
38
38
 
39
39
  ------------------------------------------------------------------------------
40
- export RUBYLIB=lib # bash, ksh, zsh
41
- setenv RUBYLIB lib # csh
42
- set -x RUBYLIB lib # fish
43
-
44
- ruby bin/#{package_name}
45
- irb -r #{package_name}
46
- ------------------------------------------------------------------------------
47
-
48
- Or by running Ruby through the
49
- http://github.com/chneukirchen/rup/blob/master/ruby-wrapper[ruby-wrapper]
50
- tool.
51
-
52
- === RubyGems setup
53
-
54
- If you use Ruby 1.8 or older, then ensure that RubyGems is activated before
55
- you use any libraries in the `lib/` directory or run any executables in the
56
- `bin/` directory.
57
-
58
- This can be achieved by passing an option to Ruby:
59
-
60
- ------------------------------------------------------------------------------
61
- ruby -rubygems bin/#{package_name}
62
- irb -rubygems -r #{package_name}
63
- ------------------------------------------------------------------------------
64
-
65
- Or by setting the `$RUBYOPT` environment variable:
66
-
67
- ------------------------------------------------------------------------------
68
- export RUBYOPT=-rubygems # bash, ksh, zsh
69
- setenv RUBYOPT -rubygems # csh
70
- set -x RUBYOPT -rubygems # fish
40
+ env RUBYLIB=lib bundle exec ruby bin/#{package_name}
41
+ env RUBYLIB=lib bundle exec irb -r #{package_name}
71
42
  ------------------------------------------------------------------------------
72
43
 
73
44
  === Running tests
@@ -2,12 +2,12 @@
2
2
  .\" Title: inochi
3
3
  .\" Author: [see the "AUTHORS" section]
4
4
  .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
5
- .\" Date: 2011-04-21
5
+ .\" Date: 2011-06-29
6
6
  .\" Manual: \ \&
7
- .\" Source: \ \& 6.0.2
7
+ .\" Source: \ \& 6.1.0
8
8
  .\" Language: English
9
9
  .\"
10
- .TH "INOCHI" "1" "2011\-04\-21" "\ \& 6\&.0\&.2" "\ \&"
10
+ .TH "INOCHI" "1" "2011\-06\-29" "\ \& 6\&.1\&.0" "\ \&"
11
11
  .\" -----------------------------------------------------------------
12
12
  .\" * Define some portability stuff
13
13
  .\" -----------------------------------------------------------------
@@ -180,7 +180,7 @@ Issue tracker (report bugs, request features, get help)
180
180
  .\}
181
181
 
182
182
  [AsciiDoc]
183
- 8\&.5\&.3 or newer\&.
183
+ 8\&.6\&.5 or newer\&.
184
184
  .RE
185
185
  .sp
186
186
  .RS 4
@@ -910,8 +910,11 @@ test/runner
910
910
  .RS 4
911
911
  Executable Ruby script that hides the details of running the test suite\&.
912
912
  .RE
913
- .sp
914
- test/test_helper\&.rb: Ruby source file that prepares the testing environment by loading a testing library and defining common knowledge and utility logic shared by the actual tests\&.
913
+ .PP
914
+ test/test_helper\&.rb
915
+ .RS 4
916
+ Ruby source file that prepares the testing environment by loading a testing library and defining common knowledge and utility logic shared by the actual tests\&.
917
+ .RE
915
918
  .PP
916
919
  test/**/*_test\&.rb
917
920
  .RS 4
@@ -1010,8 +1013,8 @@ bundle install
1010
1013
  .RS 4
1011
1014
  .\}
1012
1015
  .nf
1013
- inochi \-\-help # display help manual
1014
- inochi \-\-tasks # list available tasks
1016
+ bundle exec inochi \-\-help # display help manual
1017
+ bundle exec inochi \-\-tasks # list available tasks
1015
1018
  .fi
1016
1019
  .if n \{\
1017
1020
  .RE
@@ -1026,8 +1029,8 @@ This can be achieved by passing an option to Ruby:
1026
1029
  .RS 4
1027
1030
  .\}
1028
1031
  .nf
1029
- ruby \-Ilib bin/inochi
1030
- irb \-Ilib \-r inochi
1032
+ bundle exec ruby \-Ilib bin/inochi
1033
+ bundle exec irb \-Ilib \-r inochi
1031
1034
  .fi
1032
1035
  .if n \{\
1033
1036
  .RE
@@ -1039,67 +1042,164 @@ Or by setting the $RUBYLIB environment variable:
1039
1042
  .RS 4
1040
1043
  .\}
1041
1044
  .nf
1042
- export RUBYLIB=lib # bash, ksh, zsh
1043
- setenv RUBYLIB lib # csh
1044
- set \-x RUBYLIB lib # fish
1045
-
1046
- ruby bin/inochi
1047
- irb \-r inochi
1045
+ env RUBYLIB=lib bundle exec ruby bin/inochi
1046
+ env RUBYLIB=lib bundle exec irb \-r inochi
1048
1047
  .fi
1049
1048
  .if n \{\
1050
1049
  .RE
1051
1050
  .\}
1051
+ .SS "Running tests"
1052
1052
  .sp
1053
- Or by running Ruby through the \m[blue]\fBruby\-wrapper\fR\m[]\&\s-2\u[2]\d\s+2 tool\&.
1054
- .SS "RubyGems setup"
1055
- .sp
1056
- 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\&.
1057
- .sp
1058
- This can be achieved by passing an option to Ruby:
1053
+ Simply execute the included test runner, which sets up Ruby\(cqs $LOAD_PATH for testing, loads the included test/test_helper\&.rb file, and then evaluates all test/**/*_test\&.rb files:
1059
1054
  .sp
1060
1055
  .if n \{\
1061
1056
  .RS 4
1062
1057
  .\}
1063
1058
  .nf
1064
- ruby \-rubygems bin/inochi
1065
- irb \-rubygems \-r inochi
1059
+ ruby test/runner
1066
1060
  .fi
1067
1061
  .if n \{\
1068
1062
  .RE
1069
1063
  .\}
1070
1064
  .sp
1071
- Or by setting the $RUBYOPT environment variable:
1065
+ 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/test_helper\&.rb file\&.
1066
+ .SS "Contributing"
1067
+ .sp
1068
+ \m[blue]\fBFork this project on GitHub\fR\m[] and send a pull request\&.
1069
+ .SH "HISTORY"
1070
+ .SS "Version 6\&.1\&.0 (2011\-06\-29)"
1071
+ .PP
1072
+ \fBPrerequisite changes\fR
1072
1073
  .sp
1073
- .if n \{\
1074
1074
  .RS 4
1075
+ .ie n \{\
1076
+ \h'-04'\(bu\h'+03'\c
1075
1077
  .\}
1076
- .nf
1077
- export RUBYOPT=\-rubygems # bash, ksh, zsh
1078
- setenv RUBYOPT \-rubygems # csh
1079
- set \-x RUBYOPT \-rubygems # fish
1080
- .fi
1081
- .if n \{\
1078
+ .el \{\
1079
+ .sp -1
1080
+ .IP \(bu 2.3
1081
+ .\}
1082
+ AsciiDoc 8\&.6\&.5 is now required\&.
1082
1083
  .RE
1084
+ .PP
1085
+ \fBNew features\fR
1086
+ .sp
1087
+ .RS 4
1088
+ .ie n \{\
1089
+ \h'-04'\(bu\h'+03'\c
1083
1090
  .\}
1084
- .SS "Running tests"
1091
+ .el \{\
1092
+ .sp -1
1093
+ .IP \(bu 2.3
1094
+ .\}
1095
+ Use AsciiDoc\(cqs HTML5 backend to build HTML manual\&.
1096
+ .RE
1085
1097
  .sp
1086
- Simply execute the included test runner, which sets up Ruby\(cqs $LOAD_PATH for testing, loads the included test/test_helper\&.rb file, and then evaluates all test/**/*_test\&.rb files:
1098
+ .RS 4
1099
+ .ie n \{\
1100
+ \h'-04'\(bu\h'+03'\c
1101
+ .\}
1102
+ .el \{\
1103
+ .sp -1
1104
+ .IP \(bu 2.3
1105
+ .\}
1106
+ Use sans headings and serif content in print style\&.
1107
+ .RE
1087
1108
  .sp
1088
- .if n \{\
1089
1109
  .RS 4
1110
+ .ie n \{\
1111
+ \h'-04'\(bu\h'+03'\c
1090
1112
  .\}
1091
- .nf
1092
- ruby test/runner
1093
- .fi
1094
- .if n \{\
1113
+ .el \{\
1114
+ .sp -1
1115
+ .IP \(bu 2.3
1116
+ .\}
1117
+ Show target URL beside external hyperlinks in print style\&.
1095
1118
  .RE
1119
+ .sp
1120
+ .RS 4
1121
+ .ie n \{\
1122
+ \h'-04'\(bu\h'+03'\c
1123
+ .\}
1124
+ .el \{\
1125
+ .sp -1
1126
+ .IP \(bu 2.3
1096
1127
  .\}
1128
+ Show cross\-reference hyperlinks as normal text in print style\&.
1129
+ .RE
1130
+ .PP
1131
+ \fBBug fixes\fR
1097
1132
  .sp
1098
- 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/test_helper\&.rb file\&.
1099
- .SS "Contributing"
1133
+ .RS 4
1134
+ .ie n \{\
1135
+ \h'-04'\(bu\h'+03'\c
1136
+ .\}
1137
+ .el \{\
1138
+ .sp -1
1139
+ .IP \(bu 2.3
1140
+ .\}
1141
+ Admonition icons were not emitted in HTML manual\&.
1142
+ .RE
1100
1143
  .sp
1101
- \m[blue]\fBFork this project on GitHub\fR\m[] and send a pull request\&.
1102
- .SH "HISTORY"
1144
+ .RS 4
1145
+ .ie n \{\
1146
+ \h'-04'\(bu\h'+03'\c
1147
+ .\}
1148
+ .el \{\
1149
+ .sp -1
1150
+ .IP \(bu 2.3
1151
+ .\}
1152
+ Require Rake 0\&.8\&.x because 0\&.9 is incompatible\&.
1153
+ .RE
1154
+ .sp
1155
+ .RS 4
1156
+ .ie n \{\
1157
+ \h'-04'\(bu\h'+03'\c
1158
+ .\}
1159
+ .el \{\
1160
+ .sp -1
1161
+ .IP \(bu 2.3
1162
+ .\}
1163
+ Fix undefined method \(oqwrite\(cq for #<Syck::Emitter\&.
1164
+ .RE
1165
+ .sp
1166
+ .RS 4
1167
+ .ie n \{\
1168
+ \h'-04'\(bu\h'+03'\c
1169
+ .\}
1170
+ .el \{\
1171
+ .sp -1
1172
+ .IP \(bu 2.3
1173
+ .\}
1174
+ Use
1175
+ bundle exec
1176
+ to run Ruby and IRB in HACKING\&.
1177
+ .RE
1178
+ .PP
1179
+ \fBHousekeeping\fR
1180
+ .sp
1181
+ .RS 4
1182
+ .ie n \{\
1183
+ \h'-04'\(bu\h'+03'\c
1184
+ .\}
1185
+ .el \{\
1186
+ .sp -1
1187
+ .IP \(bu 2.3
1188
+ .\}
1189
+ Emit AsciiDoc attributes in document itself, not on the command line\&.
1190
+ \m[blue]\fBhttp://groups\&.google\&.com/group/asciidoc/msg/b4f47a8e1f960018\fR\m[]
1191
+ .RE
1192
+ .sp
1193
+ .RS 4
1194
+ .ie n \{\
1195
+ \h'-04'\(bu\h'+03'\c
1196
+ .\}
1197
+ .el \{\
1198
+ .sp -1
1199
+ .IP \(bu 2.3
1200
+ .\}
1201
+ Revert "Reduce font size to accomodate small screens in help manual"\&.
1202
+ .RE
1103
1203
  .SS "Version 6\&.0\&.2 (2011\-04\-21)"
1104
1204
  .sp
1105
1205
  This release adopts some common Rails testing and development conventions, drops runtime gem version dependency establishment in favor of [Bundler], produces a gemspec file for greater interoperability, and improves merging\&.
@@ -1204,7 +1304,7 @@ task to generate a gemspec file for your project\&.
1204
1304
  Allow gem package to be built via
1205
1305
  gem build *\&.gemspec
1206
1306
  as
1207
- \m[blue]\fBYehuda Katz suggests\fR\m[]\&\s-2\u[3]\d\s+2\&.
1307
+ \m[blue]\fBYehuda Katz suggests\fR\m[]\&\s-2\u[2]\d\s+2\&.
1208
1308
  .RE
1209
1309
  .PP
1210
1310
  \fBBug fixes\fR
@@ -1383,7 +1483,7 @@ This release emits hyperlink URLs in the generated UNIX manpage, beautifies the
1383
1483
  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
1384
1484
  [AsciiDoc]
1385
1485
  mailing list for
1386
- \m[blue]\fBhelping me find the solution\fR\m[]\&\s-2\u[4]\d\s+2
1486
+ \m[blue]\fBhelping me find the solution\fR\m[]\&\s-2\u[3]\d\s+2
1387
1487
  to this problem\&.
1388
1488
  .RE
1389
1489
  .sp
@@ -1615,7 +1715,7 @@ This release fixes a bug in gem version dependency establishment\&.
1615
1715
  .\}
1616
1716
  Gem version dependencies were not being established in Ruby 1\&.8\&.7 and 1\&.9\&.2 because
1617
1717
  Kernel#gem
1618
- \m[blue]\fBis a private method\fR\m[]\&\s-2\u[5]\d\s+2
1718
+ \m[blue]\fBis a private method\fR\m[]\&\s-2\u[4]\d\s+2
1619
1719
  in those Ruby versions\&.
1620
1720
  .sp
1621
1721
  To propagate this fix into your projects, please reinitialize them with this version of Inochi\&.
@@ -2183,8 +2283,8 @@ Add instructions for building gems without Inochi as a runtime dependency\&.
2183
2283
  .IP \(bu 2.3
2184
2284
  .\}
2185
2285
  Put release notes in "description" field of gemspec, as
2186
- \m[blue]\fBsuggested by Eric Hodel\fR\m[]\&\s-2\u[6]\d\s+2, so that subscribers of
2187
- \m[blue]\fBthe RubyForge gems feed\fR\m[]\&\s-2\u[7]\d\s+2
2286
+ \m[blue]\fBsuggested by Eric Hodel\fR\m[]\&\s-2\u[5]\d\s+2, so that subscribers of
2287
+ \m[blue]\fBthe RubyForge gems feed\fR\m[]\&\s-2\u[6]\d\s+2
2188
2288
  are aware of the changes in a published gem\&.
2189
2289
  .RE
2190
2290
  .sp
@@ -2377,9 +2477,9 @@ ERBook 7\&.1\&.0 is now used for generating the user manual\&. This is a major s
2377
2477
  .IP \(bu 2.3
2378
2478
  .\}
2379
2479
 
2380
- \m[blue]\fBSDoc\fR\m[]\&\s-2\u[8]\d\s+2
2480
+ \m[blue]\fBSDoc\fR\m[]\&\s-2\u[7]\d\s+2
2381
2481
  is now used to generate API documentation instead of
2382
- \m[blue]\fBYARD\fR\m[]\&\s-2\u[9]\d\s+2\&. If you link to particular classes or methods in the generated API documentation, be sure to update your link addresses!
2482
+ \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!
2383
2483
  .RE
2384
2484
  .sp
2385
2485
  .RS 4
@@ -2458,7 +2558,7 @@ option\&.
2458
2558
  .IP \(bu 2.3
2459
2559
  .\}
2460
2560
  Add "lint" rake task which reports
2461
- \m[blue]\fBcode quality statistics\fR\m[]\&\s-2\u[10]\d\s+2\&.
2561
+ \m[blue]\fBcode quality statistics\fR\m[]\&\s-2\u[9]\d\s+2\&.
2462
2562
  .RE
2463
2563
  .sp
2464
2564
  .RS 4
@@ -2481,7 +2581,7 @@ Add "test:cov" rake task which reports code coverage statistics\&.
2481
2581
  .IP \(bu 2.3
2482
2582
  .\}
2483
2583
  Add "test:ruby" task which runs all tests with
2484
- \m[blue]\fBmultiruby\fR\m[]\&\s-2\u[11]\d\s+2\&.
2584
+ \m[blue]\fBmultiruby\fR\m[]\&\s-2\u[10]\d\s+2\&.
2485
2585
  .RE
2486
2586
  .sp
2487
2587
  .RS 4
@@ -2785,7 +2885,7 @@ This release adds support for unit testing, improves the portability of Inochi a
2785
2885
  .IP \(bu 2.3
2786
2886
  .\}
2787
2887
  Added support for unit testing via the
2788
- \m[blue]\fBminitest\fR\m[]\&\s-2\u[12]\d\s+2
2888
+ \m[blue]\fBminitest\fR\m[]\&\s-2\u[11]\d\s+2
2789
2889
  library\&.
2790
2890
  .RE
2791
2891
  .sp
@@ -2905,7 +3005,7 @@ module: project name calculation and CamelCase to snake_case conversion\&.
2905
3005
  .RE
2906
3006
  .SS "Version 0\&.1\&.0 (2009\-01\-13)"
2907
3007
  .sp
2908
- This release reattempts to fix the \m[blue]\fBcircular dependency problem\fR\m[]\&\s-2\u[13]\d\s+2 that occurred when installing either Inochi or ERBook\&.
3008
+ 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\&.
2909
3009
  .PP
2910
3010
  \fBNew features\fR
2911
3011
  .sp
@@ -2973,7 +3073,7 @@ This release fixes some show\-stopper bugs\&.
2973
3073
  .IP \(bu 2.3
2974
3074
  .\}
2975
3075
  The name of the project library was
2976
- \m[blue]\fBbeing determined incorrectly\fR\m[]\&\s-2\u[14]\d\s+2\&. (thanks to Florian Gilcher)
3076
+ \m[blue]\fBbeing determined incorrectly\fR\m[]\&\s-2\u[13]\d\s+2\&. (thanks to Florian Gilcher)
2977
3077
  .RE
2978
3078
  .sp
2979
3079
  .RS 4
@@ -2985,7 +3085,7 @@ The name of the project library was
2985
3085
  .IP \(bu 2.3
2986
3086
  .\}
2987
3087
  There was a
2988
- \m[blue]\fBcircular dependency problem\fR\m[]\&\s-2\u[13]\d\s+2
3088
+ \m[blue]\fBcircular dependency problem\fR\m[]\&\s-2\u[12]\d\s+2
2989
3089
  when installing the
2990
3090
  Inochi
2991
3091
  gem\&. (thanks to Florian Gilcher)
@@ -3059,7 +3159,7 @@ The "inochi\&.png" image and its "inochi\&.svg" source utilize the "3 flowers" g
3059
3159
  .sp
3060
3160
  (the ISC license)
3061
3161
  .sp
3062
- Copyright 2008 Suraj N\&. Kurapati <\m[blue]\fBsunaku@gmail\&.com\fR\m[]\&\s-2\u[15]\d\s+2>
3162
+ Copyright 2008 Suraj N\&. Kurapati <\m[blue]\fBsunaku@gmail\&.com\fR\m[]\&\s-2\u[14]\d\s+2>
3063
3163
  .sp
3064
3164
  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\&.
3065
3165
  .sp
@@ -3231,71 +3331,66 @@ T}
3231
3331
  \%http://www.methods.co.nz/asciidoc/chunked/aph.html
3232
3332
  .RE
3233
3333
  .IP " 2." 4
3234
- ruby-wrapper
3235
- .RS 4
3236
- \%http://github.com/chneukirchen/rup/blob/master/ruby-wrapper
3237
- .RE
3238
- .IP " 3." 4
3239
3334
  Yehuda Katz suggests
3240
3335
  .RS 4
3241
3336
  \%http://yehudakatz.com/2010/04/02/using-gemspecs-as-intended/
3242
3337
  .RE
3243
- .IP " 4." 4
3338
+ .IP " 3." 4
3244
3339
  helping me find the solution
3245
3340
  .RS 4
3246
3341
  \%http://groups.google.com/group/asciidoc/msg/949fae9deb9f86b8
3247
3342
  .RE
3248
- .IP " 5." 4
3343
+ .IP " 4." 4
3249
3344
  is a private method
3250
3345
  .RS 4
3251
3346
  \%http://redmine.ruby-lang.org/issues/show/3617
3252
3347
  .RE
3253
- .IP " 6." 4
3348
+ .IP " 5." 4
3254
3349
  suggested by Eric Hodel
3255
3350
  .RS 4
3256
3351
  \%http://www.ruby-forum.com/topic/190220#830072
3257
3352
  .RE
3258
- .IP " 7." 4
3353
+ .IP " 6." 4
3259
3354
  the RubyForge gems feed
3260
3355
  .RS 4
3261
3356
  \%http://gems.rubyforge.org/index.rss
3262
3357
  .RE
3263
- .IP " 8." 4
3358
+ .IP " 7." 4
3264
3359
  SDoc
3265
3360
  .RS 4
3266
3361
  \%http://github.com/voloko/sdoc/tree/master
3267
3362
  .RE
3268
- .IP " 9." 4
3363
+ .IP " 8." 4
3269
3364
  YARD
3270
3365
  .RS 4
3271
3366
  \%http://yard.rubyforge.org
3272
3367
  .RE
3273
- .IP "10." 4
3368
+ .IP " 9." 4
3274
3369
  code quality statistics
3275
3370
  .RS 4
3276
3371
  \%http://www.infoq.com/news/2008/11/static-analysis-tool-roundup
3277
3372
  .RE
3278
- .IP "11." 4
3373
+ .IP "10." 4
3279
3374
  multiruby
3280
3375
  .RS 4
3281
3376
  \%http://www.infoq.com/news/2008/02/multiruby-testing
3282
3377
  .RE
3283
- .IP "12." 4
3378
+ .IP "11." 4
3284
3379
  minitest
3285
3380
  .RS 4
3286
3381
  \%http://rubyforge.org/projects/bfts/
3287
3382
  .RE
3288
- .IP "13." 4
3383
+ .IP "12." 4
3289
3384
  circular dependency problem
3290
3385
  .RS 4
3291
3386
  \%http://www.ruby-forum.com/topic/176173#771281
3292
3387
  .RE
3293
- .IP "14." 4
3388
+ .IP "13." 4
3294
3389
  being determined incorrectly
3295
3390
  .RS 4
3296
3391
  \%http://www.ruby-forum.com/topic/176173#771351
3297
3392
  .RE
3298
- .IP "15." 4
3393
+ .IP "14." 4
3299
3394
  sunaku@gmail.com
3300
3395
  .RS 4
3301
3396
  \%mailto:sunaku@gmail.com
metadata CHANGED
@@ -1,82 +1,81 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: inochi
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 6.1.0
4
5
  prerelease:
5
- version: 6.0.2
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Suraj N. Kurapati
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-04-21 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: ember
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
12
+ date: 2011-06-29 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &9604700 !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 0.3.0
18
+ requirements:
24
19
  - - <
25
- - !ruby/object:Gem::Version
26
- version: "1"
20
+ - !ruby/object:Gem::Version
21
+ version: '0.9'
22
+ - - ! '>='
23
+ - !ruby/object:Gem::Version
24
+ version: 0.8.4
27
25
  type: :runtime
28
- version_requirements: *id001
29
- - !ruby/object:Gem::Dependency
30
- name: nokogiri
31
26
  prerelease: false
32
- requirement: &id002 !ruby/object:Gem::Requirement
27
+ version_requirements: *9604700
28
+ - !ruby/object:Gem::Dependency
29
+ name: ember
30
+ requirement: &9603820 !ruby/object:Gem::Requirement
33
31
  none: false
34
- requirements:
35
- - - ">="
36
- - !ruby/object:Gem::Version
37
- version: "1.4"
32
+ requirements:
38
33
  - - <
39
- - !ruby/object:Gem::Version
40
- version: "2"
34
+ - !ruby/object:Gem::Version
35
+ version: '1'
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: 0.3.0
41
39
  type: :runtime
42
- version_requirements: *id002
43
- - !ruby/object:Gem::Dependency
44
- name: rake
45
40
  prerelease: false
46
- requirement: &id003 !ruby/object:Gem::Requirement
41
+ version_requirements: *9603820
42
+ - !ruby/object:Gem::Dependency
43
+ name: nokogiri
44
+ requirement: &9602900 !ruby/object:Gem::Requirement
47
45
  none: false
48
- requirements:
49
- - - ">="
50
- - !ruby/object:Gem::Version
51
- version: 0.8.4
46
+ requirements:
52
47
  - - <
53
- - !ruby/object:Gem::Version
54
- version: "1"
48
+ - !ruby/object:Gem::Version
49
+ version: '2'
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '1.4'
55
53
  type: :runtime
56
- version_requirements: *id003
57
- - !ruby/object:Gem::Dependency
58
- name: yard
59
54
  prerelease: false
60
- requirement: &id004 !ruby/object:Gem::Requirement
55
+ version_requirements: *9602900
56
+ - !ruby/object:Gem::Dependency
57
+ name: yard
58
+ requirement: &9602080 !ruby/object:Gem::Requirement
61
59
  none: false
62
- requirements:
63
- - - ">="
64
- - !ruby/object:Gem::Version
65
- version: 0.5.8
60
+ requirements:
66
61
  - - <
67
- - !ruby/object:Gem::Version
68
- version: "1"
62
+ - !ruby/object:Gem::Version
63
+ version: '1'
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: 0.5.8
69
67
  type: :runtime
70
- version_requirements: *id004
71
- description: Inochi is an infrastructure that gives life to open-source [Ruby] projects
72
68
  and helps you document, test, package, publish, announce, and maintain them.
69
+ prerelease: false
70
+ version_requirements: *9602080
71
+ description: ! "Inochi is an infrastructure that gives life to open-source [Ruby]
72
+ projects\r and helps you document, test, package, publish, announce, and maintain
73
+ them."
73
74
  email:
74
- executables:
75
+ executables:
75
76
  - inochi
76
77
  extensions: []
77
-
78
78
  extra_rdoc_files: []
79
-
80
- files:
79
+ files:
81
80
  - bin/inochi
82
81
  - lib/inochi/templates/CREDITS.rbs
83
82
  - lib/inochi/templates/INSTALL.rbs
@@ -110,30 +109,26 @@ files:
110
109
  - man/man1/inochi.1
111
110
  homepage: http://snk.tuxfamily.org/lib/inochi/
112
111
  licenses: []
113
-
114
112
  post_install_message:
115
113
  rdoc_options: []
116
-
117
- require_paths:
114
+ require_paths:
118
115
  - lib
119
- required_ruby_version: !ruby/object:Gem::Requirement
116
+ required_ruby_version: !ruby/object:Gem::Requirement
120
117
  none: false
121
- requirements:
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: "0"
125
- required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ! '>='
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
126
123
  none: false
127
- requirements:
128
- - - ">="
129
- - !ruby/object:Gem::Version
130
- version: "0"
124
+ requirements:
125
+ - - ! '>='
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
131
128
  requirements: []
132
-
133
129
  rubyforge_project:
134
- rubygems_version: 1.7.2
130
+ rubygems_version: 1.8.5
135
131
  signing_key:
136
132
  specification_version: 3
137
133
  summary: Gives life to Ruby projects
138
134
  test_files: []
139
-