You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2022/04/14 19:55:19 UTC

[whimsy] branch master updated: support Ruby 3.1.1p18 and Node v17.9.0

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

rubys 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 3e4c18ba support Ruby 3.1.1p18 and Node v17.9.0
3e4c18ba is described below

commit 3e4c18ba96b91e954ca4cf3a794ef1e64601b8df
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Thu Apr 14 15:53:09 2022 -0400

    support Ruby 3.1.1p18 and Node v17.9.0
    
    Fixes https://issues.apache.org/jira/browse/WHIMSY-385
    
    See https://github.com/rubys/wunderbar/commit/e60e20e0236f409c96a841e7bedc3f4be359f5d9 for details
---
 www/board/agenda/Gemfile            | 2 ++
 www/board/agenda/views/main.html.rb | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/www/board/agenda/Gemfile b/www/board/agenda/Gemfile
index 05e2451e..f4ade85c 100644
--- a/www/board/agenda/Gemfile
+++ b/www/board/agenda/Gemfile
@@ -42,3 +42,5 @@ end
 group :development do
   gem 'passenger'
 end
+
+gem 'net-smtp', require: false # for Ruby 3.1
diff --git a/www/board/agenda/views/main.html.rb b/www/board/agenda/views/main.html.rb
index ec08e528..0a763d37 100644
--- a/www/board/agenda/views/main.html.rb
+++ b/www/board/agenda/views/main.html.rb
@@ -13,7 +13,7 @@ _html do
 
   _script src: "../app.js?#{@appmtime}", lang: 'text/javascript'
 
-  _.render '#main' do
+  _.render '#main', timeout: 1 do
     _Main server: @server, page: @page
   end
 end