(rubocop) Fix Style/MissingRespondToMissing

This commit is contained in:
Tim Sharpe 2019-02-03 11:45:06 +11:00
parent 6c4fe8384c
commit b7b08c9c9e

View file

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