Sha256: 6afbd29b1edd3596bbbde8e07b5b2c45072ac1eff4af13537910634d7a530eb6
Contents?: true
Size: 1.38 KB
Versions: 3
Compression:
Stored size: 1.38 KB
Contents
module Danger module Helpers module CommentsParsingHelper # !@group Extension points # Produces a message-like from a row in a comment table # # @param [String] row # The content of the row in the table # # @return [Violation or Markdown] the extracted message def parse_message_from_row(row) Violation.new(row, true, nil, nil) end def parse_tables_from_comment(comment) comment.split("</table>") end def violations_from_table(table) row_regex = %r{<td data-sticky="true">(?:<del>)?(.*?)(?:</del>)?\s*</td>}im table.scan(row_regex).flatten.map do |row| parse_message_from_row(row.strip) end end def parse_comment(comment) tables = parse_tables_from_comment(comment) violations = {} tables.each do |table| next unless table =~ %r{<th width="100%"(.*?)</th>}im title = Regexp.last_match(1) kind = table_kind_from_title(title) next unless kind violations[kind] = violations_from_table(table) end violations.reject { |_, v| v.empty? } end def table_kind_from_title(title) if title =~ /error/i :error elsif title =~ /warning/i :warning elsif title =~ /message/i :message end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
danger-3.2.2 | lib/danger/helpers/comments_parsing_helper.rb |
danger-3.2.1 | lib/danger/helpers/comments_parsing_helper.rb |
danger-3.2.0 | lib/danger/helpers/comments_parsing_helper.rb |