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/sprockets/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def [](*args, **options)
# Find asset by logical path or expanded path.
#
# If the asset is not found an error will be raised.
def find_asset!(*args)
uri, _ = resolve!(*args)
def find_asset!(*args, **kwargs)
uri, _ = resolve!(*args, **kwargs)
if uri
load(uri)
end
Expand Down