On Sat, Jun 6, 2020 at 4:41 PM Craig Russell <apache....@gmail.com> wrote: > > I tried this: > line 22: > ASF::SVN.multiUpdate (members_txt, message, env, _) do |text|
delete the space between multiUpdate and the open parenthesis. In Ruby, parenthesis are generally optional on method calls. With the space after the method name, Ruby tries to parse what follows as a single parenthesized expression, and fails. - Sam Ruby