Sha256: 8ad6047abf64df7b2c9470bfe580511e616e106074c823c7d9f7eda876de6e6c

Contents?: true

Size: 472 Bytes

Versions: 201

Compression:

Stored size: 472 Bytes

Contents

unless :to_proc.respond_to?(:to_proc)
  class Symbol
    # Turns the symbol into a simple proc, which is especially useful for enumerations. Examples:
    #
    #   # The same as people.collect { |p| p.name }
    #   people.collect(&:name)
    #
    #   # The same as people.select { |p| p.manager? }.collect { |p| p.salary }
    #   people.select(&:manager?).collect(&:salary)
    def to_proc
      Proc.new { |*args| args.shift.__send__(self, *args) }
    end
  end
end

Version data entries

201 entries across 168 versions & 25 rubygems

Version Path
activesupport-2.3.17 lib/active_support/core_ext/symbol.rb
depengine-0.0.1 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
depengine-0.0.1 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
activesupport_csi-2.3.5.p7 lib/active_support/core_ext/symbol.rb
activesupport_csi-2.3.5.p6 lib/active_support/core_ext/symbol.rb
activesupport-2.3.16 lib/active_support/core_ext/symbol.rb
activesupport-2.3.15 lib/active_support/core_ext/symbol.rb
abiquo-etk-0.6.4 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
abiquo-etk-0.6.3 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
abiquo-etk-0.6.2 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
abiquo-etk-0.6.1 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
abiquo-etk-0.6.0 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
abiquo-etk-0.5.9 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/activesupport-2.3.14/lib/active_support/core_ext/symbol.rb
abiquo-etk-0.5.8 vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/activesupport-2.3.12/lib/active_support/core_ext/symbol.rb
activesupport-2.3.14 lib/active_support/core_ext/symbol.rb
kajam-1.0.3.rc2 vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb
activesupport-2.3.12 lib/active_support/core_ext/symbol.rb
radiant-1.0.0.rc2 vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb