From 9dcfabe168917e79754cfff4e0e792968e711683 Mon Sep 17 00:00:00 2001 From: aki Date: Tue, 23 Apr 2024 15:37:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20ERB.new=E5=BC=95=E6=95=B0=E3=81=AE?= =?UTF-8?q?=E9=9D=9E=E6=8E=A8=E5=A5=A8=E8=AD=A6=E5=91=8A=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/copy_tuner_client/request_sync.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/copy_tuner_client/request_sync.rb b/lib/copy_tuner_client/request_sync.rb index 87d2a8e..1394866 100644 --- a/lib/copy_tuner_client/request_sync.rb +++ b/lib/copy_tuner_client/request_sync.rb @@ -121,7 +121,7 @@ def render_with_layout(view) # you have to pass a binding to this (a proc) so that ERB can have # access to helper functions and local variables def render_without_layout(view, binding) - ERB.new(File.read(File.join(VIEW_PATH, 'copytuner', view.to_s + '.html.erb')), nil, nil, 'frobnitz').result(binding) + ERB.new(File.read(File.join(VIEW_PATH, 'copytuner', view.to_s + '.html.erb')), eoutvar: 'frobnitz').result(binding) end def cancel_sync?(env) From 856169cfcaeaa93ec2fb613d8cc23bb78943ef07 Mon Sep 17 00:00:00 2001 From: aki Date: Tue, 23 Apr 2024 15:37:20 +0900 Subject: [PATCH 2/2] 0.17.1 --- lib/copy_tuner_client/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/copy_tuner_client/version.rb b/lib/copy_tuner_client/version.rb index 2872753..c8d9400 100644 --- a/lib/copy_tuner_client/version.rb +++ b/lib/copy_tuner_client/version.rb @@ -1,6 +1,6 @@ module CopyTunerClient # Client version - VERSION = '0.17.0'.freeze + VERSION = '0.17.1'.freeze # API version being used to communicate with the server API_VERSION = '2.0'.freeze