From 95b393a47593506a676f2e3259c03ab41e8f2572 Mon Sep 17 00:00:00 2001 From: "Josep M. Blanquer" Date: Wed, 10 Aug 2016 23:18:28 -0700 Subject: [PATCH] Try to appease the cops about method_missing. Signed-off-by: Josep M. Blanquer --- lib/praxis-blueprints/config_hash.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/praxis-blueprints/config_hash.rb b/lib/praxis-blueprints/config_hash.rb index f92f88b..132ad67 100644 --- a/lib/praxis-blueprints/config_hash.rb +++ b/lib/praxis-blueprints/config_hash.rb @@ -17,6 +17,10 @@ def to_hash @hash end + def respond_to_missing?(_method_name, _include_private = false) + true + end + def method_missing(name, value, *rest, &block) if (existing = @hash[name]) if block