godfat (owner)

Revisions

gist: 34644 Download_button fork
public
Public Clone URL: git://gist.github.com/34644.git
Embed All Files: show embed
symbol-to_proc.rb #
1
2
3
4
5
6
7
8
9
10
# http://github.com/rtomayko/rack-contrib/commit/f2169bd780c17b4bcc11aacf2d6c1eb6f35bdbee
 
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('1.8.7')
  class Symbol
    def to_proc
      lambda{ |*args| args.shift.__send__(self, *args) }
    end
  end
end