diff --git a/lib/curly/presenter.rb b/lib/curly/presenter.rb index e5487b7..9bb4a01 100644 --- a/lib/curly/presenter.rb +++ b/lib/curly/presenter.rb @@ -342,8 +342,8 @@ def exposes_helper(*methods) # Delegates private method calls to the current view context. # # The view context, an instance of ActionView::Base, is set by Rails. - def method_missing(method, *args, &block) - @_context.public_send(method, *args, &block) + def method_missing(method, *args, **kwargs, &block) + @_context.public_send(method, *args, **kwargs, &block) end # Tells ruby (and developers) what methods we can accept.