app/models/tag.rb
Tag has no descriptive comment
Missing frozen string literal comment.
Missing top-level documentation comment for `class Tag`.class Tag < ApplicationRecord extend FriendlyId friendly_id :name, use: :slugged has_many :taggings, dependent: :destroy has_many :articles, through: :taggings def to_s name endend