Module: RSpec::Core::Formatters::HtmlSnippetExtractor::CoderayConverter Private
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.12.0/lib/rspec/core/formatters/html_snippet_extractor.rb
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Class Method Summary collapse
- .convert(code) ⇒ Object private
Class Method Details
.convert(code) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
18 19 20 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rspec-core-3.12.0/lib/rspec/core/formatters/html_snippet_extractor.rb', line 18 def self.convert(code) CodeRay.scan(code, :ruby).html(:line_numbers => false) end |