# File lib/pry/repl_file_loader.rb, line 14
    def initialize(file_name)
      full_name = File.expand_path(file_name)
      raise RuntimeError, "No such file: #{full_name}" if !File.exists?(full_name)

      @content = StringIO.new(File.read(full_name))
    end