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 1
1
LICENSE.txt
2
2
README.md
3
+ EXTEND_IRB.md
4
+ COMPARED_WITH_PRY.md
3
5
doc/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
46
46
47
47
RDoc ::Task . new do |rdoc |
48
48
rdoc . title = "IRB"
49
- rdoc . rdoc_files . include ( "*.md" , "lib/**/*.rb" )
50
- rdoc . rdoc_files . exclude ( "lib/irb/xmp.rb" )
51
49
rdoc . rdoc_dir = "docs"
52
50
rdoc . main = "README.md"
53
51
rdoc . options . push ( "--copy-files" , "LICENSE.txt" )
Original file line number Diff line number Diff line change 879
879
module IRB
880
880
881
881
# An exception raised by IRB.irb_abort
882
- class Abort < Exception ; end
882
+ class Abort < Exception ; end # :nodoc:
883
883
884
884
class << self
885
885
# The current IRB::Context of the session, see IRB.conf
Original file line number Diff line number Diff line change 5
5
#
6
6
7
7
module IRB
8
- # :stopdoc:
9
-
10
8
module Command
11
- class CommandArgumentError < StandardError ; end
9
+ class CommandArgumentError < StandardError ; end # :nodoc:
12
10
13
11
class << self
14
- def extract_ruby_args ( *args , **kwargs )
12
+ def extract_ruby_args ( *args , **kwargs ) # :nodoc:
15
13
throw :EXTRACT_RUBY_ARGS , [ args , kwargs ]
16
14
end
17
15
end
@@ -57,8 +55,6 @@ def execute(arg)
57
55
end
58
56
end
59
57
60
- Nop = Base
58
+ Nop = Base # :nodoc:
61
59
end
62
-
63
- # :startdoc:
64
60
end
You can’t perform that action at this time.
0 commit comments