File tree Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 11LICENSE.txt
22README.md
3+ EXTEND_IRB.md
4+ COMPARED_WITH_PRY.md
35doc/irb/indexes.md
4- lib/**/*.rb
6+ lib/irb.rb
7+ lib/irb/context.rb
8+ lib/irb/command/base.rb
Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ task :default => :test
4646
4747RDoc ::Task . new do |rdoc |
4848 rdoc . title = "IRB"
49- rdoc . rdoc_files . include ( "*.md" , "lib/**/*.rb" )
50- rdoc . rdoc_files . exclude ( "lib/irb/xmp.rb" )
5149 rdoc . rdoc_dir = "docs"
5250 rdoc . main = "README.md"
5351 rdoc . options . push ( "--copy-files" , "LICENSE.txt" )
Original file line number Diff line number Diff line change 879879module IRB
880880
881881 # An exception raised by IRB.irb_abort
882- class Abort < Exception ; end
882+ class Abort < Exception ; end # :nodoc:
883883
884884 class << self
885885 # The current IRB::Context of the session, see IRB.conf
Original file line number Diff line number Diff line change 55#
66
77module IRB
8- # :stopdoc:
9-
108 module Command
11- class CommandArgumentError < StandardError ; end
9+ class CommandArgumentError < StandardError ; end # :nodoc:
1210
1311 class << self
14- def extract_ruby_args ( *args , **kwargs )
12+ def extract_ruby_args ( *args , **kwargs ) # :nodoc:
1513 throw :EXTRACT_RUBY_ARGS , [ args , kwargs ]
1614 end
1715 end
@@ -57,8 +55,6 @@ def execute(arg)
5755 end
5856 end
5957
60- Nop = Base
58+ Nop = Base # :nodoc:
6159 end
62-
63- # :startdoc:
6460end
You can’t perform that action at this time.
0 commit comments