You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2018/07/01 10:58:59 UTC

[whimsy] branch master updated: Eclipse Ruby plugin wants dots on previous line

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new f23c13b  Eclipse Ruby plugin wants dots on previous line
f23c13b is described below

commit f23c13bfa22b29fcf4835f217f98b25d16bf1631
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jul 1 11:58:57 2018 +0100

    Eclipse Ruby plugin wants dots on previous line
---
 www/project/icla/main.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/www/project/icla/main.rb b/www/project/icla/main.rb
index 4b6e097..5229ce2 100755
--- a/www/project/icla/main.rb
+++ b/www/project/icla/main.rb
@@ -19,9 +19,9 @@ disable :logging # suppress log of requests to stderr/error.log
 helpers do
   def projectsForUser(userName)
     pmcs = ASF::Committee.pmcs.map(&:name).sort
-    ppmcs =ASF::Podling.list
-      .select {|podling| podling.status == 'current'}
-      .map(&:name).sort
+    ppmcs = ASF::Podling.list.
+      select {|podling| podling.status == 'current'}.
+      map(&:name).sort
     user = ASF::Person.find(userName)
     committees = user.committees.map(&:name)
     pmcs.select! {|pmc| committees.include?(pmc)}