# File lib/thor/util.rb, line 212
    def self.ruby_command
      @ruby_command ||= begin
        ruby = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
        ruby << Config::CONFIG['EXEEXT']

        # escape string in case path to ruby executable contain spaces.
        ruby.sub!(/.*\s.*/m, '"\&"')
        ruby
      end
    end