Class: RuboCop::MagicComment::SimpleComment
- Inherits:
-
RuboCop::MagicComment
- Object
- RuboCop::MagicComment
- RuboCop::MagicComment::SimpleComment
- Defined in:
- lib/rubocop/magic_comment.rb
Overview
Wrapper for regular magic comments not bound to an editor.
Simple comments can only specify one setting per comment.
Constant Summary
Constants inherited from RuboCop::MagicComment
Instance Method Summary collapse
-
#encoding ⇒ Object
Match ‘encoding` or `coding`.
-
#without(type) ⇒ Object
Rewrite the comment without a given token type.
Methods inherited from RuboCop::MagicComment
#any?, #encoding_specified?, #frozen_string_literal, #frozen_string_literal?, #frozen_string_literal_specified?, #initialize, parse, #shareable_constant_value, #shareable_constant_value_specified?, #typed, #typed_specified?, #valid?, #valid_literal_value?, #valid_shareable_constant_value?
Constructor Details
This class inherits a constructor from RuboCop::MagicComment
Instance Method Details
#encoding ⇒ Object
Match ‘encoding` or `coding`
263 264 265 |
# File 'lib/rubocop/magic_comment.rb', line 263 def encoding extract(/\A\s*\#.*\b#{KEYWORDS[:encoding]}: (#{TOKEN})/io) end |
#without(type) ⇒ Object
Rewrite the comment without a given token type
268 269 270 271 272 273 274 |
# File 'lib/rubocop/magic_comment.rb', line 268 def without(type) if @comment.match?(/\A#\s*#{self.class::KEYWORDS[type.to_sym]}/) '' else @comment end end |