lib/mailerlite.rb in mailerlite-0.3.0 vs lib/mailerlite.rb in mailerlite-1.0.0

- old
+ new

@@ -15,7 +15,11 @@ def method_missing(method_name, *args, &block) return super unless client.respond_to?(method_name) client.send(method_name, *args, &block) end + + def respond_to_missing?(method_name, include_private = false) + client.respond_to?(method_name, include_private) + end end end