aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rdoc/generator/ri.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-20 03:22:49 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-20 03:22:49 +0000
commit2ef9c50c6e405717d06362787c4549ca4f1c6485 (patch)
treeee99486567461dd5796f3d6edcc9e204187f2666 /lib/rdoc/generator/ri.rb
parentd7effd506f5b91a636f2e6452ef1946b923007c7 (diff)
downloadruby-2ef9c50c6e405717d06362787c4549ca4f1c6485.tar.gz
Import RDoc 3
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/generator/ri.rb')
-rw-r--r--lib/rdoc/generator/ri.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/rdoc/generator/ri.rb b/lib/rdoc/generator/ri.rb
index 819eb52d40..fb52997e89 100644
--- a/lib/rdoc/generator/ri.rb
+++ b/lib/rdoc/generator/ri.rb
@@ -8,10 +8,6 @@ class RDoc::Generator::RI
RDoc::RDoc.add_generator self
- def self.for options
- new options
- end
-
##
# Set up a new ri generator
@@ -20,6 +16,8 @@ class RDoc::Generator::RI
@store = RDoc::RI::Store.new '.'
@old_siginfo = nil
@current = nil
+
+ @store.dry_run = @options.dry_run
end
##