class RuboCop::Cop::Style::BisectedAttrAccessor

Checks for places where ‘attr_reader` and `attr_writer` for the same method can be combined into single `attr_accessor`.

@example

# bad
class Foo
  attr_reader :bar
  attr_writer :bar
end

# good
class Foo
  attr_accessor :bar
end