Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/curly/presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down