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 2018/01/21 23:06:08 UTC

[whimsy] branch master updated (ede2f24 -> dee30b7)

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

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


    from ede2f24  WHIMSY-177 Put List name first; fix nil->null typo
     new f41386f  handle RACK_BASE_URI not being set
     new dee30b7  enable es2015 and strict mode

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:
 www/secretary/workbench/server.rb           | 1 +
 www/secretary/workbench/views/index.html.rb | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@whimsical.apache.org" <co...@whimsical.apache.org>'].

[whimsy] 01/02: handle RACK_BASE_URI not being set

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

commit f41386f3c14705b647a7ae7399601e22924e70ec
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun Jan 21 18:04:04 2018 -0500

    handle RACK_BASE_URI not being set
---
 www/secretary/workbench/views/index.html.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/secretary/workbench/views/index.html.rb b/www/secretary/workbench/views/index.html.rb
index af8cca3..2e5a5e3 100644
--- a/www/secretary/workbench/views/index.html.rb
+++ b/www/secretary/workbench/views/index.html.rb
@@ -1,5 +1,5 @@
 _html do
-  if ENV["RACK_BASE_URI"] + '/' == _.env['REQUEST_URI']
+  if ENV["RACK_BASE_URI"].to_s + '/' == _.env['REQUEST_URI']
     # not sure why Passenger/rack is eating the trailing slash here.
     # add it back in.
     _base href: _.env['REQUEST_URI']

-- 
To stop receiving notification emails like this one, please contact
"commits@whimsical.apache.org" <co...@whimsical.apache.org>.

[whimsy] 02/02: enable es2015 and strict mode

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

commit dee30b73b5637f33806d8369cf9c5e9e528635fd
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun Jan 21 18:05:14 2018 -0500

    enable es2015 and strict mode
---
 www/secretary/workbench/server.rb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www/secretary/workbench/server.rb b/www/secretary/workbench/server.rb
index b55d1ba..34feb99 100644
--- a/www/secretary/workbench/server.rb
+++ b/www/secretary/workbench/server.rb
@@ -5,6 +5,7 @@
 require 'wunderbar/sinatra'
 require 'wunderbar/bootstrap'
 require 'wunderbar/vue'
+require 'ruby2js/es2017/strict'
 require 'ruby2js/filter/functions'
 require 'ruby2js/filter/require'
 require 'erb'

-- 
To stop receiving notification emails like this one, please contact
"commits@whimsical.apache.org" <co...@whimsical.apache.org>.