Variables in ruby method names - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T23:54:32Z http://stackoverflow.com/feeds/question/300705 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300705/variables-in-ruby-method-names 6 Variables in ruby method names salt.racer 2008-11-19T00:52:50Z 2008-11-23T18:00:34Z <p>I have the following code:</p> <pre><code>for attribute in site.device_attributes device.attribute end </code></pre> <p>where I would like the code to substitute the value of "attribute" for the method name.</p> <p>I have tried <code>device."#{attribute}"</code> and various permutations.</p> <p>Is this completely impossible? Am I missing something?</p> <p>I have considered overriding method_missing, but I can't figure out how that would actually help me when my problem is that I need to call an "unknown" method.</p> http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/300723#300723 10 Answer by Matt Campbell for Variables in ruby method names Matt Campbell 2008-11-19T01:01:49Z 2008-11-19T01:01:49Z <p>The "send" method should do what you're looking for:</p> <pre><code>object = "upcase me!" method = "upcase" object.send(method.to_sym) # =&gt; "UPCASE ME!" </code></pre> http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/300805#300805 1 Answer by David Nehme for Variables in ruby method names David Nehme 2008-11-19T02:03:03Z 2008-11-19T02:03:03Z <p>you can also do</p> <pre><code>device.instance_eval(attribute) </code></pre> http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/301849#301849 6 Answer by Maxim Kulkin for Variables in ruby method names Maxim Kulkin 2008-11-19T13:14:05Z 2008-11-19T13:14:05Z <p>You can use #send method to call object's method by method's name:</p> <pre><code>object.send(:foo) # same as object.foo </code></pre> <p>You can pass arguments with to invoked method:</p> <pre><code>object.send(:foo, 1, "bar", 1.23) # same as object.foo(1, "bar", 1.23) </code></pre> <p>So, if you have attribute name in variable "attribute" you can read object's attribute with</p> <pre><code>object.send(attribute.to_sym) </code></pre> <p>and write attribute's value with </p> <pre><code>object.send("#{attribute}=".to_sym, value) </code></pre> <p>In Ruby 1.8.6 #send method can execute any object's method regardless of it's visibility (you can e.g. call private methods). This is subject to change in future versions of Ruby and you shouldn't rely on it. To execute private methods, use #instance_eval:</p> <pre><code>object.instance_eval { # code as block, can reference variables in current scope } # or object.instance_eval &lt;&lt;-CODE # code as string, can generate any code text CODE </code></pre> http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/312769#312769 3 Answer by bradheintz for Variables in ruby method names bradheintz 2008-11-23T18:00:34Z 2008-11-23T18:00:34Z <p>Matt and Maxim are both correct, but leave out a detail that might help you get your head around the #send syntax: <em>In Ruby, calling a method is really sending a message.</em> Softies on Rails has a <a href="http://www.softiesonrails.com/2007/8/15/ruby-101-methods-and-messages" rel="nofollow" title="Messages in Ruby">relatively straightforward explanation of that</a>.</p>