Class: RuboCop::MagicComment::EmacsComment
- Inherits:
-
EditorComment
- Object
- RuboCop::MagicComment
- EditorComment
- RuboCop::MagicComment::EmacsComment
- Defined in:
- lib/rubocop/magic_comment.rb
Overview
Wrapper for Emacs style magic comments.
Constant Summary collapse
- FORMAT =
/\-\*\-(.+)\-\*\-/.freeze
- SEPARATOR =
';'
- OPERATOR =
':'
Constants inherited from RuboCop::MagicComment
Instance Method Summary collapse
Methods inherited from RuboCop::MagicComment
#any?, #encoding_specified?, #frozen_string_literal, #frozen_string_literal?, #frozen_string_literal_specified?, #initialize, parse
Constructor Details
This class inherits a constructor from RuboCop::MagicComment
Instance Method Details
#encoding ⇒ Object
136 137 138 |
# File 'lib/rubocop/magic_comment.rb', line 136 def encoding match('(?:en)?coding') end |