Class: CodeRay::Scanners::Plaintext
- Includes:
- CodeRay::Streamable
- Defined in:
- lib/coderay/scanners/plaintext.rb
Constant Summary
Constants inherited from Scanner
Scanner::DEFAULT_OPTIONS, Scanner::ScanError
Instance Method Summary collapse
Methods inherited from Scanner
#column, #each, file_extension, #initialize, #line, normify, #reset, streamable?, #streaming?, #string=, #tokenize, #tokens
Methods included from Plugin
#helper, #included, #plugin_host, #plugin_id, #register_for, #title
Constructor Details
This class inherits a constructor from CodeRay::Scanners::Scanner
Instance Method Details
#scan_tokens(tokens, options) ⇒ Object
11 12 13 14 |
# File 'lib/coderay/scanners/plaintext.rb', line 11 def scan_tokens tokens, text = (scan_until(/\z/) || '') tokens << [text, :plain] end |