foo = subject
  .update(
    1
  )

foo2 =
  subject.
  update(
    2
  )

foo3 =
  subject
  .update(
    2
  )

my_array.select { |str| str.size > 5 }
  .map    { |str| str.downcase }

# Local Variables:
# ruby-method-call-indent: nil
# ruby-align-chained-calls: nil
# End:
