diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-06-08 20:24:28 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-08 13:24:28 +0200 |
commit | 0a0b9a271a8de84272ff2dafc96ef53db224bb21 (patch) | |
tree | 39a325adf00bb3f57d65510029d9b85d1d4b5de1 /app/helpers | |
parent | 7d2b4186c37ec81ae896eb57168cb0374de2c656 (diff) |
Improve RuboCop rules (compatibility to Code Climate) (#3636)
https://github.com/codeclimate/codeclimate-rubocop/blob/08f8de84ebfb39caa96391e23816877278f6441c/Gemfile.lock#L38 Code Climate is using RuboCop v0.46.0. Change several rules to maintain compatibility.
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/stream_entries_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/stream_entries_helper.rb b/app/helpers/stream_entries_helper.rb index ba989a84d..275762c87 100644 --- a/app/helpers/stream_entries_helper.rb +++ b/app/helpers/stream_entries_helper.rb @@ -1,8 +1,8 @@ # frozen_string_literal: true module StreamEntriesHelper - EMBEDDED_CONTROLLER = 'stream_entries'.freeze - EMBEDDED_ACTION = 'embed'.freeze + EMBEDDED_CONTROLLER = 'stream_entries' + EMBEDDED_ACTION = 'embed' def display_name(account) account.display_name.presence || account.username |