mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
12 lines
187 B
Ruby
12 lines
187 B
Ruby
module MPDClient
|
|
module ClassToProc
|
|
|
|
def self.included(receiver)
|
|
receiver.define_singleton_method :to_proc do
|
|
proc { |*args| new(*args) }
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|