Skip to content

Commit 6db7bd9

Browse files
committed
Fix History, I forgot I released 3.8
Restore post-install message
1 parent 01e7ef4 commit 6db7bd9

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

History.txt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
1-
=== 3.8 / ??
1+
=== 3.9 / ??
22

33
* Minor enhancements
4-
* RDoc::Parser::C can now discover methods on ENV and ARGF.
5-
* RDoc::Parser::C now knows about rb_cSocket and rb_mDL.
64
* RDoc::Parser::C now supports :doc: and :nodoc: for class comments
75
* Bug fixes
8-
* Updating Object in an ri data store with new data now removes methods,
9-
includes, constants and aliases.
106
* `ri []` and other special methods now work properly. Issue #52 by
117
ddebernardy.
128
* `ri` now has space between class comments from multiple files.
139

10+
=== 3.8 / 2011-06-29
11+
12+
* Minor enhancements
13+
* RDoc::Parser::C can now discover methods on ENV and ARGF.
14+
* RDoc::Parser::C now knows about rb_cSocket and rb_mDL.
15+
* Bug fixes
16+
* Updating Object in an ri data store with new data now removes methods,
17+
includes, constants and aliases.
18+
1419
=== 3.7 / 2011-06-27
1520

1621
* Minor enhancements

Rakefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ Hoe.spec 'rdoc' do
1919
rdoc_locations << 'docs.seattlerb.org:/data/www/docs.seattlerb.org/rdoc/'
2020
rdoc_locations << '[email protected]:/var/www/gforge-projects/rdoc/'
2121

22+
23+
spec_extras[:post_install_message] = <<-MESSAGE
24+
Depending on your version of ruby, you may need to install ruby rdoc/ri data:
25+
26+
<= 1.8.6 : unsupported
27+
= 1.8.7 : gem install rdoc-data; rdoc-data --install
28+
= 1.9.1 : gem install rdoc-data; rdoc-data --install
29+
>= 1.9.2 : nothing to do! Yay!
30+
MESSAGE
31+
2232
self.testlib = :minitest
2333
self.isolate_dir = 'tmp/isolate'
2434

lib/rdoc/markup/formatter.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
# Base class for RDoc markup formatters
55
#
66
# Formatters use a visitor pattern to convert content into output.
7+
#
8+
# If you'd like to write your own Formatter use
9+
# RDoc::Markup::FormatterTestCase. If you're writing a text-output formatter
10+
# use RDoc::Markup::TextFormatterTestCase which provides extra test cases.
711

812
class RDoc::Markup::Formatter
913

0 commit comments

Comments
 (0)