This actually works:
class Klass
  def initialize
    `hi world`
  end
  def `(message)
    puts "Called with backticks: #{message}"
  end
  
end
Klass.new # Prints "Called with backticks: hi world"
Hat tip to @jcoglan Show archive.org snapshot .
Posted by Henning Koch to makandra dev (2014-07-11 15:39)