diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2017-04-11 18:45:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-11 18:45:32 -0400 |
commit | 15c4306cf12539d1b307774b26e1eff6081ba732 (patch) | |
tree | 8c61370d40b760c3811b6a97f62745441074051b /actionview | |
parent | afb41fbefa509cea1259eafb28a0b7825688464b (diff) | |
parent | fb9e846be9a1e1a907c84f5d0336bec56fe2a5bc (diff) | |
download | rails-15c4306cf12539d1b307774b26e1eff6081ba732.tar.gz rails-15c4306cf12539d1b307774b26e1eff6081ba732.tar.bz2 rails-15c4306cf12539d1b307774b26e1eff6081ba732.zip |
Merge pull request #28731 from y-yagi/fix_rubocop_violations
Fix rubocop violations
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/digestor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/digestor.rb b/actionview/lib/action_view/digestor.rb index ba189e23fe..5ddf1ceb66 100644 --- a/actionview/lib/action_view/digestor.rb +++ b/actionview/lib/action_view/digestor.rb @@ -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 |