class DTK::DSL::DirectoryGenerator

Abstract class; application that uses this library must provide a concrete class that inherits from this

Public Class Methods

add_file?(file_type, file_content, opts = {}) click to toggle source

Adds or modifies file; returns true if new file or any change

# File lib/dsl/directory_generator.rb, line 23
def self.add_file?(file_type, file_content, opts = {})
  raise Error::NoMethodForConcreteClass.new(self.class)
end