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

Version Path
rq-3.4.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb
rq-3.3.0 rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb
spree-0.0.9 vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb
spree-0.2.0 vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.150 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.149 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.175 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.157 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.155 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.156 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.160 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb
swivel-0.0.152 vendor/activesupport-2.0.2-/lib/active_support/core_ext/kernel/agnostics.rb