Let's say I have an XML::Element...I want to do something like:
my_xml_element.send("parent.next_sibling.next_sibling")
|
1
|
Let's say I have an XML::Element...I want to do something like: my_xml_element.send("parent.next_sibling.next_sibling") |
||
|
|
|
|
I think the question is that you specifically have a series of methods defined as a string, and you want to invoke that on some object, right?
|
||||
|
|
|
uh, that's not really what he was asking for if I'm understanding his question correctly. I mean send takes a string or a symbol as an arg, and your solution doesn't. I don't think there's a built in method that will do what you want, but I whipped up a method that will, with a test.
|
||
|
|
|
|
In your case it's better to use
And for your code:
|
|||
|
|