Sha256: 0d57a4613337fb27d83b8d2d9617377b846d9c211c095e3eb900500acf1c7f75

Contents?: true

Size: 276 Bytes

Versions: 4

Compression:

Stored size: 276 Bytes

Contents

class CopyTask < Task
  
  def initialize(target, options)
    super(target, options)
    @files_to_exclude= @options.exclude.to_a
    @files_to_include= @options.include.to_a
  end    

  def need_to_build
    true
  end
  
  def handles_file?(file_name)
    true
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
distil-0.10.4 lib/tasks/copy-task.rb
distil-0.10.3 lib/tasks/copy-task.rb
distil-0.10.1 lib/tasks/copy-task.rb
distil-0.10.0 lib/tasks/copy-task.rb