Method: Symbol#to_proc

Defined in:
lib/core_ext.rb

#to_procObject



12
13
14
# File 'lib/core_ext.rb', line 12

def to_proc
  Proc.new { |*args| args.shift.__send__(self, *args) }
end