1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix rubocop violations

This commit is contained in:
yuuji.yaginuma 2019-03-13 17:51:05 +09:00
parent 5ab0c1a8cc
commit 12ddee0ce8

View file

@ -12,7 +12,7 @@ end
class DummyCompiler < ERB::Compiler # :nodoc:
def compile_content(stag, out)
case stag
when '<%='
when "<%="
out.push "_erbout << 'dummy_compiler'"
end
end