From b7b08c9c9e28147cff7de4365a2e0b320fd3fec9 Mon Sep 17 00:00:00 2001 From: Tim Sharpe Date: Sun, 3 Feb 2019 11:45:06 +1100 Subject: [PATCH] (rubocop) Fix Style/MissingRespondToMissing --- lib/vmfloaty/service.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/vmfloaty/service.rb b/lib/vmfloaty/service.rb index e1ce49e..899f651 100644 --- a/lib/vmfloaty/service.rb +++ b/lib/vmfloaty/service.rb @@ -23,6 +23,10 @@ class Service end end + def respond_to_missing?(m, *) + @service_object.respond_to?(m) || super + end + def url @config['url'] end