aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/symbol.rb
blob: cd928aae801bc61122c77466320e3e44ed2b4df1 (plain) (blame)
1
2
3
4
5
class Symbol #:nodoc:
  def to_proc
    Proc.new { |obj, *args| obj.send(self, *args) }
  end
end