Sha256: 7d36b6e74c68671d1d7782643e5fa6cdcdc3bb041ca3be016e527626f30361c4
Contents?: true
Size: 352 Bytes
Versions: 6796
Compression:
Stored size: 352 Bytes
Contents
# frozen_string_literal: true class Pry # @api private # @since v0.13.0 module SystemCommandHandler class << self def default(output, command, _pry_instance) return if Kernel.system(command) output.puts( "Error: there was a problem executing system command: #{command}" ) end end end end
Version data entries
6,796 entries across 6,792 versions & 31 rubygems