From: Brian Candler Date: 2009-11-24T01:06:30+09:00 Subject: Re: More on psuedo arrays; Better way? Jes炭s Gabriel y Gal叩n wrote: > if you call send with the string, I don't know if a symbol > is created inside that call or not. >> Symbol.all_symbols.find { |x| x.to_s == "baz" } => nil >> send("baz") NoMethodError: undefined method `baz' for main:Object from (irb):4:in `send' from (irb):4 from :0 >> Symbol.all_symbols.find { |x| x.to_s == "baz" } => :baz >> -- Posted via http://www.ruby-forum.com/.