Method: Tetra::Project#produced_files

Defined in:
lib/tetra/project.rb

#produced_filesObject

returns a list of files produced during the last dry-run



159
160
161
162
163
164
165
# File 'lib/tetra/project.rb', line 159

def produced_files
  @git.latest_comment("tetra: dry-run-finished")
    .split("\n")
    .map { |line| line[%r{^tetra: file-changed: src/(.+)$}, 1] }
    .compact
    .sort
end