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) 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