aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/text_helper.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-08-19 08:12:05 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-08-19 08:16:21 +0900
commitb2c1e29c14b91b290b30c928c63253d1555e0fd9 (patch)
tree17b4573dbc9c4d4591985b45c0af3c9701666be6 /actionview/lib/action_view/helpers/text_helper.rb
parent9270c6d7fc09b3a1fbbb410f60b9d3829a406c07 (diff)
downloadrails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.tar.gz
rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.tar.bz2
rails-b2c1e29c14b91b290b30c928c63253d1555e0fd9.zip
Enable Style/ParenthesesAroundCondition cop
To prevent style check in review like https://github.com/rails/rails/pull/33608#discussion_r211087605.
Diffstat (limited to 'actionview/lib/action_view/helpers/text_helper.rb')
-rw-r--r--actionview/lib/action_view/helpers/text_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/text_helper.rb b/actionview/lib/action_view/helpers/text_helper.rb
index 77a1c1fed9..a338d076e4 100644
--- a/actionview/lib/action_view/helpers/text_helper.rb
+++ b/actionview/lib/action_view/helpers/text_helper.rb
@@ -228,7 +228,7 @@ module ActionView
# pluralize(2, 'Person', locale: :de)
# # => 2 Personen
def pluralize(count, singular, plural_arg = nil, plural: plural_arg, locale: I18n.locale)
- word = if (count == 1 || count =~ /^1(\.0+)?$/)
+ word = if count == 1 || count =~ /^1(\.0+)?$/
singular
else
plural || singular.pluralize(locale)