class Reek::Report::GithubReport
Displays smells as GitHub Workflow commands.
@public
Public Instance Methods
Source
# File lib/reek/report/github_report.rb, line 13 def show(out = $stdout) out.print(workflow_commands.join) end
Private Instance Methods
Source
# File lib/reek/report/github_report.rb, line 19 def workflow_commands smells.map do |smell| WorkflowCommand.new(smell) end end