DannyBen/recode

View on GitHub
lib/recode/handler/output.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Recode
  module Handler
    class Output < Base
      def rename(source:, target:)
        show_rename source: source, target: target
      end

      def edit(file:, before:, after:)
        show_edit file: file, before: before, after: after
      end
    end
  end
end