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

Version Path
distil-0.13.6 lib/distil/product/debug.rb
distil-0.13.5 lib/distil/product/debug.rb
distil-0.13.4 lib/distil/product/debug.rb
distil-0.13.3 lib/distil/product/debug.rb
distil-0.13.2 lib/distil/product/debug.rb
distil-0.13.1 lib/distil/product/debug.rb
distil-0.13.0 lib/distil/product/debug.rb
distil-0.12.6 lib/distil/product/debug.rb
distil-0.12.4 lib/distil/product/debug.rb
distil-0.12.3 lib/distil/product/debug.rb
distil-0.12.2 lib/distil/product/debug.rb
distil-0.12.1 lib/distil/product/debug.rb
distil-0.12.0 lib/distil/product/debug.rb
distil-0.11.8 lib/distil/product/debug.rb