Sha256: c463776da133417f31d7e91c8c7081fca9705581aba87ceb94f1d5cab9d230a4
Contents?: true
Size: 197 Bytes
Versions: 26
Compression:
Stored size: 197 Bytes
Contents
module Puma module Delegation def forward(what, who) module_eval <<-CODE def #{what}(*args, &blk) #{who}.#{what}(*args, &blk) end CODE end end end
Version data entries
26 entries across 26 versions & 1 rubygems