1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/lib/mpd_client/class_to_proc.rb
2013-12-12 11:51:59 +00:00

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