On 19 May 2017 at 11:14, <s...@apache.org> wrote: > This is an automated email from the ASF dual-hosted git repository. > ...
> commit 6651216b7553468718e5fcc53a8b61d1f8c43a10 > Author: Sebb <s...@apache.org> > AuthorDate: Fri May 19 11:14:18 2017 +0100 > > Show old files; tweak syntax so Eclipse Ruby plugin works > --- ... > diff --git a/tools/collate_minutes.rb b/tools/collate_minutes.rb > index 614661b..77ef540 100755 > --- a/tools/collate_minutes.rb > +++ b/tools/collate_minutes.rb ... > @@ -661,7 +668,8 @@ agenda.sort.each do |title, reports| > text.gsub! /^#{' '*indent}/, '' if indent > 0 > text = $1 + text if text =~ /\A\w.*\n(\s+)/ > text = text.to_s.rstrip > - x.pre text, class: 'report' unless text.strip.empty? > + # N.B. The syntax "class: report" causes problems for the Eclipse > Ruby plugin > + x.pre text, 'class' => 'report' unless text.strip.empty? Since this was the only instance, fixing it seemed OK even though it is not as neat. Now I can finally see the module outline in Eclipse!