Sha256: 4adb7e861c67c3eb0a82f30edd391fc1f423d3674db5590aa57a63a2c08af900
Contents?: true
Size: 639 Bytes
Versions: 14
Compression:
Stored size: 639 Bytes
Contents
module Distil # Mix in for concatenating products module Debug # files -> an enumerable collection of SourceFiles # join_string -> a string to use to join the files together # target -> the container of the files def before_files(f) end def after_files(f) end def filename debug_name end def external_files return @external_files if @external_files @external_files= [] target.include_projects.each { |ext| @external_files << ext.product_name(:debug, File.extname(filename)[1..-1]) } @external_files end end end
Version data entries
14 entries across 14 versions & 1 rubygems