mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
6 lines
118 B
Ruby
6 lines
118 B
Ruby
![]() |
class Symbol
|
||
|
def to_proc
|
||
|
proc { |obj, *args| obj.send(self, *args) }
|
||
|
end unless method_defined?(:to_proc)
|
||
|
end
|