vote up 4 vote down star
1

Let's say I have an XML::Element...I want to do something like:

my_xml_element.send("parent.next_sibling.next_sibling")

flag

3 Answers

vote up 0 vote down

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?

class Object
  def call_method_chain(method_chain)
    return self if method_chain.empty?
    method_chain.split('.').inject(self){|o,m| o.send(m.intern)}
  end
end

>> User.first.profile.address.state.name
=> "Virginia"
>> User.first.call_method_chain("profile.address.state.name")
=> "Virginia"
link|flag
Sorry, this won't actually work outside the context of Rails since Object#try isn't defined. – crankharder Nov 5 at 6:06
Edit: Works w/o Rails now. – crankharder Nov 5 at 6:25
vote up 2 vote down

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.

require 'test/unit'

class Example
  def multi_send(str)
    str.split('.').inject(self){|klass, method| klass.send(method) }
  end
end

class MyTest < Test::Unit::TestCase  
  def test_multi_send
    a = Example.new
    methods = "class.to_s.downcase.chop!"
    assert a.multi_send(methods) == 'exampl'
  end
end
link|flag
vote up 4 vote down

In your case it's better to use instance_eval

"Test".instance_eval{chop!.chop!} #=> "Te"

And for your code:

my_xml_element.instance_eval{parent.next_sibling.next_sibling}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.