about summary refs log tree commit diff
path: root/app/models/poll.rb
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2021-01-07 17:40:55 +0900
committerGitHub <noreply@github.com>2021-01-07 09:40:55 +0100
commitefffdd3778fc960280c7677906ed43dae5a952b0 (patch)
treeafc88388bd8d25a9bc9ecab6fe15adb9394c6921 /app/models/poll.rb
parent066dbe1e699775f59f02298c369225277aac234b (diff)
Fix rubocop config and warnings (#15503)
* disable NewCops

* update TargetRubyVersion

* Fix Lint/MissingSuper for ActiveModelSerializers::Model

* Fix Lint/MissingSuper for feed

* Fix Lint/FloatComparison

* Do not use instance variables
Diffstat (limited to 'app/models/poll.rb')
-rw-r--r--app/models/poll.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/models/poll.rb b/app/models/poll.rb
index e1ca55252..d2a17277b 100644
--- a/app/models/poll.rb
+++ b/app/models/poll.rb
@@ -73,10 +73,12 @@ class Poll < ApplicationRecord
     attributes :id, :title, :votes_count, :poll
 
     def initialize(poll, id, title, votes_count)
-      @poll        = poll
-      @id          = id
-      @title       = title
-      @votes_count = votes_count
+      super(
+        poll:        poll,
+        id:          id,
+        title:       title,
+        votes_count: votes_count,
+      )
     end
   end