Sha256: 0b99ebe8884d7681d03642a81c36db8c358fbdcbe2e5e18b20958ff1701035da

Contents?: true

Size: 415 Bytes

Versions: 38

Compression:

Stored size: 415 Bytes

Contents

# frozen_string_literal: true

module Stepmod
  module Utils
    module Converters
      class Comment < ReverseAdoc::Converters::Base
        def convert(node, _state = {})
          comment = node.text.strip.split("\n").map do |line|
            "\n// #{line}"
          end.join("\n")
          "#{comment}\n"
        end
      end

      ReverseAdoc::Converters.register :comment, Comment.new
    end
  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
stepmod-utils-0.4.8 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.4.7 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.4.6 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.4.5 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.4.2 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.4.1 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.4.0 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.37 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.36 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.35 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.34 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.33 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.32 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.31 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.30 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.29 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.28 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.27 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.26 lib/stepmod/utils/converters/comment.rb
stepmod-utils-0.3.25 lib/stepmod/utils/converters/comment.rb