Sha256: e880d30d9d3a68d4e75c11f39d39b3e4b0491a093648ff154a9299f948b77a75
Contents?: true
Size: 368 Bytes
Versions: 392
Compression:
Stored size: 368 Bytes
Contents
class Object # Makes backticks behave (somewhat more) similarly on all platforms. # On win32 `nonexistent_command` raises Errno::ENOENT; on Unix, the # spawned shell prints a message to stderr and sets $?. We emulate # Unix on the former but not the latter. def `(command) #:nodoc: super rescue Errno::ENOENT => e STDERR.puts "#$0: #{e}" end end
Version data entries
392 entries across 359 versions & 35 rubygems