1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/lib/puma/io_buffer.rb
2020-02-27 13:50:34 -06:00

11 lines
166 B
Ruby

# frozen_string_literal: true
module Puma
class IOBuffer < String
def append(*args)
args.each { |a| concat(a) }
end
alias reset clear
end
end