Variables in ruby method names - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T23:54:32Zhttp://stackoverflow.com/feeds/question/300705http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300705/variables-in-ruby-method-names6Variables in ruby method namessalt.racer2008-11-19T00:52:50Z2008-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#30072310Answer by Matt Campbell for Variables in ruby method namesMatt Campbell2008-11-19T01:01:49Z2008-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) # => "UPCASE ME!"
</code></pre>
http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/300805#3008051Answer by David Nehme for Variables in ruby method namesDavid Nehme2008-11-19T02:03:03Z2008-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#3018496Answer by Maxim Kulkin for Variables in ruby method namesMaxim Kulkin2008-11-19T13:14:05Z2008-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 <<-CODE
# code as string, can generate any code text
CODE
</code></pre>
http://stackoverflow.com/questions/300705/variables-in-ruby-method-names/312769#3127693Answer by bradheintz for Variables in ruby method namesbradheintz2008-11-23T18:00:34Z2008-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>