Sha256: 43d1f8b6d2dda1f7bfde8be87a4c8f97bc4346793ba31ec36697cb83f40c3b30
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true require_relative 'base_command' require_relative '../../examiner' module Reek module CLI module Command # # A command to collect smells from a set of sources and writes a configuration # file that can serve as a todo list. # class TodoListCommand < BaseCommand FILE_NAME = '.todo.reek'.freeze def execute if smells.empty? puts "\n'.todo.reek' not generated because "\ 'there were no smells found!' else File.write FILE_NAME, groups.to_yaml puts "\n'.todo.reek' generated! You can now use "\ 'this as a starting point for your configuration.' end options.success_exit_code end private def smells @smells ||= sources.map do |source| Examiner.new(source, filter_by_smells: smell_names) end.map(&:smells).flatten end def groups @groups ||= begin todos = smells.group_by(&:smell_class).map do |smell_class, smells_for_class| smell_class.todo_configuration_for(smells_for_class) end todos.inject(&:merge) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
reek-4.8.2 | lib/reek/cli/command/todo_list_command.rb |
reek-4.8.1 | lib/reek/cli/command/todo_list_command.rb |