diff options
| author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-16 02:23:15 +0000 |
|---|---|---|
| committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-16 02:23:15 +0000 |
| commit | 17917f6208e1ddf8c6bdb29446300bdb82828667 (patch) | |
| tree | 3b7b641d531a2f6e619bfa366f7d4271b014a010 /lib | |
| parent | 81805d4248994429b1a415c3a86ccfebc44b2688 (diff) | |
| download | ruby-17917f6208e1ddf8c6bdb29446300bdb82828667.tar.gz ruby-17917f6208e1ddf8c6bdb29446300bdb82828667.tar.xz ruby-17917f6208e1ddf8c6bdb29446300bdb82828667.zip | |
* lib/.document: Apply patch for irb, e2mmap and README by Hugh Sasse
<hgs at dmu.ac.uk> from [ruby-core:10135]
* lib/prettyprint.rb: Suppress RDoc for PrettyPrint test suite.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/.document | 2 | ||||
| -rw-r--r-- | lib/prettyprint.rb | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/lib/.document b/lib/.document index 3979748e3..a7582bf10 100644 --- a/lib/.document +++ b/lib/.document @@ -8,6 +8,7 @@ English.rb Env.rb +README abbrev.rb base64.rb benchmark.rb @@ -35,6 +36,7 @@ getopts.rb gserver.rb importenv.rb ipaddr.rb +irb irb.rb jcode.rb logger.rb diff --git a/lib/prettyprint.rb b/lib/prettyprint.rb index 507a05e65..315c422e9 100644 --- a/lib/prettyprint.rb +++ b/lib/prettyprint.rb @@ -381,7 +381,7 @@ end if __FILE__ == $0 require 'test/unit' - class WadlerExample < Test::Unit::TestCase + class WadlerExample < Test::Unit::TestCase # :nodoc: def setup @tree = Tree.new("aaaa", Tree.new("bbbbb", Tree.new("ccc"), Tree.new("dd")), @@ -561,7 +561,7 @@ End assert_equal(expected, tree_alt(50)) end - class Tree + class Tree # :nodoc: def initialize(string, *children) @string = string @children = children @@ -618,7 +618,7 @@ End end end - class StrictPrettyExample < Test::Unit::TestCase + class StrictPrettyExample < Test::Unit::TestCase # :nodoc: def prog(width) PrettyPrint.format('', width) {|q| q.group { @@ -763,7 +763,7 @@ End end - class TailGroup < Test::Unit::TestCase + class TailGroup < Test::Unit::TestCase # :nodoc: def test_1 out = PrettyPrint.format('', 10) {|q| q.group { @@ -783,7 +783,7 @@ End end end - class NonString < Test::Unit::TestCase + class NonString < Test::Unit::TestCase # :nodoc: def format(width) PrettyPrint.format([], width, 'newline', lambda {|n| "#{n} spaces"}) {|q| q.text(3, 3) @@ -802,7 +802,7 @@ End end - class Fill < Test::Unit::TestCase + class Fill < Test::Unit::TestCase # :nodoc: def format(width) PrettyPrint.format('', width) {|q| q.group { |
