class Tag < ApplicationRecord
class Tag
. class Tag < ApplicationRecord
Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.
Given
class Dummy # Do things...end
Reek would emit the following warning:
test.rb -- 1 warning: [1]:Dummy has no descriptive comment (IrresponsibleModule)
Fixing this is simple - just an explaining comment:
# The Dummy class is responsible for ...class Dummy # Do things...end
Helps you transition from mutable string literals
to frozen string literals.
It will add the # frozen_string_literal: true
magic comment to the top
of files to enable frozen string literals. Frozen string literals may be
default in future Ruby. The comment will be added below a shebang and
encoding comment. The frozen string literal comment is only valid in Ruby 2.3+.
Note that the cop will accept files where the comment exists but is set
to false
instead of true
.
To require a blank line after this comment, please see
Layout/EmptyLineAfterMagicComment
cop.
This cop's autocorrection is unsafe since any strings mutations will
change from being accepted to raising FrozenError
, as all strings
will become frozen by default, and will need to be manually refactored.
# The `always` style will always add the frozen string literal comment# to a file, regardless of the Ruby version or if `freeze` or `<<` are# called on a string literal.# badmodule Bar # ...end # good# frozen_string_literal: true module Bar # ...end # good# frozen_string_literal: false module Bar # ...end
# The `never` will enforce that the frozen string literal comment does# not exist in a file.# bad# frozen_string_literal: true module Baz # ...end # goodmodule Baz # ...end
# The `always_true` style enforces that the frozen string literal# comment is set to `true`. This is a stricter option than `always`# and forces projects to use frozen string literals.# bad# frozen_string_literal: false module Baz # ...end # badmodule Baz # ...end # good# frozen_string_literal: true module Bar # ...end
Checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, constant definitions or constant visibility declarations.
The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.
# badclass Person # ...end module Mathend # good# Description/Explanation of Person classclass Person # ...end # allowed # Class without body class Person end # Namespace - A namespace can be a class or a module # Containing a class module Namespace # Description/Explanation of Person class class Person # ... end end # Containing constant visibility declaration module Namespace class Private end private_constant :Private end # Containing constant definition module Namespace Public = Class.new end # Macro calls module Namespace extend Foo end
# good module A module ClassMethods # ... end end