mattruzicka/readme_yard

View on GitHub
lib/readme_yard/source_tag.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ReadmeYard
  #
  # @readme
  #   Embed source code
  #
  # @example
  #   # @readme source
  #
  class SourceTag
    class << self
      #
      # The following tag embeds this method's source.
      #
      # @readme source
      #
      def format_tag_markdown(yard_object, _tag)
        ExampleTag.format_ruby(yard_object.source)
      end
    end
  end
end