lib/irb/cmd/fork.rb in irb-1.4.1 vs lib/irb/cmd/fork.rb in irb-1.4.2
- old
+ new
@@ -8,13 +8,15 @@
# --
#
#
#
+require_relative "nop"
-# :stopdoc:
module IRB
+ # :stopdoc:
+
module ExtendCommand
class Fork < Nop
def execute
pid = __send__ ExtendCommand.irb_original_method_name("fork")
unless pid
@@ -31,7 +33,8 @@
end
pid
end
end
end
+
+ # :startdoc:
end
-# :startdoc: