mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
11 lines
166 B
Ruby
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
|