Ruby で、オブジェクト インスタンスの ID を などの文字列として持っている
"#<Meeting:0x4531860>"
場合、この ID でインスタンス自体を取得できますか?
# what I want
meeting = SOME_MAGIC_HERE "#<Meeting:0x4531860>"
# and then I can handle the meeting itself
meeting.name # => 'BLABLABLA'
Ruby で、オブジェクト インスタンスの ID を などの文字列として持っている
"#<Meeting:0x4531860>"
場合、この ID でインスタンス自体を取得できますか?
# what I want
meeting = SOME_MAGIC_HERE "#<Meeting:0x4531860>"
# and then I can handle the meeting itself
meeting.name # => 'BLABLABLA'