We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2daf79b commit cde6bc7Copy full SHA for cde6bc7
lib/sprockets/directive_processor.rb
@@ -126,7 +126,7 @@ def directives
126
@directives ||= header.lines.each_with_index.map { |line, index|
127
if directive = line[DIRECTIVE_PATTERN, 1]
128
name, *args = Shellwords.shellwords(directive)
129
- if respond_to?("process_#{name}_directive")
+ if respond_to?("process_#{name}_directive", true)
130
[index + 1, name, *args]
131
end
132
0 commit comments