mirror of https://github.com/rails/rails
Merge pull request #28731 from y-yagi/fix_rubocop_violations
Fix rubocop violations
This commit is contained in:
commit
15c4306cf1
|
@ -62,7 +62,7 @@ module ActionView
|
|||
node
|
||||
end
|
||||
else
|
||||
unless name.include?('#') # Dynamic template partial names can never be tracked
|
||||
unless name.include?("#") # Dynamic template partial names can never be tracked
|
||||
logger.error " Couldn't find template for digesting: #{name}"
|
||||
end
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ module Rails
|
|||
end
|
||||
|
||||
def field_id(attribute_name)
|
||||
[singular_table_name, attribute_name].join('_')
|
||||
[singular_table_name, attribute_name].join("_")
|
||||
end
|
||||
|
||||
def singular_table_name # :doc:
|
||||
|
|
Loading…
Reference in New Issue