Currently when doing method chaining on multiple lines we get the following indentation:
something.ala
.one
.two
.three
An alternative style that seems to be popular is:
something.ala
.one
.two
.three
Here are some references (not just for Ruby):
I guess it will be good if ruby-mode supported the alternative style via some customisable option.