t/lib.perl: FreeBSD: ignore accf_* messages
[unicorn.git] / lib / unicorn / write_splat.rb
blob7e6e36360afb444fe75b2eb37f211c1ec28135eb
1 # -*- encoding: binary -*-
2 # compatibility module for Ruby <= 2.4, remove when we go Ruby 2.5+
3 module Unicorn::WriteSplat # :nodoc:
4   def write(*arg) # :nodoc:
5     super(arg.join(''))
6   end
7 end