summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/ruby-mode-resources/ruby-method-call-indent.rb
blob: 624a6caafe5819ad546694db21a0dc29ae65e456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: