Debugger::Xml::Ide::Interface
# File lib/debugger/xml/vim/interface.rb, line 13 def print(*args) escaped_args = escape_input(args) value = escaped_args.first % escaped_args[1..-1] Xml.logger.puts("Going to print: #{value}") @output << sprintf(value) end
# File lib/debugger/xml/vim/interface.rb, line 20 def send_response create_directory(@options.file) message = @output.join(@options.separator) @output.clear unless message.empty? File.open(@options.file, 'w') do |f| f.puts(message) end Notification.new("receive_command", @options).send end end
Generated with the Darkfish Rdoc Generator 2.