Indentation should not increase when defining methods in the newer single-line syntax
Author: soulcutterCreated Sep 11, 2023Updated Sep 11, 2023
Problem
When defining methods with the one-line syntax, indentation increases.
Expected
[2] pry(main)> class Foo
[2] pry(main)* def biz = "biz"
[2] pry(main)* def bar = "baar"
[2] pry(main)* endActual
[2] pry(main)> class Foo
[2] pry(main)* def biz = "biz"
[2] pry(main)* def bar = "baar"
[2] pry(main)* endSource: pry/pry