Sha256: b28ad235de8a9535e3fbe64af66cd59c0bae9d96e25c34ed0e745470653b2714
Contents?: true
Size: 612 Bytes
Versions: 67
Compression:
Stored size: 612 Bytes
Contents
# # fork.rb - # $Release Version: 0.9.6 $ # $Revision: 47266 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # # :stopdoc: module IRB module ExtendCommand class Fork<Nop def execute pid = send ExtendCommand.irb_original_method_name("fork") unless pid class << self alias_method :exit, ExtendCommand.irb_original_method_name('exit') end if iterator? begin yield ensure exit end end end pid end end end end # :startdoc:
Version data entries
67 entries across 39 versions & 3 rubygems