about summary refs log tree commit diff
path: root/app/mailers
diff options
context:
space:
mode:
authoryhirano <yhirano@me.com>2017-05-01 23:31:02 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-01 16:31:02 +0200
commit3988f2dade8a75cb642db8c239097bfcf8943a0d (patch)
tree828473de646041adc8bbda73afec3ce3fcef3ae4 /app/mailers
parent1899cf5f04400f8055e45ceda941a9580b93fa1e (diff)
Fix Rubocop offences (#2630)
* disable Bundler/OrderedGems

* fix rubocop Lint/UselessAssignment

* fix rubocop Style/BlockDelimiters

* fix rubocop Style/AlignHash

* fix rubocop Style/AlignParameters, Style/EachWithObject

* fix rubocop Style/SpaceInLambdaLiteral
Diffstat (limited to 'app/mailers')
-rw-r--r--app/mailers/notification_mailer.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/mailers/notification_mailer.rb b/app/mailers/notification_mailer.rb
index a163edd3c..2bfc77721 100644
--- a/app/mailers/notification_mailer.rb
+++ b/app/mailers/notification_mailer.rb
@@ -60,11 +60,11 @@ class NotificationMailer < ApplicationMailer
 
     I18n.with_locale(@me.user.locale || I18n.default_locale) do
       mail to: @me.user.email,
-        subject: I18n.t(
-          :subject,
-          scope: [:notification_mailer, :digest],
-          count: @notifications.size
-        )
+           subject: I18n.t(
+             :subject,
+             scope: [:notification_mailer, :digest],
+             count: @notifications.size
+           )
     end
   end
 end