aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/markup/lines.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-19 00:06:19 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-19 00:06:19 +0000
commit8d37cefaf8795fe80d457f101fb9678fc7f6adf6 (patch)
treede06a2bb9bbbeffa5e12213e875a57fe269a2028 /lib/rdoc/markup/lines.rb
parent9872d4d60048cc16cf78d2e8a260b78468e87fc9 (diff)
downloadruby-8d37cefaf8795fe80d457f101fb9678fc7f6adf6.tar.gz
* lib/rdoc/markup: Remove ListBase and Line constants.
* lib/rdoc/ri: Allow output IO to be specified. * test/rdoc/parser/test_parse_c.rb: Move up one level, fixed. * test/rdoc/parser/test_rdoc_markup_attribute_manager.rb: Renamed to match new class name, updated to match new classes. * test/rdoc/test_rdoc_ri_formatter.rb: Start of RI formatting tests. * test/rdoc/test_rdoc_ri_attribute_manager.rb: Start of RDoc::RI::AttributeManager tests. * test/rdoc/test_simple_markup.rb: Moved to match new class name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/markup/lines.rb')
-rw-r--r--lib/rdoc/markup/lines.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/rdoc/markup/lines.rb b/lib/rdoc/markup/lines.rb
index 5fb5bde993..985304c225 100644
--- a/lib/rdoc/markup/lines.rb
+++ b/lib/rdoc/markup/lines.rb
@@ -8,12 +8,14 @@ class RDoc::Markup
class Line
INFINITY = 9999
- BLANK = :BLANK
- HEADING = :HEADING
- LIST = :LIST
- RULE = :RULE
- PARAGRAPH = :PARAGRAPH
- VERBATIM = :VERBATIM
+ LINE_TYPES = [
+ :BLANK,
+ :HEADING,
+ :LIST,
+ :PARAGRAPH,
+ :RULE,
+ :VERBATIM,
+ ]
# line type
attr_accessor :type
@@ -132,7 +134,7 @@ class RDoc::Markup
def normalize
margin = @lines.collect{|l| l.leading_spaces}.min
- margin = 0 if margin == Line::INFINITY
+ margin = 0 if margin == :INFINITY
@lines.each {|line| line.strip_leading(margin) } if margin > 0
end