Ruby: How to chain multiple method calls together with “send” September 26, 2023 by Tarik I just ran across this and it really begs for inject: def send_chain(arr) arr.inject(self) {|o, a| o.send(a) } end