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 2021/02/27 17:17:18 UTC

[whimsy] branch master updated (d17db54 -> 9c620d4)

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

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


    from d17db54  Simplify
     new 6bf1319  Restore test
     new 9c620d4  Need to skip empty trailer

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lib/whimsy/asf/member-files.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[whimsy] 01/02: Restore test

Posted by se...@apache.org.
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

commit 6bf131925631c1ef5b70897dd423b599b71b05e7
Author: Sebb <se...@apache.org>
AuthorDate: Sat Feb 27 17:07:40 2021 +0000

    Restore test
---
 lib/whimsy/asf/member-files.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/whimsy/asf/member-files.rb b/lib/whimsy/asf/member-files.rb
index f679674..8c5270b 100644
--- a/lib/whimsy/asf/member-files.rb
+++ b/lib/whimsy/asf/member-files.rb
@@ -85,5 +85,5 @@ end
 if __FILE__ == $0
   ASF::MemberFiles.member_nominees.each {|k,v| p [k, v['Public Name'], v['Public Name']&.encoding]}
   puts "--------------"
-  # ASF::MemberFiles.board_nominees.each {|k,v| p [k, v['Public Name'], v['Public Name']&.encoding]}
+  ASF::MemberFiles.board_nominees.each {|k,v| p [k, v['Public Name'], v['Public Name']&.encoding]}
 end
\ No newline at end of file


[whimsy] 02/02: Need to skip empty trailer

Posted by se...@apache.org.
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

commit 9c620d43e154c2d81a1d67138f17b55312e6e335
Author: Sebb <se...@apache.org>
AuthorDate: Sat Feb 27 17:17:10 2021 +0000

    Need to skip empty trailer
---
 lib/whimsy/asf/member-files.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/whimsy/asf/member-files.rb b/lib/whimsy/asf/member-files.rb
index 8c5270b..d5b60ba 100644
--- a/lib/whimsy/asf/member-files.rb
+++ b/lib/whimsy/asf/member-files.rb
@@ -51,7 +51,7 @@ module ASF
             end
           end
         end
-        yield header, nominee if header
+        yield header, nominee unless header.nil? || header.empty?
       end
     end